diff --git a/website/src/theme/NavbarItem/DocsVersionDropdownNavbarItem.js b/website/src/theme/NavbarItem/DocsVersionDropdownNavbarItem.js new file mode 100644 index 00000000..51b3e6e7 --- /dev/null +++ b/website/src/theme/NavbarItem/DocsVersionDropdownNavbarItem.js @@ -0,0 +1,94 @@ +import React from 'react'; +import { useVersions, useActiveDocContext, useDocsVersionCandidates } from '@docusaurus/plugin-content-docs/client'; +import { useDocsPreferredVersion } from '@docusaurus/theme-common'; +import { translate } from '@docusaurus/Translate'; +import { useLocation } from '@docusaurus/router'; +import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; +import DefaultNavbarItem from '@theme/NavbarItem/DefaultNavbarItem'; +import DropdownNavbarItem from '@theme/NavbarItem/DropdownNavbarItem'; + +const getVersionMainDoc = (version) => version.docs.find((doc) => doc.id === version.mainDocId); + +function getApiLinks(props, pathname, baseUrl) { + if (!pathname.startsWith(`${baseUrl}reference`)) { + return []; + } + + try { + return JSON.parse(props['data-api-links']); + } catch { + return []; + } +} + +/* eslint-disable react/prop-types */ +export default function DocsVersionDropdownNavbarItem({ + mobile, + docsPluginId, + dropdownActiveClassDisabled, + dropdownItemsBefore, + dropdownItemsAfter, + ...props +}) { + const { search, hash, pathname } = useLocation(); + const { siteConfig } = useDocusaurusContext(); + const baseUrl = siteConfig.baseUrl.endsWith('/') ? siteConfig.baseUrl : `${siteConfig.baseUrl}/`; + const apiLinks = getApiLinks(props, pathname, baseUrl); + + const activeDocContext = useActiveDocContext(docsPluginId); + const versions = useVersions(docsPluginId); + const { savePreferredVersionName } = useDocsPreferredVersion(docsPluginId); + const versionLinks = versions.map((version, idx) => { + // We try to link to the same doc, in another version + // When not possible, fallback to the "main doc" of the version + const versionDoc = activeDocContext.alternateDocVersions[version.name] ?? getVersionMainDoc(version); + return { + label: version.label, + // preserve ?search#hash suffix on version switches + to: `${apiLinks[idx] ?? versionDoc.path}${search}${hash}`, + isActive: () => version === activeDocContext.activeVersion, + onClick: () => savePreferredVersionName(version.name), + }; + }); + const items = [...dropdownItemsBefore, ...versionLinks, ...dropdownItemsAfter]; + const dropdownVersion = useDocsVersionCandidates(docsPluginId)[0]; + // Mobile dropdown is handled a bit differently + const dropdownLabel = + mobile && items.length > 1 + ? translate({ + id: 'theme.navbar.mobileVersionsDropdown.label', + message: 'Versions', + description: 'The label for the navbar versions dropdown on mobile view', + }) + : dropdownVersion.label; + let dropdownTo = mobile && items.length > 1 ? undefined : getVersionMainDoc(dropdownVersion).path; + + if (dropdownTo && pathname.startsWith(`${baseUrl}reference`)) { + dropdownTo = versionLinks.find((v) => v.label === dropdownVersion.label)?.to; + } + + // We don't want to render a version dropdown with 0 or 1 item. If we build + // the site with a single docs version (onlyIncludeVersions: ['1.0.0']), + // We'd rather render a button instead of a dropdown + if (items.length <= 1) { + return ( + false : undefined} + /> + ); + } + return ( + false : undefined} + /> + ); +} diff --git a/website/versioned_docs/version-1.12/.gitignore b/website/versioned_docs/version-1.12/.gitignore new file mode 100644 index 00000000..1a13c363 --- /dev/null +++ b/website/versioned_docs/version-1.12/.gitignore @@ -0,0 +1 @@ +changelog.md diff --git a/website/versioned_docs/version-1.12/01_overview/01_introduction.mdx b/website/versioned_docs/version-1.12/01_overview/01_introduction.mdx new file mode 100644 index 00000000..0b49f85d --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/01_introduction.mdx @@ -0,0 +1,26 @@ +--- +id: introduction +title: Introduction +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import UsageAsyncExample from '!!raw-loader!./code/01_usage_async.py'; +import UsageSyncExample from '!!raw-loader!./code/01_usage_sync.py'; + +The [Apify client for Python](https://github.com/apify/apify-client-python) is the official library to access the [Apify REST API](https://docs.apify.com/api/v2) from your Python applications. It provides useful features like automatic retries and convenience functions that improve the experience of using the Apify API. All requests and responses (including errors) are encoded in JSON format with UTF-8 encoding. The client provides both synchronous and asynchronous interfaces. + + + + + {UsageAsyncExample} + + + + + {UsageSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/01_overview/02_setting_up.mdx b/website/versioned_docs/version-1.12/01_overview/02_setting_up.mdx new file mode 100644 index 00000000..ef67a98c --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/02_setting_up.mdx @@ -0,0 +1,71 @@ +--- +id: setting-up +title: Setting up +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import AsyncExample from '!!raw-loader!./code/02_auth_async.py'; +import SyncExample from '!!raw-loader!./code/02_auth_sync.py'; + +This guide will help you get started with [Apify client for Python](https://github.com/apify/apify-client-python) by setting it up on your computer. Follow the steps below to ensure a smooth installation process. + +## Prerequisites + +Before installing `apify-client` itself, make sure that your system meets the following requirements: + +- **Python 3.10 or higher**: `apify-client` requires Python 3.10 or a newer version. You can download Python from the [official website](https://www.python.org/downloads/). +- **Python package manager**: While this guide uses Pip (the most common package manager), you can also use any package manager you want. You can download Pip from the [official website](https://pip.pypa.io/en/stable/installation/). + +### Verifying prerequisites + +To check if Python and the Pip package manager are installed, run the following commands: + +```sh +python --version +``` + +```sh +pip --version +``` + +If these commands return the respective versions, you're ready to continue. + +## Installation + +Apify client for Python is available as the [`apify-client`](https://pypi.org/project/apify-client/) package on PyPI. To install it, run: + +```sh +pip install apify-client +``` + +After installation, verify that `apify-client` is installed correctly by checking its version: + +```sh +python -c 'import apify_client; print(apify_client.__version__)' +``` + +## Authentication and initialization + +To use the client, you need an [API token](https://docs.apify.com/platform/integrations/api#api-token). You can find your token under [Integrations](https://console.apify.com/account/integrations) tab in Apify Console. Copy the token and initialize the client by providing the token (`MY-APIFY-TOKEN`) as a parameter to the `ApifyClient` constructor. + + + + + {AsyncExample} + + + + + {SyncExample} + + + + +:::warning Secure access + +The API token is used to authorize your requests to the Apify API. You can be charged for the usage of the underlying services, so do not share your API token with untrusted parties or expose it on the client side of your applications. + +::: diff --git a/website/versioned_docs/version-1.12/01_overview/03_getting_started.mdx b/website/versioned_docs/version-1.12/01_overview/03_getting_started.mdx new file mode 100644 index 00000000..43b128d0 --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/03_getting_started.mdx @@ -0,0 +1,74 @@ +--- +id: getting-started +title: Getting started +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import UsageAsyncExample from '!!raw-loader!./code/01_usage_async.py'; +import UsageSyncExample from '!!raw-loader!./code/01_usage_sync.py'; +import InputAsyncExample from '!!raw-loader!./code/03_input_async.py'; +import InputSyncExample from '!!raw-loader!./code/03_input_sync.py'; +import DatasetAsyncExample from '!!raw-loader!./code/03_dataset_async.py'; +import DatasetSyncExample from '!!raw-loader!./code/03_dataset_sync.py'; + +This guide will walk you through how to use the [Apify Client for Python](https://github.com/apify/apify-client-python) to run [Actors](https://apify.com/actors) on the [Apify platform](https://docs.apify.com/platform), provide input to them, and retrieve results from their datasets. You'll learn the basics of running serverless programs (we're calling them Actors) and managing their output efficiently. + +## Running your first Actor + +To start an Actor, you need its ID (e.g., `john-doe/my-cool-actor`) and an API token. The Actor's ID is a combination of the username and the Actor owner's username. Use the [`ActorClient`](/reference/class/ActorClient) to run the Actor and wait for it to complete. You can run both your own Actors and [Actors from Apify store](https://docs.apify.com/platform/actors/running/actors-in-store). + + + + + {UsageAsyncExample} + + + + + {UsageSyncExample} + + + + +## Providing input to Actor + +Actors often require input, such as URLs to scrape, search terms, or other configuration data. You can pass input as a JSON object when starting the Actor using the [`ActorClient.call`](/reference/class/ActorClient#call) method. Actors respect the input schema defined in the Actor's [input schema](https://docs.apify.com/platform/actors/development/actor-definition/input-schema). + + + + + {InputAsyncExample} + + + + + {InputSyncExample} + + + + +## Getting results from the dataset + +To get the results from the dataset, you can use the [`DatasetClient`](/reference/class/DatasetClient) ([`ApifyClient.dataset`](/reference/class/ApifyClient#dataset) ) and [`DatasetClient.list_items`](/reference/class/DatasetClient#list_items) method. You need to pass the dataset ID to define which dataset you want to access. You can get the dataset ID from the Actor's run dictionary (represented by `defaultDatasetId`). + + + + + {InputAsyncExample} + + + + + {InputSyncExample} + + + + +:::note Dataset access + +Running an Actor might take time, depending on the Actor's complexity and the amount of data it processes. If you want only to get data and have an immediate response you should access the existing dataset of the finished [Actor run](https://docs.apify.com/platform/actors/running/runs-and-builds#runs). + +::: diff --git a/website/versioned_docs/version-1.12/01_overview/code/01_usage_async.py b/website/versioned_docs/version-1.12/01_overview/code/01_usage_async.py new file mode 100644 index 00000000..3ad4e883 --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/01_usage_async.py @@ -0,0 +1,21 @@ +from apify_client import ApifyClientAsync + +# You can find your API token at https://console.apify.com/settings/integrations. +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + # Start an Actor and wait for it to finish. + actor_client = apify_client.actor('john-doe/my-cool-actor') + call_result = await actor_client.call() + + if call_result is None: + print('Actor run failed.') + return + + # Fetch results from the Actor run's default dataset. + dataset_client = apify_client.dataset(call_result['defaultDatasetId']) + list_items_result = await dataset_client.list_items() + print(f'Dataset: {list_items_result}') diff --git a/website/versioned_docs/version-1.12/01_overview/code/01_usage_sync.py b/website/versioned_docs/version-1.12/01_overview/code/01_usage_sync.py new file mode 100644 index 00000000..afa15ffb --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/01_usage_sync.py @@ -0,0 +1,21 @@ +from apify_client import ApifyClient + +# You can find your API token at https://console.apify.com/settings/integrations. +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + # Start an Actor and wait for it to finish. + actor_client = apify_client.actor('john-doe/my-cool-actor') + call_result = actor_client.call() + + if call_result is None: + print('Actor run failed.') + return + + # Fetch results from the Actor run's default dataset. + dataset_client = apify_client.dataset(call_result['defaultDatasetId']) + list_items_result = dataset_client.list_items() + print(f'Dataset: {list_items_result}') diff --git a/website/versioned_docs/version-1.12/01_overview/code/02_auth_async.py b/website/versioned_docs/version-1.12/01_overview/code/02_auth_async.py new file mode 100644 index 00000000..a584ccba --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/02_auth_async.py @@ -0,0 +1,8 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + # Client initialization with the API token. + apify_client = ApifyClientAsync(TOKEN) diff --git a/website/versioned_docs/version-1.12/01_overview/code/02_auth_sync.py b/website/versioned_docs/version-1.12/01_overview/code/02_auth_sync.py new file mode 100644 index 00000000..a5f4de39 --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/02_auth_sync.py @@ -0,0 +1,8 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + # Client initialization with the API token. + apify_client = ApifyClient(TOKEN) diff --git a/website/versioned_docs/version-1.12/01_overview/code/03_dataset_async.py b/website/versioned_docs/version-1.12/01_overview/code/03_dataset_async.py new file mode 100644 index 00000000..99541d2a --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/03_dataset_async.py @@ -0,0 +1,11 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + dataset_client = apify_client.dataset('dataset-id') + + # Lists items from the Actor's dataset. + dataset_items = (await dataset_client.list_items()).items diff --git a/website/versioned_docs/version-1.12/01_overview/code/03_dataset_sync.py b/website/versioned_docs/version-1.12/01_overview/code/03_dataset_sync.py new file mode 100644 index 00000000..3cc7554d --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/03_dataset_sync.py @@ -0,0 +1,11 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + dataset_client = apify_client.dataset('dataset-id') + + # Lists items from the Actor's dataset. + dataset_items = dataset_client.list_items().items diff --git a/website/versioned_docs/version-1.12/01_overview/code/03_input_async.py b/website/versioned_docs/version-1.12/01_overview/code/03_input_async.py new file mode 100644 index 00000000..bef7ac72 --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/03_input_async.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + actor_client = apify_client.actor('username/actor-name') + + # Define the input for the Actor. + run_input = { + 'some': 'input', + } + + # Start an Actor and waits for it to finish. + call_result = await actor_client.call(run_input=run_input) diff --git a/website/versioned_docs/version-1.12/01_overview/code/03_input_sync.py b/website/versioned_docs/version-1.12/01_overview/code/03_input_sync.py new file mode 100644 index 00000000..7fab1635 --- /dev/null +++ b/website/versioned_docs/version-1.12/01_overview/code/03_input_sync.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + actor_client = apify_client.actor('username/actor-name') + + # Define the input for the Actor. + run_input = { + 'some': 'input', + } + + # Start an Actor and waits for it to finish. + call_result = actor_client.call(run_input=run_input) diff --git a/website/versioned_docs/version-1.12/02_concepts/01_async_support.mdx b/website/versioned_docs/version-1.12/02_concepts/01_async_support.mdx new file mode 100644 index 00000000..bdb6ab3a --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/01_async_support.mdx @@ -0,0 +1,18 @@ +--- +id: asyncio-support +title: Asyncio support +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import AsyncSupportExample from '!!raw-loader!./code/01_async_support.py'; + +The package provides an asynchronous version of the client, [`ApifyClientAsync`](/reference/class/ApifyClientAsync), which allows you to interact with the Apify API using Python's standard async/await syntax. This enables you to perform non-blocking operations, see the Python [asyncio documentation](https://docs.python.org/3/library/asyncio-task.html) for more information. + +The following example demonstrates how to run an Actor asynchronously and stream its logs while it is running: + + + {AsyncSupportExample} + diff --git a/website/versioned_docs/version-1.12/02_concepts/02_single_collection_clients.mdx b/website/versioned_docs/version-1.12/02_concepts/02_single_collection_clients.mdx new file mode 100644 index 00000000..1a5ac0a2 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/02_single_collection_clients.mdx @@ -0,0 +1,48 @@ +--- +id: single-and-collection-clients +title: Single and collection clients +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import CollectionAsyncExample from '!!raw-loader!./code/02_collection_async.py'; +import CollectionSyncExample from '!!raw-loader!./code/02_collection_sync.py'; +import SingleAsyncExample from '!!raw-loader!./code/02_single_async.py'; +import SingleSyncExample from '!!raw-loader!./code/02_single_sync.py'; + +The Apify client interface is designed to be consistent and intuitive across all of its components. When you call specific methods on the main client, you create specialized clients to manage individual API resources. There are two main types of clients: + +- [`ActorClient`](/reference/class/ActorClient) - Manages a single resource. +- [`ActorCollectionClient`](/reference/class/ActorCollectionClient) - Manages a collection of resources. + + + + + {CollectionAsyncExample} + + + + + {CollectionSyncExample} + + + + +The resource ID can be the resource's `id` or a combination of `username/resource-name`. + + + + + {SingleAsyncExample} + + + + + {SingleSyncExample} + + + + +By utilizing the appropriate collection or resource client, you can simplify how you interact with the Apify API. diff --git a/website/versioned_docs/version-1.12/02_concepts/03_nested_clients.mdx b/website/versioned_docs/version-1.12/02_concepts/03_nested_clients.mdx new file mode 100644 index 00000000..386aefd1 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/03_nested_clients.mdx @@ -0,0 +1,28 @@ +--- +id: nested-clients +title: Nested clients +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import NestedAsyncExample from '!!raw-loader!./code/03_nested_async.py'; +import NestedSyncExample from '!!raw-loader!./code/03_nested_sync.py'; + +In some cases, the Apify client provides nested clients to simplify working with related collections. For example, you can easily manage the runs of a specific Actor without having to construct multiple endpoints or client instances manually. + + + + + {NestedAsyncExample} + + + + + {NestedSyncExample} + + + + +This direct access to [Dataset](https://docs.apify.com/platform/storage/dataset) (and other storage resources) from the [`RunClient`](/reference/class/RunClient) is especially convenient when used alongside the [`ActorClient.last_run`](/reference/class/ActorClient#last_run) method. diff --git a/website/versioned_docs/version-1.12/02_concepts/04_error_handling.mdx b/website/versioned_docs/version-1.12/02_concepts/04_error_handling.mdx new file mode 100644 index 00000000..d8859eb1 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/04_error_handling.mdx @@ -0,0 +1,26 @@ +--- +id: error-handling +title: Error handling +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import ErrorAsyncExample from '!!raw-loader!./code/04_error_async.py'; +import ErrorSyncExample from '!!raw-loader!./code/04_error_sync.py'; + +When you use the Apify client, it automatically extracts all relevant data from the endpoint and returns it in the expected format. Date strings, for instance, are seamlessly converted to Python `datetime.datetime` objects. If an error occurs, the client raises an [`ApifyApiError`](/reference/class/ApifyApiError). This exception wraps the raw JSON errors returned by the API and provides additional context, making it easier to debug any issues that arise. + + + + + {ErrorAsyncExample} + + + + + {ErrorSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/02_concepts/05_retries.mdx b/website/versioned_docs/version-1.12/02_concepts/05_retries.mdx new file mode 100644 index 00000000..9cf0ed11 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/05_retries.mdx @@ -0,0 +1,42 @@ +--- +id: retries +title: Retries +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import RetriesAsyncExample from '!!raw-loader!./code/05_retries_async.py'; +import RetriesSyncExample from '!!raw-loader!./code/05_retries_sync.py'; + +When dealing with network communication, failures can occasionally occur. The Apify client automatically retries requests that fail due to: + +- Network errors +- Internal errors in the Apify API (HTTP status codes 500 and above) +- Rate limit errors (HTTP status code 429) + +By default, the client will retry a failed request up to 8 times. The retry intervals use an exponential backoff strategy: + +- The first retry occurs after approximately 500 milliseconds. +- The second retry occurs after approximately 1,000 milliseconds, and so on. + +You can customize this behavior using the following options in the [`ApifyClient`](/reference/class/ApifyClient) constructor: + +- `max_retries`: Defines the maximum number of retry attempts. +- `min_delay_between_retries_millis`: Sets the minimum delay between retries (in milliseconds). + +Retries with exponential backoff are a common strategy for handling network errors. They help to reduce the load on the server and increase the chances of a successful request. + + + + + {RetriesAsyncExample} + + + + + {RetriesSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/02_concepts/06_logging.mdx b/website/versioned_docs/version-1.12/02_concepts/06_logging.mdx new file mode 100644 index 00000000..2e495878 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/06_logging.mdx @@ -0,0 +1,33 @@ +--- +id: logging +title: Logging +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import LoggingConfigExample from '!!raw-loader!./code/06_logging_config.py'; +import LoggingFormatterExample from '!!raw-loader!./code/06_logging_formatter.py'; + +The library logs useful debug information to the `apify_client` logger whenever it sends requests to the Apify API. You can configure this logger to print debug information to the standard output by adding a handler: + + + {LoggingConfigExample} + + +The log records include additional properties, provided via the extra argument, which can be helpful for debugging. Some of these properties are: + +- `attempt` - Number of retry attempts for the request. +- `status_code` - HTTP status code of the response. +- `url` - URL of the API endpoint being called. +- `client_method` - Method name of the client that initiated the request. +- `resource_id` - Identifier of the resource being accessed. + +To display these additional properties in the log output, you need to use a custom log formatter. Here's a basic example: + + + {LoggingFormatterExample} + + +For more information on creating and using custom log formatters, refer to the official Python [logging documentation](https://docs.python.org/3/howto/logging.html#formatters). diff --git a/website/versioned_docs/version-1.12/02_concepts/07_convenience_methods.mdx b/website/versioned_docs/version-1.12/02_concepts/07_convenience_methods.mdx new file mode 100644 index 00000000..b3014471 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/07_convenience_methods.mdx @@ -0,0 +1,34 @@ +--- +id: convenience-methods +title: Convenience methods +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import CallAsyncExample from '!!raw-loader!./code/07_call_async.py'; +import CallSyncExample from '!!raw-loader!./code/07_call_sync.py'; + +The Apify client provides several convenience methods to handle actions that the API alone cannot perform efficiently, such as waiting for an Actor run to finish without running into network timeouts. These methods simplify common tasks and enhance the usability of the client. + +- [`ActorClient.call`](/reference/class/ActorClient#call) - Starts an Actor and waits for it to finish, handling network timeouts internally. +- [`ActorClient.start`](/reference/class/ActorClient#start) - Explicitly waits for an Actor run to finish with customizable timeouts. + +Additionally, storage-related resources offer flexible options for data retrieval: + +- [Key-value store](https://docs.apify.com/platform/storage/key-value-store) records can be retrieved as objects, buffers, or streams. +- [Dataset](https://docs.apify.com/platform/storage/dataset) items can be fetched as individual objects, serialized data, or iterated asynchronously. + + + + + {CallAsyncExample} + + + + + {CallSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/02_concepts/08_pagination.mdx b/website/versioned_docs/version-1.12/02_concepts/08_pagination.mdx new file mode 100644 index 00000000..712aee81 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/08_pagination.mdx @@ -0,0 +1,38 @@ +--- +id: pagination +title: Pagination +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import PaginationAsyncExample from '!!raw-loader!./code/08_pagination_async.py'; +import PaginationSyncExample from '!!raw-loader!./code/08_pagination_sync.py'; + +Most methods named `list` or `list_something` in the Apify client return a [`ListPage`](/reference/class/ListPage) object. This object provides a consistent interface for working with paginated data and includes the following properties: + +- `items` - The main results you're looking for. +- `total` - The total number of items available. +- `offset` - The starting point of the current page. +- `count` - The number of items in the current page. +- `limit` - The maximum number of items per page. + +Some methods, such as `list_keys` or `list_head`, paginate differently. Regardless, the primary results are always stored under the items property, and the limit property can be used to control the number of results returned. + +The following example demonstrates how to fetch all items from a dataset using pagination: + + + + + {PaginationAsyncExample} + + + + + {PaginationSyncExample} + + + + +The [`ListPage`](/reference/class/ListPage) interface offers several key benefits. Its consistent structure ensures predictable results for most `list` methods, providing a uniform way to work with paginated data. It also offers flexibility, allowing you to customize the `limit` and `offset` parameters to control data fetching according to your needs. Additionally, it provides scalability, enabling you to efficiently handle large datasets through pagination. This approach ensures efficient data retrieval while keeping memory usage under control, making it ideal for managing and processing large collections. diff --git a/website/versioned_docs/version-1.12/02_concepts/09_streaming.mdx b/website/versioned_docs/version-1.12/02_concepts/09_streaming.mdx new file mode 100644 index 00000000..b365e34a --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/09_streaming.mdx @@ -0,0 +1,38 @@ +--- +id: streaming-resources +title: Streaming resources +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import StreamingAsyncExample from '!!raw-loader!./code/09_streaming_async.py'; +import StreamingSyncExample from '!!raw-loader!./code/09_streaming_sync.py'; + +Certain resources, such as dataset items, key-value store records, and logs, support streaming directly from the Apify API. This allows you to process large resources incrementally without downloading them entirely into memory, making it ideal for handling large or continuously updated data. + +Supported streaming methods: + +- [`DatasetClient.stream_items`](/reference/class/DatasetClient#stream_items) - Stream dataset items incrementally. +- [`KeyValueStoreClient.stream_record`](/reference/class/KeyValueStoreClient#stream_record) - Stream key-value store records as raw data. +- [`LogClient.stream`](/reference/class/LogClient#stream) - Stream logs in real time. + +These methods return a raw, context-managed `httpx.Response` object. The response must be consumed within a with block to ensure that the connection is closed automatically, preventing memory leaks or unclosed connections. + +The following example demonstrates how to stream the logs of an Actor run incrementally: + + + + + {StreamingAsyncExample} + + + + + {StreamingSyncExample} + + + + +Streaming offers several key benefits. It ensures memory efficiency by loading only a small portion of the resource into memory at any given time, making it ideal for handling large data. It enables real-time processing, allowing you to start working with data immediately as it is received. With automatic resource management, using the `with` statement ensures that connections are properly closed, preventing memory leaks or unclosed connections. This approach is valuable for processing large logs, datasets, or files on the fly without the need to download them entirely. diff --git a/website/versioned_docs/version-1.12/02_concepts/code/01_async_support.py b/website/versioned_docs/version-1.12/02_concepts/code/01_async_support.py new file mode 100644 index 00000000..28186519 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/01_async_support.py @@ -0,0 +1,25 @@ +import asyncio + +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + actor_client = apify_client.actor('my-actor-id') + + # Start the Actor and get the run ID + run_result = await actor_client.start() + run_client = apify_client.run(run_result['id']) + log_client = run_client.log() + + # Stream the logs + async with log_client.stream() as async_log_stream: + if async_log_stream: + async for line in async_log_stream.aiter_lines(): + print(line) + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/02_collection_async.py b/website/versioned_docs/version-1.12/02_concepts/code/02_collection_async.py new file mode 100644 index 00000000..85ed3290 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/02_collection_async.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + # Collection clients do not require a parameter + actor_collection_client = apify_client.actors() + + # Create an Actor with the name: my-actor + my_actor = await actor_collection_client.create(name='my-actor') + + # List all of your Actors + actor_list = (await actor_collection_client.list()).items diff --git a/website/versioned_docs/version-1.12/02_concepts/code/02_collection_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/02_collection_sync.py new file mode 100644 index 00000000..988e41e7 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/02_collection_sync.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + # Collection clients do not require a parameter + actor_collection_client = apify_client.actors() + + # Create an Actor with the name: my-actor + my_actor = actor_collection_client.create(name='my-actor') + + # List all of your Actors + actor_list = actor_collection_client.list().items diff --git a/website/versioned_docs/version-1.12/02_concepts/code/02_single_async.py b/website/versioned_docs/version-1.12/02_concepts/code/02_single_async.py new file mode 100644 index 00000000..c6b1a0ac --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/02_single_async.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + # Resource clients accept an ID of the resource + actor_client = apify_client.actor('username/actor-name') + + # Fetch the 'username/actor-name' object from the API + my_actor = await actor_client.get() + + # Start the run of 'username/actor-name' and return the Run object + my_actor_run = await actor_client.start() diff --git a/website/versioned_docs/version-1.12/02_concepts/code/02_single_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/02_single_sync.py new file mode 100644 index 00000000..033e54de --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/02_single_sync.py @@ -0,0 +1,16 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + # Resource clients accept an ID of the resource + actor_client = apify_client.actor('username/actor-name') + + # Fetch the 'username/actor-name' object from the API + my_actor = actor_client.get() + + # Start the run of 'username/actor-name' and return the Run object + my_actor_run = actor_client.start() diff --git a/website/versioned_docs/version-1.12/02_concepts/code/03_nested_async.py b/website/versioned_docs/version-1.12/02_concepts/code/03_nested_async.py new file mode 100644 index 00000000..15e90772 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/03_nested_async.py @@ -0,0 +1,22 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + actor_client = apify_client.actor('username/actor-name') + runs_client = actor_client.runs() + + # List the last 10 runs of the Actor + actor_runs = (await runs_client.list(limit=10, desc=True)).items + + # Select the last run of the Actor that finished with a SUCCEEDED status + last_succeeded_run_client = actor_client.last_run(status='SUCCEEDED') # type: ignore[arg-type] + + # Get dataset + actor_run_dataset_client = last_succeeded_run_client.dataset() + + # Fetch items from the run's dataset + dataset_items = (await actor_run_dataset_client.list_items()).items diff --git a/website/versioned_docs/version-1.12/02_concepts/code/03_nested_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/03_nested_sync.py new file mode 100644 index 00000000..c02d7600 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/03_nested_sync.py @@ -0,0 +1,22 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + actor_client = apify_client.actor('username/actor-name') + runs_client = actor_client.runs() + + # List the last 10 runs of the Actor + actor_runs = runs_client.list(limit=10, desc=True).items + + # Select the last run of the Actor that finished with a SUCCEEDED status + last_succeeded_run_client = actor_client.last_run(status='SUCCEEDED') # type: ignore[arg-type] + + # Get dataset + actor_run_dataset_client = last_succeeded_run_client.dataset() + + # Fetch items from the run's dataset + dataset_items = actor_run_dataset_client.list_items().items diff --git a/website/versioned_docs/version-1.12/02_concepts/code/04_error_async.py b/website/versioned_docs/version-1.12/02_concepts/code/04_error_async.py new file mode 100644 index 00000000..0057ea44 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/04_error_async.py @@ -0,0 +1,15 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + try: + # Try to list items from non-existing dataset + dataset_client = apify_client.dataset('not-existing-dataset-id') + dataset_items = (await dataset_client.list_items()).items + except Exception as ApifyApiError: + # The exception is an instance of ApifyApiError + print(ApifyApiError) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/04_error_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/04_error_sync.py new file mode 100644 index 00000000..83fc3080 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/04_error_sync.py @@ -0,0 +1,15 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + try: + # Try to list items from non-existing dataset + dataset_client = apify_client.dataset('not-existing-dataset-id') + dataset_items = dataset_client.list_items().items + except Exception as ApifyApiError: + # The exception is an instance of ApifyApiError + print(ApifyApiError) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/05_retries_async.py b/website/versioned_docs/version-1.12/02_concepts/code/05_retries_async.py new file mode 100644 index 00000000..2fd94fec --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/05_retries_async.py @@ -0,0 +1,12 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync( + token=TOKEN, + max_retries=8, + min_delay_between_retries_millis=500, # 0.5s + timeout_secs=360, # 6 mins + ) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/05_retries_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/05_retries_sync.py new file mode 100644 index 00000000..25934869 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/05_retries_sync.py @@ -0,0 +1,12 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClient( + token=TOKEN, + max_retries=8, + min_delay_between_retries_millis=500, # 0.5s + timeout_secs=360, # 6 mins + ) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/06_logging_config.py b/website/versioned_docs/version-1.12/02_concepts/code/06_logging_config.py new file mode 100644 index 00000000..e31a7fda --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/06_logging_config.py @@ -0,0 +1,6 @@ +import logging + +# Configure the Apify client logger +apify_client_logger = logging.getLogger('apify_client') +apify_client_logger.setLevel(logging.DEBUG) +apify_client_logger.addHandler(logging.StreamHandler()) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/06_logging_formatter.py b/website/versioned_docs/version-1.12/02_concepts/code/06_logging_formatter.py new file mode 100644 index 00000000..efeeb695 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/06_logging_formatter.py @@ -0,0 +1,15 @@ +import logging + +# Configure the Apify client logger +apify_client_logger = logging.getLogger('apify_client') +apify_client_logger.setLevel(logging.DEBUG) +apify_client_logger.addHandler(logging.StreamHandler()) + +# Create a custom logging formatter +formatter = logging.Formatter( + '%(asctime)s - %(name)s - %(levelname)s - %(message)s - ' + '%(attempt)s - %(status_code)s - %(url)s' +) +handler = logging.StreamHandler() +handler.setFormatter(formatter) +apify_client_logger.addHandler(handler) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/07_call_async.py b/website/versioned_docs/version-1.12/02_concepts/code/07_call_async.py new file mode 100644 index 00000000..955f7532 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/07_call_async.py @@ -0,0 +1,14 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + actor_client = apify_client.actor('username/actor-name') + + # Start an Actor and waits for it to finish + finished_actor_run = await actor_client.call() + + # Starts an Actor and waits maximum 60s (1 minute) for the finish + actor_run = await actor_client.start(wait_for_finish=60) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/07_call_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/07_call_sync.py new file mode 100644 index 00000000..af790eaa --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/07_call_sync.py @@ -0,0 +1,14 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + actor_client = apify_client.actor('username/actor-name') + + # Start an Actor and waits for it to finish + finished_actor_run = actor_client.call() + + # Starts an Actor and waits maximum 60s (1 minute) for the finish + actor_run = actor_client.start(wait_for_finish=60) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_async.py b/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_async.py new file mode 100644 index 00000000..50e9d047 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_async.py @@ -0,0 +1,35 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + + # Initialize the dataset client + dataset_client = apify_client.dataset('dataset-id') + + # Define the pagination parameters + limit = 1000 # Number of items per page + offset = 0 # Starting offset + all_items = [] # List to store all fetched items + + while True: + # Fetch a page of items + response = await dataset_client.list_items(limit=limit, offset=offset) + items = response.items + total = response.total + + print(f'Fetched {len(items)} items') + + # Add the fetched items to the complete list + all_items.extend(items) + + # Exit the loop if there are no more items to fetch + if offset + limit >= total: + break + + # Increment the offset for the next page + offset += limit + + print(f'Overall fetched {len(all_items)} items') diff --git a/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_sync.py new file mode 100644 index 00000000..3beb4fbe --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/08_pagination_sync.py @@ -0,0 +1,35 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + + # Initialize the dataset client + dataset_client = apify_client.dataset('dataset-id') + + # Define the pagination parameters + limit = 1000 # Number of items per page + offset = 0 # Starting offset + all_items = [] # List to store all fetched items + + while True: + # Fetch a page of items + response = dataset_client.list_items(limit=limit, offset=offset) + items = response.items + total = response.total + + print(f'Fetched {len(items)} items') + + # Add the fetched items to the complete list + all_items.extend(items) + + # Exit the loop if there are no more items to fetch + if offset + limit >= total: + break + + # Increment the offset for the next page + offset += limit + + print(f'Overall fetched {len(all_items)} items') diff --git a/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_async.py b/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_async.py new file mode 100644 index 00000000..6ff097a8 --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_async.py @@ -0,0 +1,14 @@ +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + apify_client = ApifyClientAsync(TOKEN) + run_client = apify_client.run('MY-RUN-ID') + log_client = run_client.log() + + async with log_client.stream() as log_stream: + if log_stream: + for line in log_stream.iter_lines(): + print(line) diff --git a/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_sync.py b/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_sync.py new file mode 100644 index 00000000..4eb0093d --- /dev/null +++ b/website/versioned_docs/version-1.12/02_concepts/code/09_streaming_sync.py @@ -0,0 +1,14 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + apify_client = ApifyClient(TOKEN) + run_client = apify_client.run('MY-RUN-ID') + log_client = run_client.log() + + with log_client.stream() as log_stream: + if log_stream: + for line in log_stream.iter_lines(): + print(line) diff --git a/website/versioned_docs/version-1.12/03_examples/01_passing_input_to_actor.mdx b/website/versioned_docs/version-1.12/03_examples/01_passing_input_to_actor.mdx new file mode 100644 index 00000000..61769d73 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/01_passing_input_to_actor.mdx @@ -0,0 +1,28 @@ +--- +id: passing-input-to-actor +title: Passing input to Actor +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import StreamingAsyncExample from '!!raw-loader!./code/01_input_async.py'; +import StreamingSyncExample from '!!raw-loader!./code/01_input_sync.py'; + +The efficient way to run an Actor and retrieve results is by passing input data directly to the `call` method. This method allows you to configure the Actor's input, execute it, and either get a reference to the running Actor or wait for its completion. + +The following example demonstrates how to pass input to the `apify/instagram-hashtag-scraper` Actor and wait for it to finish. + + + + + {StreamingAsyncExample} + + + + + {StreamingSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/03_examples/02_manage_tasks_for_reusable_input.mdx b/website/versioned_docs/version-1.12/03_examples/02_manage_tasks_for_reusable_input.mdx new file mode 100644 index 00000000..9865e232 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/02_manage_tasks_for_reusable_input.mdx @@ -0,0 +1,28 @@ +--- +id: manage-tasks-for-reusable-input +title: Manage tasks for reusable input +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import TasksAsyncExample from '!!raw-loader!./code/02_tasks_async.py'; +import TasksSyncExample from '!!raw-loader!./code/02_tasks_sync.py'; + +When you need to run multiple inputs with the same Actor, the most convenient approach is to create multiple [tasks](https://docs.apify.com/platform/actors/running/tasks), each with different input configurations. Task inputs are stored on the Apify platform when the task is created, allowing you to reuse them easily. + +The following example demonstrates how to create tasks for the `apify/instagram-hashtag-scraper` Actor with different inputs, manage task clients, and execute them asynchronously: + + + + + {TasksAsyncExample} + + + + + {TasksSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/03_examples/03_retrieve_actor_data.mdx b/website/versioned_docs/version-1.12/03_examples/03_retrieve_actor_data.mdx new file mode 100644 index 00000000..f139b2a9 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/03_retrieve_actor_data.mdx @@ -0,0 +1,28 @@ +--- +id: retrieve-actor-data +title: Retrieve Actor data +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import RetrieveAsyncExample from '!!raw-loader!./code/03_retrieve_async.py'; +import RetrieveSyncExample from '!!raw-loader!./code/03_retrieve_sync.py'; + +Actor output data is stored in [datasets](https://docs.apify.com/platform/storage/dataset), which can be retrieved from individual Actor runs. Dataset items support pagination for efficient retrieval, and multiple datasets can be merged into a single dataset for further analysis. This merged dataset can then be exported into various formats such as CSV, JSON, XLSX, or XML. Additionally, [integrations](https://docs.apify.com/platform/integrations) provide powerful tools to automate data workflows. + +The following example demonstrates how to fetch datasets from an Actor's runs, paginate through their items, and merge them into a single dataset for unified analysis: + + + + + {RetrieveAsyncExample} + + + + + {RetrieveSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/03_examples/04_integration_with_data_libraries.mdx b/website/versioned_docs/version-1.12/03_examples/04_integration_with_data_libraries.mdx new file mode 100644 index 00000000..9c4cad3e --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/04_integration_with_data_libraries.mdx @@ -0,0 +1,28 @@ +--- +id: integration-with-data-libraries +title: Integration with data libraries +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import CodeBlock from '@theme/CodeBlock'; + +import PandasAsyncExample from '!!raw-loader!./code/04_pandas_async.py'; +import PandasSyncExample from '!!raw-loader!./code/04_pandas_sync.py'; + +The Apify client for Python seamlessly integrates with data analysis libraries like [Pandas](https://pandas.pydata.org/). This allows you to load dataset items directly into a Pandas [DataFrame](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html) for efficient manipulation and analysis. Pandas provides robust data structures and tools for handling large datasets, making it a powerful addition to your Apify workflows. + +The following example demonstrates how to retrieve items from the most recent dataset of an Actor run and load them into a Pandas DataFrame for further analysis: + + + + + {PandasAsyncExample} + + + + + {PandasSyncExample} + + + diff --git a/website/versioned_docs/version-1.12/03_examples/code/01_input_async.py b/website/versioned_docs/version-1.12/03_examples/code/01_input_async.py new file mode 100644 index 00000000..0310b5da --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/01_input_async.py @@ -0,0 +1,23 @@ +import asyncio + +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + # Client initialization with the API token + apify_client = ApifyClientAsync(token=TOKEN) + + # Get the Actor client + actor_client = apify_client.actor('apify/instagram-hashtag-scraper') + + input_data = {'hashtags': ['rainbow'], 'resultsLimit': 20} + + # Run the Actor and wait for it to finish up to 60 seconds. + # Input is not persisted for next runs. + run_result = await actor_client.call(run_input=input_data, timeout_secs=60) + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/website/versioned_docs/version-1.12/03_examples/code/01_input_sync.py b/website/versioned_docs/version-1.12/03_examples/code/01_input_sync.py new file mode 100644 index 00000000..7f31dc1d --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/01_input_sync.py @@ -0,0 +1,21 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + # Client initialization with the API token + apify_client = ApifyClient(token=TOKEN) + + # Get the Actor client + actor_client = apify_client.actor('apify/instagram-hashtag-scraper') + + input_data = {'hashtags': ['rainbow'], 'resultsLimit': 20} + + # Run the Actor and wait for it to finish up to 60 seconds. + # Input is not persisted for next runs. + run_result = actor_client.call(run_input=input_data, timeout_secs=60) + + +if __name__ == '__main__': + main() diff --git a/website/versioned_docs/version-1.12/03_examples/code/02_tasks_async.py b/website/versioned_docs/version-1.12/03_examples/code/02_tasks_async.py new file mode 100644 index 00000000..d3e962fa --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/02_tasks_async.py @@ -0,0 +1,51 @@ +import asyncio + +from apify_client import ApifyClientAsync +from apify_client.clients.resource_clients import TaskClientAsync + +TOKEN = 'MY-APIFY-TOKEN' +HASHTAGS = ['zebra', 'lion', 'hippo'] + + +async def run_apify_task(client: TaskClientAsync) -> dict: + result = await client.call() + return result or {} + + +async def main() -> None: + apify_client = ApifyClientAsync(token=TOKEN) + + # Create Apify tasks + apify_tasks = list[dict]() + apify_tasks_client = apify_client.tasks() + + for hashtag in HASHTAGS: + apify_task = await apify_tasks_client.create( + name=f'hashtags-{hashtag}', + actor_id='apify/instagram-hashtag-scraper', + task_input={'hashtags': [hashtag], 'resultsLimit': 20}, + memory_mbytes=1024, + ) + apify_tasks.append(apify_task) + + print('Tasks created:', apify_tasks) + + # Create Apify task clients + apify_task_clients = list[TaskClientAsync]() + + for apify_task in apify_tasks: + task_id = apify_task['id'] + apify_task_client = apify_client.task(task_id) + apify_task_clients.append(apify_task_client) + + print('Task clients created:', apify_task_clients) + + # Execute Apify tasks + run_apify_tasks = [run_apify_task(client) for client in apify_task_clients] + task_run_results = await asyncio.gather(*run_apify_tasks) + + print('Task results:', task_run_results) + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/website/versioned_docs/version-1.12/03_examples/code/02_tasks_sync.py b/website/versioned_docs/version-1.12/03_examples/code/02_tasks_sync.py new file mode 100644 index 00000000..72437742 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/02_tasks_sync.py @@ -0,0 +1,52 @@ +from apify_client import ApifyClient +from apify_client.clients.resource_clients import TaskClient + +TOKEN = 'MY-APIFY-TOKEN' +HASHTAGS = ['zebra', 'lion', 'hippo'] + + +def run_apify_task(client: TaskClient) -> dict: + result = client.call() + return result or {} + + +def main() -> None: + apify_client = ApifyClient(token=TOKEN) + + # Create Apify tasks + apify_tasks = list[dict]() + apify_tasks_client = apify_client.tasks() + + for hashtag in HASHTAGS: + apify_task = apify_tasks_client.create( + name=f'hashtags-{hashtag}', + actor_id='apify/instagram-hashtag-scraper', + task_input={'hashtags': [hashtag], 'resultsLimit': 20}, + memory_mbytes=1024, + ) + apify_tasks.append(apify_task) + + print('Tasks created:', apify_tasks) + + # Create Apify task clients + apify_task_clients = list[TaskClient]() + + for apify_task in apify_tasks: + task_id = apify_task['id'] + apify_task_client = apify_client.task(task_id) + apify_task_clients.append(apify_task_client) + + print('Task clients created:', apify_task_clients) + + # Execute Apify tasks + task_run_results = list[dict]() + + for client in apify_task_clients: + result = run_apify_task(client) + task_run_results.append(result) + + print('Task results:', task_run_results) + + +if __name__ == '__main__': + main() diff --git a/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_async.py b/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_async.py new file mode 100644 index 00000000..c6e35095 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_async.py @@ -0,0 +1,33 @@ +import asyncio + +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + # Client initialization with the API token + apify_client = ApifyClientAsync(token=TOKEN) + actor_client = apify_client.actor('apify/instagram-hashtag-scraper') + runs_client = actor_client.runs() + + # See pagination to understand how to get more datasets + actor_datasets = await runs_client.list(limit=20) + + datasets_client = apify_client.datasets() + merging_dataset = await datasets_client.get_or_create(name='merge-dataset') + + for dataset_item in actor_datasets.items: + # Dataset items can be handled here. Dataset items can be paginated + dataset_client = apify_client.dataset(dataset_item['id']) + dataset_items = await dataset_client.list_items(limit=1000) + + # Items can be pushed to single dataset + merging_dataset_client = apify_client.dataset(merging_dataset['id']) + await merging_dataset_client.push_items(dataset_items.items) + + # ... + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_sync.py b/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_sync.py new file mode 100644 index 00000000..7d92dd53 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/03_retrieve_sync.py @@ -0,0 +1,31 @@ +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + # Client initialization with the API token + apify_client = ApifyClient(token=TOKEN) + actor_client = apify_client.actor('apify/instagram-hashtag-scraper') + runs_client = actor_client.runs() + + # See pagination to understand how to get more datasets + actor_datasets = runs_client.list(limit=20) + + datasets_client = apify_client.datasets() + merging_dataset = datasets_client.get_or_create(name='merge-dataset') + + for dataset_item in actor_datasets.items: + # Dataset items can be handled here. Dataset items can be paginated + dataset_client = apify_client.dataset(dataset_item['id']) + dataset_items = dataset_client.list_items(limit=1000) + + # Items can be pushed to single dataset + merging_dataset_client = apify_client.dataset(merging_dataset['id']) + merging_dataset_client.push_items(dataset_items.items) + + # ... + + +if __name__ == '__main__': + main() diff --git a/website/versioned_docs/version-1.12/03_examples/code/04_pandas_async.py b/website/versioned_docs/version-1.12/03_examples/code/04_pandas_async.py new file mode 100644 index 00000000..aecc0655 --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/04_pandas_async.py @@ -0,0 +1,27 @@ +import asyncio + +import pandas as pd + +from apify_client import ApifyClientAsync + +TOKEN = 'MY-APIFY-TOKEN' + + +async def main() -> None: + # Initialize the Apify client + apify_client = ApifyClientAsync(token=TOKEN) + actor_client = apify_client.actor('apify/web-scraper') + run_client = actor_client.last_run() + dataset_client = run_client.dataset() + + # Load items from last dataset run + dataset_data = await dataset_client.list_items() + + # Pass dataset items to Pandas DataFrame + data_frame = pd.DataFrame(dataset_data.items) + + print(data_frame.info) + + +if __name__ == '__main__': + asyncio.run(main()) diff --git a/website/versioned_docs/version-1.12/03_examples/code/04_pandas_sync.py b/website/versioned_docs/version-1.12/03_examples/code/04_pandas_sync.py new file mode 100644 index 00000000..a42e074f --- /dev/null +++ b/website/versioned_docs/version-1.12/03_examples/code/04_pandas_sync.py @@ -0,0 +1,25 @@ +import pandas as pd + +from apify_client import ApifyClient + +TOKEN = 'MY-APIFY-TOKEN' + + +def main() -> None: + # Initialize the Apify client + apify_client = ApifyClient(token=TOKEN) + actor_client = apify_client.actor('apify/web-scraper') + run_client = actor_client.last_run() + dataset_client = run_client.dataset() + + # Load items from last dataset run + dataset_data = dataset_client.list_items() + + # Pass dataset items to Pandas DataFrame + data_frame = pd.DataFrame(dataset_data.items) + + print(data_frame.info) + + +if __name__ == '__main__': + main() diff --git a/website/versioned_docs/version-1.12/api-packages.json b/website/versioned_docs/version-1.12/api-packages.json new file mode 100644 index 00000000..7c1c2841 --- /dev/null +++ b/website/versioned_docs/version-1.12/api-packages.json @@ -0,0 +1,10 @@ +[ + { + "entryPoints": { "index": { "label": "Index", "path": "src/apify_client" } }, + "packageRoot": "..", + "packagePath": ".", + "packageSlug": ".", + "packageName": "apify-client", + "packageVersion": "1.12.2" + } +] diff --git a/website/versioned_docs/version-1.12/api-typedoc.json b/website/versioned_docs/version-1.12/api-typedoc.json new file mode 100644 index 00000000..9b822a0d --- /dev/null +++ b/website/versioned_docs/version-1.12/api-typedoc.json @@ -0,0 +1,150694 @@ +{ + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1, + "module": "__init__", + "name": "__version__", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/__init__.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 13 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3, + "module": "_apify_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n", + "args": { + "token": "The Apify API token. You can find your token on the\n[Integrations](https://console.apify.com/account/integrations) page in the Apify Console.", + "api_url": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com. It can\nbe an internal URL that is not globally accessible, in which case `api_public_url` should be set\nas well.", + "api_public_url": "The globally accessible URL of the Apify API server. Should be set only if `api_url`\nis an internal URL that is not globally accessible. Defaults to https://api.apify.com.", + "max_retries": "How many times to retry a failed request at most.", + "min_delay_between_retries": "How long will the client wait between retrying requests\n(increases exponentially from this value).", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "headers": "Additional HTTP headers to include in all API requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 112 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n" + } + ] + }, + "flags": {}, + "id": 4, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token. You can find your token on the\n[Integrations](https://console.apify.com/account/integrations) page in the Apify Console." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 5, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com. It can\nbe an internal URL that is not globally accessible, in which case `api_public_url` should be set\nas well." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 6, + "kind": 32768, + "kindString": "Parameter", + "name": "api_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The globally accessible URL of the Apify API server. Should be set only if `api_url`\nis an internal URL that is not globally accessible. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 7, + "kind": 32768, + "kindString": "Parameter", + "name": "api_public_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many times to retry a failed request at most." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 8, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long will the client wait between retrying requests\n(increases exponentially from this value)." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 9, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 10, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 11, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 12, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 13, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all API requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 14, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create an `ApifyClient` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClient, HttpClient, HttpResponse\n\nclass MyHttpClient(HttpClient):\n def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClient.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```" + } + ] + }, + "decorations": [ + { + "name": "classmethod" + } + ], + "flags": {}, + "groups": [], + "id": 15, + "module": "_apify_client", + "name": "with_custom_http_client", + "parsedDocstring": { + "text": "Create an `ApifyClient` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClient, HttpClient, HttpResponse\n\nclass MyHttpClient(HttpClient):\n def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClient.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```", + "args": { + "token": "The Apify API token.", + "api_url": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com.", + "api_public_url": "The globally accessible URL of the Apify API server. Defaults to https://api.apify.com.", + "http_client": "A custom HTTP client instance extending `HttpClient`." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 210 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create an `ApifyClient` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClient, HttpClient, HttpResponse\n\nclass MyHttpClient(HttpClient):\n def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClient.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```" + } + ] + }, + "flags": {}, + "id": 16, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "with_custom_http_client", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 17, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 18, + "kind": 32768, + "kindString": "Parameter", + "name": "api_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The globally accessible URL of the Apify API server. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 19, + "kind": 32768, + "kindString": "Parameter", + "name": "api_public_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A custom HTTP client instance extending `HttpClient`." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 20, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + } + ], + "type": { + "name": "ApifyClient", + "type": "reference", + "target": "2" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token used by the client." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 21, + "module": "_apify_client", + "name": "token", + "parsedDocstring": { + "text": "The Apify API token used by the client." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 250 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP client instance used for API communication.\n\nReturns the custom HTTP client if one was provided via `with_custom_http_client`,\nor the default `ImpitHttpClient` otherwise (lazily created on first access)." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 22, + "module": "_apify_client", + "name": "http_client", + "parsedDocstring": { + "text": "The HTTP client instance used for API communication.\n\nReturns the custom HTTP client if one was provided via `with_custom_http_client`,\nor the default `ImpitHttpClient` otherwise (lazily created on first access)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 255 + } + ], + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 23, + "module": "_apify_client", + "name": "actor", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor.\n", + "args": { + "actor_id": "ID of the Actor to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 286 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor.\n" + } + ] + }, + "flags": {}, + "id": 24, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "actor", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 25, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorClient", + "type": "reference", + "target": "1794" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 26, + "module": "_apify_client", + "name": "actors", + "parsedDocstring": { + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 294 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + } + ] + }, + "flags": {}, + "id": 27, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "actors", + "parameters": [], + "type": { + "name": "ActorCollectionClient", + "type": "reference", + "target": "1998" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor build.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 28, + "module": "_apify_client", + "name": "build", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor build.\n", + "args": { + "build_id": "ID of the Actor build to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 298 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor build.\n" + } + ] + }, + "flags": {}, + "id": 29, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor build to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 30, + "kind": 32768, + "kindString": "Parameter", + "name": "build_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "BuildClient", + "type": "reference", + "target": "2234" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the build collection, allowing to list builds." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 31, + "module": "_apify_client", + "name": "builds", + "parsedDocstring": { + "text": "Get the sub-client for the build collection, allowing to list builds." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the build collection, allowing to list builds." + } + ] + }, + "flags": {}, + "id": 32, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "builds", + "parameters": [], + "type": { + "name": "BuildCollectionClient", + "type": "reference", + "target": "2282" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor run.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 33, + "module": "_apify_client", + "name": "run", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor run.\n", + "args": { + "run_id": "ID of the Actor run to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 310 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor run.\n" + } + ] + }, + "flags": {}, + "id": 34, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor run to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 35, + "kind": 32768, + "kindString": "Parameter", + "name": "run_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "RunClient", + "type": "reference", + "target": "2976" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 36, + "module": "_apify_client", + "name": "runs", + "parsedDocstring": { + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 318 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + } + ] + }, + "flags": {}, + "id": 37, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClient", + "type": "reference", + "target": "3114" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific dataset.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 38, + "module": "_apify_client", + "name": "dataset", + "parsedDocstring": { + "text": "Get the sub-client for a specific dataset.\n", + "args": { + "dataset_id": "ID of the dataset to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 322 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific dataset.\n" + } + ] + }, + "flags": {}, + "id": 39, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dataset", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the dataset to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 40, + "kind": 32768, + "kindString": "Parameter", + "name": "dataset_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "DatasetClient", + "type": "reference", + "target": "2311" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 41, + "module": "_apify_client", + "name": "datasets", + "parsedDocstring": { + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 330 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + } + ] + }, + "flags": {}, + "id": 42, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "datasets", + "parameters": [], + "type": { + "name": "DatasetCollectionClient", + "type": "reference", + "target": "2543" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific key-value store.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 43, + "module": "_apify_client", + "name": "key_value_store", + "parsedDocstring": { + "text": "Get the sub-client for a specific key-value store.\n", + "args": { + "key_value_store_id": "ID of the key-value store to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 334 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific key-value store.\n" + } + ] + }, + "flags": {}, + "id": 44, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_store", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the key-value store to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 45, + "kind": 32768, + "kindString": "Parameter", + "name": "key_value_store_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "KeyValueStoreClient", + "type": "reference", + "target": "2577" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 46, + "module": "_apify_client", + "name": "key_value_stores", + "parsedDocstring": { + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 342 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + } + ] + }, + "flags": {}, + "id": 47, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_stores", + "parameters": [], + "type": { + "name": "KeyValueStoreCollectionClient", + "type": "reference", + "target": "2723" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific request queue.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 48, + "module": "_apify_client", + "name": "request_queue", + "parsedDocstring": { + "text": "Get the sub-client for a specific request queue.\n", + "args": { + "request_queue_id": "ID of the request queue to be manipulated.", + "client_key": "A unique identifier of the client accessing the request queue." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 346 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific request queue.\n" + } + ] + }, + "flags": {}, + "id": 49, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queue", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request queue to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 50, + "kind": 32768, + "kindString": "Parameter", + "name": "request_queue_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of the client accessing the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 51, + "kind": 32768, + "kindString": "Parameter", + "name": "client_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RequestQueueClient", + "type": "reference", + "target": "2792" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 52, + "module": "_apify_client", + "name": "request_queues", + "parsedDocstring": { + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 355 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + } + ] + }, + "flags": {}, + "id": 53, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queues", + "parameters": [], + "type": { + "name": "RequestQueueCollectionClient", + "type": "reference", + "target": "2944" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 54, + "module": "_apify_client", + "name": "webhook", + "parsedDocstring": { + "text": "Get the sub-client for a specific webhook.\n", + "args": { + "webhook_id": "ID of the webhook to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 359 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook.\n" + } + ] + }, + "flags": {}, + "id": 55, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the webhook to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 56, + "kind": 32768, + "kindString": "Parameter", + "name": "webhook_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "WebhookClient", + "type": "reference", + "target": "3494" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 57, + "module": "_apify_client", + "name": "webhooks", + "parsedDocstring": { + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 367 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + } + ] + }, + "flags": {}, + "id": 58, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClient", + "type": "reference", + "target": "3554" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook dispatch.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 59, + "module": "_apify_client", + "name": "webhook_dispatch", + "parsedDocstring": { + "text": "Get the sub-client for a specific webhook dispatch.\n", + "args": { + "webhook_dispatch_id": "ID of the webhook dispatch to access." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 371 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook dispatch.\n" + } + ] + }, + "flags": {}, + "id": 60, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook_dispatch", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the webhook dispatch to access." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 61, + "kind": 32768, + "kindString": "Parameter", + "name": "webhook_dispatch_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "WebhookDispatchClient", + "type": "reference", + "target": "3604" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 62, + "module": "_apify_client", + "name": "webhook_dispatches", + "parsedDocstring": { + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 379 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + } + ] + }, + "flags": {}, + "id": 63, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook_dispatches", + "parameters": [], + "type": { + "name": "WebhookDispatchCollectionClient", + "type": "reference", + "target": "3622" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific schedule.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 64, + "module": "_apify_client", + "name": "schedule", + "parsedDocstring": { + "text": "Get the sub-client for a specific schedule.\n", + "args": { + "schedule_id": "ID of the schedule to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 383 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific schedule.\n" + } + ] + }, + "flags": {}, + "id": 65, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "schedule", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the schedule to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 66, + "kind": 32768, + "kindString": "Parameter", + "name": "schedule_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ScheduleClient", + "type": "reference", + "target": "3142" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 67, + "module": "_apify_client", + "name": "schedules", + "parsedDocstring": { + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 391 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + } + ] + }, + "flags": {}, + "id": 68, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "schedules", + "parameters": [], + "type": { + "name": "ScheduleCollectionClient", + "type": "reference", + "target": "3194" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 69, + "module": "_apify_client", + "name": "log", + "parsedDocstring": { + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n", + "args": { + "build_or_run_id": "ID of the Actor build or run for which to access the log." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 395 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n" + } + ] + }, + "flags": {}, + "id": 70, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor build or run for which to access the log." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 71, + "kind": 32768, + "kindString": "Parameter", + "name": "build_or_run_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "LogClient", + "type": "reference", + "target": "2757" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor task.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 72, + "module": "_apify_client", + "name": "task", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor task.\n", + "args": { + "task_id": "ID of the task to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 403 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor task.\n" + } + ] + }, + "flags": {}, + "id": 73, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "task", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the task to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 74, + "kind": 32768, + "kindString": "Parameter", + "name": "task_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "TaskClient", + "type": "reference", + "target": "3268" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 75, + "module": "_apify_client", + "name": "tasks", + "parsedDocstring": { + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 411 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + } + ] + }, + "flags": {}, + "id": 76, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "tasks", + "parameters": [], + "type": { + "name": "TaskCollectionClient", + "type": "reference", + "target": "3398" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for querying user data.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 77, + "module": "_apify_client", + "name": "user", + "parsedDocstring": { + "text": "Get the sub-client for querying user data.\n", + "args": { + "user_id": "ID of user to be queried. If None, queries the user belonging to the token supplied to the client." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 415 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for querying user data.\n" + } + ] + }, + "flags": {}, + "id": 78, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "user", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of user to be queried. If None, queries the user belonging to the token supplied to the client." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 79, + "kind": 32768, + "kindString": "Parameter", + "name": "user_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "UserClient", + "type": "reference", + "target": "3454" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 80, + "module": "_apify_client", + "name": "store", + "parsedDocstring": { + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 423 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + } + ] + }, + "flags": {}, + "id": 81, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "store", + "parameters": [], + "type": { + "name": "StoreCollectionClient", + "type": "reference", + "target": "3238" + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Synchronous client for the Apify API.\n\nThis is the main entry point for interacting with the Apify platform. It provides methods to access\nresource-specific sub-clients for managing Actors, runs, datasets, key-value stores, request queues,\nschedules, webhooks, and more.\n\nThe client automatically handles retries with exponential backoff for failed or rate-limited requests.\n\n### Usage\n\n```python\nfrom apify_client import ApifyClient\n\nclient = ApifyClient(token='MY-APIFY-TOKEN')\n\n# Start an Actor and wait for it to finish.\nactor_client = client.actor('apify/python-example')\nrun = actor_client.call(run_input={'first_number': 1, 'second_number': 2})\n\n# Fetch results from the run's default dataset.\nif run is not None:\n dataset_client = client.dataset(run.default_dataset_id)\n items = dataset_client.list_items().items\n for item in items:\n print(item)\n```" + } + ] + }, + "decorations": [ + { + "args": "('Apify API clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3, + 23, + 26, + 28, + 31, + 38, + 41, + 43, + 46, + 69, + 48, + 52, + 33, + 36, + 64, + 67, + 80, + 72, + 75, + 77, + 54, + 59, + 62, + 57, + 15 + ], + "title": "Methods" + }, + { + "children": [ + 22, + 21 + ], + "title": "Properties" + } + ], + "id": 2, + "module": "_apify_client", + "name": "ApifyClient", + "parsedDocstring": { + "text": "Synchronous client for the Apify API.\n\nThis is the main entry point for interacting with the Apify platform. It provides methods to access\nresource-specific sub-clients for managing Actors, runs, datasets, key-value stores, request queues,\nschedules, webhooks, and more.\n\nThe client automatically handles retries with exponential backoff for failed or rate-limited requests.\n\n### Usage\n\n```python\nfrom apify_client import ApifyClient\n\nclient = ApifyClient(token='MY-APIFY-TOKEN')\n\n# Start an Actor and wait for it to finish.\nactor_client = client.actor('apify/python-example')\nrun = actor_client.call(run_input={'first_number': 1, 'second_number': 2})\n\n# Fetch results from the run's default dataset.\nif run is not None:\n dataset_client = client.dataset(run.default_dataset_id)\n items = dataset_client.list_items().items\n for item in items:\n print(item)\n```" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 83 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 83, + "module": "_apify_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n", + "args": { + "token": "The Apify API token. You can find your token on the\n[Integrations](https://console.apify.com/account/integrations) page in the Apify Console.", + "api_url": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com. It can\nbe an internal URL that is not globally accessible, in which case `api_public_url` should be set\nas well.", + "api_public_url": "The globally accessible URL of the Apify API server. Should be set only if `api_url`\nis an internal URL that is not globally accessible. Defaults to https://api.apify.com.", + "max_retries": "How many times to retry a failed request at most.", + "min_delay_between_retries": "How long will the client wait between retrying requests\n(increases exponentially from this value).", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "headers": "Additional HTTP headers to include in all API requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 465 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Apify API client.\n\nTo use a custom HTTP client, use the `with_custom_http_client` class method instead.\n" + } + ] + }, + "flags": {}, + "id": 84, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token. You can find your token on the\n[Integrations](https://console.apify.com/account/integrations) page in the Apify Console." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 85, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com. It can\nbe an internal URL that is not globally accessible, in which case `api_public_url` should be set\nas well." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 86, + "kind": 32768, + "kindString": "Parameter", + "name": "api_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The globally accessible URL of the Apify API server. Should be set only if `api_url`\nis an internal URL that is not globally accessible. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 87, + "kind": 32768, + "kindString": "Parameter", + "name": "api_public_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many times to retry a failed request at most." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 88, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long will the client wait between retrying requests\n(increases exponentially from this value)." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 89, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 90, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 91, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 92, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 93, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all API requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 94, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create an `ApifyClientAsync` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClientAsync, HttpClientAsync, HttpResponse\n\nclass MyHttpClient(HttpClientAsync):\n async def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClientAsync.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```" + } + ] + }, + "decorations": [ + { + "name": "classmethod" + } + ], + "flags": {}, + "groups": [], + "id": 95, + "module": "_apify_client", + "name": "with_custom_http_client", + "parsedDocstring": { + "text": "Create an `ApifyClientAsync` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClientAsync, HttpClientAsync, HttpResponse\n\nclass MyHttpClient(HttpClientAsync):\n async def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClientAsync.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```", + "args": { + "token": "The Apify API token.", + "api_url": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com.", + "api_public_url": "The globally accessible URL of the Apify API server. Defaults to https://api.apify.com.", + "http_client": "A custom HTTP client instance extending `HttpClientAsync`." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 563 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create an `ApifyClientAsync` instance with a custom HTTP client.\n\nUse this alternative constructor when you want to provide your own HTTP client implementation\ninstead of the default one. The custom client is responsible for its own configuration\n(retries, timeouts, headers, etc.).\n\n### Usage\n\n```python\nfrom apify_client import ApifyClientAsync, HttpClientAsync, HttpResponse\n\nclass MyHttpClient(HttpClientAsync):\n async def call(self, *, method, url, **kwargs) -> HttpResponse:\n ...\n\nclient = ApifyClientAsync.with_custom_http_client(\n token='MY-APIFY-TOKEN',\n http_client=MyHttpClient(),\n)\n```" + } + ] + }, + "flags": {}, + "id": 96, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "with_custom_http_client", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 97, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the Apify API server to connect to. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 98, + "kind": 32768, + "kindString": "Parameter", + "name": "api_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The globally accessible URL of the Apify API server. Defaults to https://api.apify.com." + } + ] + }, + "defaultValue": "DEFAULT_API_URL", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 99, + "kind": 32768, + "kindString": "Parameter", + "name": "api_public_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A custom HTTP client instance extending `HttpClientAsync`." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 100, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + } + ], + "type": { + "name": "ApifyClientAsync", + "type": "reference", + "target": "82" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Apify API token used by the client." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 101, + "module": "_apify_client", + "name": "token", + "parsedDocstring": { + "text": "The Apify API token used by the client." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 603 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP client instance used for API communication.\n\nReturns the custom HTTP client if one was provided via `with_custom_http_client`,\nor the default `ImpitHttpClientAsync` otherwise (lazily created on first access)." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 102, + "module": "_apify_client", + "name": "http_client", + "parsedDocstring": { + "text": "The HTTP client instance used for API communication.\n\nReturns the custom HTTP client if one was provided via `with_custom_http_client`,\nor the default `ImpitHttpClientAsync` otherwise (lazily created on first access)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 608 + } + ], + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 103, + "module": "_apify_client", + "name": "actor", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor.\n", + "args": { + "actor_id": "ID of the Actor to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 638 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor.\n" + } + ] + }, + "flags": {}, + "id": 104, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "actor", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 105, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorClientAsync", + "type": "reference", + "target": "1896" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 106, + "module": "_apify_client", + "name": "actors", + "parsedDocstring": { + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 646 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Actor collection, allowing to list and create Actors." + } + ] + }, + "flags": {}, + "id": 107, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "actors", + "parameters": [], + "type": { + "name": "ActorCollectionClientAsync", + "type": "reference", + "target": "2036" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor build.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 108, + "module": "_apify_client", + "name": "build", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor build.\n", + "args": { + "build_id": "ID of the Actor build to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 650 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor build.\n" + } + ] + }, + "flags": {}, + "id": 109, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor build to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 110, + "kind": 32768, + "kindString": "Parameter", + "name": "build_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "BuildClientAsync", + "type": "reference", + "target": "2258" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the build collection, allowing to list builds." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 111, + "module": "_apify_client", + "name": "builds", + "parsedDocstring": { + "text": "Get the sub-client for the build collection, allowing to list builds." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 658 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the build collection, allowing to list builds." + } + ] + }, + "flags": {}, + "id": 112, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "builds", + "parameters": [], + "type": { + "name": "BuildCollectionClientAsync", + "type": "reference", + "target": "2293" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor run.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 113, + "module": "_apify_client", + "name": "run", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor run.\n", + "args": { + "run_id": "ID of the Actor run to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 662 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor run.\n" + } + ] + }, + "flags": {}, + "id": 114, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor run to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 115, + "kind": 32768, + "kindString": "Parameter", + "name": "run_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "RunClientAsync", + "type": "reference", + "target": "3045" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 116, + "module": "_apify_client", + "name": "runs", + "parsedDocstring": { + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 670 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the run collection, allowing to list Actor runs." + } + ] + }, + "flags": {}, + "id": 117, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClientAsync", + "type": "reference", + "target": "3128" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific dataset.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 118, + "module": "_apify_client", + "name": "dataset", + "parsedDocstring": { + "text": "Get the sub-client for a specific dataset.\n", + "args": { + "dataset_id": "ID of the dataset to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 674 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific dataset.\n" + } + ] + }, + "flags": {}, + "id": 119, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dataset", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the dataset to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 120, + "kind": 32768, + "kindString": "Parameter", + "name": "dataset_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "DatasetClientAsync", + "type": "reference", + "target": "2437" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 121, + "module": "_apify_client", + "name": "datasets", + "parsedDocstring": { + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 682 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the dataset collection, allowing to list and create datasets." + } + ] + }, + "flags": {}, + "id": 122, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "datasets", + "parameters": [], + "type": { + "name": "DatasetCollectionClientAsync", + "type": "reference", + "target": "2560" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific key-value store.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 123, + "module": "_apify_client", + "name": "key_value_store", + "parsedDocstring": { + "text": "Get the sub-client for a specific key-value store.\n", + "args": { + "key_value_store_id": "ID of the key-value store to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 686 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific key-value store.\n" + } + ] + }, + "flags": {}, + "id": 124, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_store", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the key-value store to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 125, + "kind": 32768, + "kindString": "Parameter", + "name": "key_value_store_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "KeyValueStoreClientAsync", + "type": "reference", + "target": "2650" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 126, + "module": "_apify_client", + "name": "key_value_stores", + "parsedDocstring": { + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 694 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the key-value store collection, allowing to list and create key-value stores." + } + ] + }, + "flags": {}, + "id": 127, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_stores", + "parameters": [], + "type": { + "name": "KeyValueStoreCollectionClientAsync", + "type": "reference", + "target": "2740" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific request queue.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 128, + "module": "_apify_client", + "name": "request_queue", + "parsedDocstring": { + "text": "Get the sub-client for a specific request queue.\n", + "args": { + "request_queue_id": "ID of the request queue to be manipulated.", + "client_key": "A unique identifier of the client accessing the request queue." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 698 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific request queue.\n" + } + ] + }, + "flags": {}, + "id": 129, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queue", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request queue to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 130, + "kind": 32768, + "kindString": "Parameter", + "name": "request_queue_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of the client accessing the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 131, + "kind": 32768, + "kindString": "Parameter", + "name": "client_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RequestQueueClientAsync", + "type": "reference", + "target": "2868" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 132, + "module": "_apify_client", + "name": "request_queues", + "parsedDocstring": { + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 707 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the request queue collection, allowing to list and create request queues." + } + ] + }, + "flags": {}, + "id": 133, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queues", + "parameters": [], + "type": { + "name": "RequestQueueCollectionClientAsync", + "type": "reference", + "target": "2960" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 134, + "module": "_apify_client", + "name": "webhook", + "parsedDocstring": { + "text": "Get the sub-client for a specific webhook.\n", + "args": { + "webhook_id": "ID of the webhook to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 711 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook.\n" + } + ] + }, + "flags": {}, + "id": 135, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the webhook to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 136, + "kind": 32768, + "kindString": "Parameter", + "name": "webhook_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "WebhookClientAsync", + "type": "reference", + "target": "3524" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 137, + "module": "_apify_client", + "name": "webhooks", + "parsedDocstring": { + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 719 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook collection, allowing to list and create webhooks." + } + ] + }, + "flags": {}, + "id": 138, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClientAsync", + "type": "reference", + "target": "3579" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook dispatch.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 139, + "module": "_apify_client", + "name": "webhook_dispatch", + "parsedDocstring": { + "text": "Get the sub-client for a specific webhook dispatch.\n", + "args": { + "webhook_dispatch_id": "ID of the webhook dispatch to access." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 723 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific webhook dispatch.\n" + } + ] + }, + "flags": {}, + "id": 140, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook_dispatch", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the webhook dispatch to access." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 141, + "kind": 32768, + "kindString": "Parameter", + "name": "webhook_dispatch_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "WebhookDispatchClientAsync", + "type": "reference", + "target": "3613" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 142, + "module": "_apify_client", + "name": "webhook_dispatches", + "parsedDocstring": { + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 731 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the webhook dispatch collection, allowing to list webhook dispatches." + } + ] + }, + "flags": {}, + "id": 143, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhook_dispatches", + "parameters": [], + "type": { + "name": "WebhookDispatchCollectionClientAsync", + "type": "reference", + "target": "3633" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific schedule.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 144, + "module": "_apify_client", + "name": "schedule", + "parsedDocstring": { + "text": "Get the sub-client for a specific schedule.\n", + "args": { + "schedule_id": "ID of the schedule to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 735 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific schedule.\n" + } + ] + }, + "flags": {}, + "id": 145, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "schedule", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the schedule to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 146, + "kind": 32768, + "kindString": "Parameter", + "name": "schedule_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ScheduleClientAsync", + "type": "reference", + "target": "3168" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 147, + "module": "_apify_client", + "name": "schedules", + "parsedDocstring": { + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 743 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the schedule collection, allowing to list and create schedules." + } + ] + }, + "flags": {}, + "id": 148, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "schedules", + "parameters": [], + "type": { + "name": "ScheduleCollectionClientAsync", + "type": "reference", + "target": "3216" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 149, + "module": "_apify_client", + "name": "log", + "parsedDocstring": { + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n", + "args": { + "build_or_run_id": "ID of the Actor build or run for which to access the log." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 747 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for retrieving logs of an Actor build or run.\n" + } + ] + }, + "flags": {}, + "id": 150, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor build or run for which to access the log." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 151, + "kind": 32768, + "kindString": "Parameter", + "name": "build_or_run_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "LogClientAsync", + "type": "reference", + "target": "2774" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor task.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 152, + "module": "_apify_client", + "name": "task", + "parsedDocstring": { + "text": "Get the sub-client for a specific Actor task.\n", + "args": { + "task_id": "ID of the task to be manipulated." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 755 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for a specific Actor task.\n" + } + ] + }, + "flags": {}, + "id": 153, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "task", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the task to be manipulated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 154, + "kind": 32768, + "kindString": "Parameter", + "name": "task_id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "TaskClientAsync", + "type": "reference", + "target": "3333" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 155, + "module": "_apify_client", + "name": "tasks", + "parsedDocstring": { + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 763 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the task collection, allowing to list and create Actor tasks." + } + ] + }, + "flags": {}, + "id": 156, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "tasks", + "parameters": [], + "type": { + "name": "TaskCollectionClientAsync", + "type": "reference", + "target": "3426" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for querying user data.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 157, + "module": "_apify_client", + "name": "user", + "parsedDocstring": { + "text": "Get the sub-client for querying user data.\n", + "args": { + "user_id": "ID of user to be queried. If None, queries the user belonging to the token supplied to the client." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 767 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for querying user data.\n" + } + ] + }, + "flags": {}, + "id": 158, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "user", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of user to be queried. If None, queries the user belonging to the token supplied to the client." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 159, + "kind": 32768, + "kindString": "Parameter", + "name": "user_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "UserClientAsync", + "type": "reference", + "target": "3474" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 160, + "module": "_apify_client", + "name": "store", + "parsedDocstring": { + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 775 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the sub-client for the Apify Store, allowing to list Actors published in the store." + } + ] + }, + "flags": {}, + "id": 161, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "store", + "parameters": [], + "type": { + "name": "StoreCollectionClientAsync", + "type": "reference", + "target": "3253" + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Asynchronous client for the Apify API.\n\nThis is the main entry point for interacting with the Apify platform using async/await. It provides\nmethods to access resource-specific sub-clients for managing Actors, runs, datasets, key-value stores,\nrequest queues, schedules, webhooks, and more.\n\nThe client automatically handles retries with exponential backoff for failed or rate-limited requests.\n\n### Usage\n\n```python\nimport asyncio\n\nfrom apify_client import ApifyClientAsync\n\n\nasync def main() -> None:\n client = ApifyClientAsync(token='MY-APIFY-TOKEN')\n\n # Start an Actor and wait for it to finish.\n actor_client = client.actor('apify/python-example')\n run = await actor_client.call(run_input={'first_number': 1, 'second_number': 2})\n\n # Fetch results from the run's default dataset.\n if run is not None:\n dataset_client = client.dataset(run.default_dataset_id)\n items = (await dataset_client.list_items()).items\n for item in items:\n print(item)\n\n\nasyncio.run(main())\n```" + } + ] + }, + "decorations": [ + { + "args": "('Apify API clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 83, + 103, + 106, + 108, + 111, + 118, + 121, + 123, + 126, + 149, + 128, + 132, + 113, + 116, + 144, + 147, + 160, + 152, + 155, + 157, + 134, + 139, + 142, + 137, + 95 + ], + "title": "Methods" + }, + { + "children": [ + 102, + 101 + ], + "title": "Properties" + } + ], + "id": 82, + "module": "_apify_client", + "name": "ApifyClientAsync", + "parsedDocstring": { + "text": "Asynchronous client for the Apify API.\n\nThis is the main entry point for interacting with the Apify platform using async/await. It provides\nmethods to access resource-specific sub-clients for managing Actors, runs, datasets, key-value stores,\nrequest queues, schedules, webhooks, and more.\n\nThe client automatically handles retries with exponential backoff for failed or rate-limited requests.\n\n### Usage\n\n```python\nimport asyncio\n\nfrom apify_client import ApifyClientAsync\n\n\nasync def main() -> None:\n client = ApifyClientAsync(token='MY-APIFY-TOKEN')\n\n # Start an Actor and wait for it to finish.\n actor_client = client.actor('apify/python-example')\n run = await actor_client.call(run_input={'first_number': 1, 'second_number': 2})\n\n # Fetch results from the run's default dataset.\n if run is not None:\n dataset_client = client.dataset(run.default_dataset_id)\n items = (await dataset_client.list_items()).items\n for item in items:\n print(item)\n\n\nasyncio.run(main())\n```" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_apify_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 429 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 163, + "module": "_client_registry", + "name": "actor_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 73 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorClient", + "target": "1794" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 164, + "module": "_client_registry", + "name": "actor_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 74 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorCollectionClient", + "target": "1998" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 165, + "module": "_client_registry", + "name": "actor_env_var_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 75 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorEnvVarClient", + "target": "2074" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 166, + "module": "_client_registry", + "name": "actor_env_var_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 76 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorEnvVarCollectionClient", + "target": "2110" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 167, + "module": "_client_registry", + "name": "actor_version_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 77 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorVersionClient", + "target": "2138" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 168, + "module": "_client_registry", + "name": "actor_version_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 78 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorVersionCollectionClient", + "target": "2194" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 169, + "module": "_client_registry", + "name": "build_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 79 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BuildClient", + "target": "2234" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 170, + "module": "_client_registry", + "name": "build_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 80 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BuildCollectionClient", + "target": "2282" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 171, + "module": "_client_registry", + "name": "dataset_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 81 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DatasetClient", + "target": "2311" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 172, + "module": "_client_registry", + "name": "dataset_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 82 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DatasetCollectionClient", + "target": "2543" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 173, + "module": "_client_registry", + "name": "key_value_store_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 83 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreClient", + "target": "2577" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 174, + "module": "_client_registry", + "name": "key_value_store_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 84 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreCollectionClient", + "target": "2723" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 175, + "module": "_client_registry", + "name": "log_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 85 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "LogClient", + "target": "2757" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 176, + "module": "_client_registry", + "name": "request_queue_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 86 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestQueueClient", + "target": "2792" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 177, + "module": "_client_registry", + "name": "request_queue_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 87 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestQueueCollectionClient", + "target": "2944" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 178, + "module": "_client_registry", + "name": "run_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 88 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RunClient", + "target": "2976" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 179, + "module": "_client_registry", + "name": "run_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 89 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RunCollectionClient", + "target": "3114" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 180, + "module": "_client_registry", + "name": "schedule_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 90 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleClient", + "target": "3142" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 181, + "module": "_client_registry", + "name": "schedule_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 91 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleCollectionClient", + "target": "3194" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 182, + "module": "_client_registry", + "name": "store_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 92 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "StoreCollectionClient", + "target": "3238" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 183, + "module": "_client_registry", + "name": "task_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 93 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TaskClient", + "target": "3268" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 184, + "module": "_client_registry", + "name": "task_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 94 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TaskCollectionClient", + "target": "3398" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 185, + "module": "_client_registry", + "name": "user_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 95 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "UserClient", + "target": "3454" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 186, + "module": "_client_registry", + "name": "webhook_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 96 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookClient", + "target": "3494" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 187, + "module": "_client_registry", + "name": "webhook_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 97 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCollectionClient", + "target": "3554" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 188, + "module": "_client_registry", + "name": "webhook_dispatch_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 98 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookDispatchClient", + "target": "3604" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 189, + "module": "_client_registry", + "name": "webhook_dispatch_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 99 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookDispatchCollectionClient", + "target": "3622" + } + ], + "target": "295" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of all sync client classes for dependency injection.\n\nThis config object is passed to the resource clients to avoid circular dependencies. Each resource client\nreceives this config and can instantiate other clients as needed." + } + ] + }, + "decorations": [ + { + "name": "dataclass" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189 + ], + "title": "Properties" + } + ], + "id": 162, + "module": "_client_registry", + "name": "ClientRegistry", + "parsedDocstring": { + "text": "Bundle of all sync client classes for dependency injection.\n\nThis config object is passed to the resource clients to avoid circular dependencies. Each resource client\nreceives this config and can instantiate other clients as needed." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 66 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 191, + "module": "_client_registry", + "name": "actor_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 110 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorClientAsync", + "target": "1896" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 192, + "module": "_client_registry", + "name": "actor_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 111 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorCollectionClientAsync", + "target": "2036" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 193, + "module": "_client_registry", + "name": "actor_env_var_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 112 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorEnvVarClientAsync", + "target": "2092" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 194, + "module": "_client_registry", + "name": "actor_env_var_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 113 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorEnvVarCollectionClientAsync", + "target": "2124" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 195, + "module": "_client_registry", + "name": "actor_version_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 114 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorVersionClientAsync", + "target": "2166" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 196, + "module": "_client_registry", + "name": "actor_version_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 115 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorVersionCollectionClientAsync", + "target": "2214" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 197, + "module": "_client_registry", + "name": "build_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 116 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BuildClientAsync", + "target": "2258" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 198, + "module": "_client_registry", + "name": "build_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 117 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BuildCollectionClientAsync", + "target": "2293" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 199, + "module": "_client_registry", + "name": "dataset_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 118 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DatasetClientAsync", + "target": "2437" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 200, + "module": "_client_registry", + "name": "dataset_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 119 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DatasetCollectionClientAsync", + "target": "2560" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 201, + "module": "_client_registry", + "name": "key_value_store_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 120 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreClientAsync", + "target": "2650" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 202, + "module": "_client_registry", + "name": "key_value_store_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 121 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreCollectionClientAsync", + "target": "2740" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 203, + "module": "_client_registry", + "name": "log_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 122 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "LogClientAsync", + "target": "2774" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 204, + "module": "_client_registry", + "name": "request_queue_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 123 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestQueueClientAsync", + "target": "2868" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 205, + "module": "_client_registry", + "name": "request_queue_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 124 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestQueueCollectionClientAsync", + "target": "2960" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 206, + "module": "_client_registry", + "name": "run_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 125 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RunClientAsync", + "target": "3045" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 207, + "module": "_client_registry", + "name": "run_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 126 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RunCollectionClientAsync", + "target": "3128" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 208, + "module": "_client_registry", + "name": "schedule_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 127 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleClientAsync", + "target": "3168" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 209, + "module": "_client_registry", + "name": "schedule_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 128 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleCollectionClientAsync", + "target": "3216" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 210, + "module": "_client_registry", + "name": "store_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 129 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "StoreCollectionClientAsync", + "target": "3253" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 211, + "module": "_client_registry", + "name": "task_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 130 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TaskClientAsync", + "target": "3333" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 212, + "module": "_client_registry", + "name": "task_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 131 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TaskCollectionClientAsync", + "target": "3426" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 213, + "module": "_client_registry", + "name": "user_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 132 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "UserClientAsync", + "target": "3474" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 214, + "module": "_client_registry", + "name": "webhook_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 133 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookClientAsync", + "target": "3524" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 215, + "module": "_client_registry", + "name": "webhook_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 134 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCollectionClientAsync", + "target": "3579" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 216, + "module": "_client_registry", + "name": "webhook_dispatch_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 135 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookDispatchClientAsync", + "target": "3613" + } + ], + "target": "295" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 217, + "module": "_client_registry", + "name": "webhook_dispatch_collection_client", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 136 + } + ], + "type": { + "name": "type", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookDispatchCollectionClientAsync", + "target": "3633" + } + ], + "target": "295" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of all async client classes for dependency injection.\n\nThis config object is passed to the resource clients to avoid circular dependencies. Each resource client\nreceives this config and can instantiate other clients as needed." + } + ] + }, + "decorations": [ + { + "name": "dataclass" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217 + ], + "title": "Properties" + } + ], + "id": 190, + "module": "_client_registry", + "name": "ClientRegistryAsync", + "parsedDocstring": { + "text": "Bundle of all async client classes for dependency injection.\n\nThis config object is passed to the resource clients to avoid circular dependencies. Each resource client\nreceives this config and can instantiate other clients as needed." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_client_registry.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 103 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default base URL for the Apify API." + } + ] + }, + "flags": {}, + "groups": [], + "id": 218, + "module": "_consts", + "name": "DEFAULT_API_URL", + "parsedDocstring": { + "text": "Default base URL for the Apify API." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 7 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Current Apify API version." + } + ] + }, + "flags": {}, + "groups": [], + "id": 219, + "module": "_consts", + "name": "API_VERSION", + "parsedDocstring": { + "text": "Current Apify API version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 10 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for fast CRUD operations (e.g., get, update, delete)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 220, + "module": "_consts", + "name": "DEFAULT_TIMEOUT_SHORT", + "parsedDocstring": { + "text": "Default timeout for fast CRUD operations (e.g., get, update, delete)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 13 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for batch, list, and data transfer operations." + } + ] + }, + "flags": {}, + "groups": [], + "id": 221, + "module": "_consts", + "name": "DEFAULT_TIMEOUT_MEDIUM", + "parsedDocstring": { + "text": "Default timeout for batch, list, and data transfer operations." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 16 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-polling, streaming, and other heavy operations." + } + ] + }, + "flags": {}, + "groups": [], + "id": 222, + "module": "_consts", + "name": "DEFAULT_TIMEOUT_LONG", + "parsedDocstring": { + "text": "Default timeout for long-polling, streaming, and other heavy operations." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default maximum timeout cap for individual API requests (limits exponential growth)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 223, + "module": "_consts", + "name": "DEFAULT_TIMEOUT_MAX", + "parsedDocstring": { + "text": "Default maximum timeout cap for individual API requests (limits exponential growth)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 22 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default maximum number of retries for failed requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 224, + "module": "_consts", + "name": "DEFAULT_MAX_RETRIES", + "parsedDocstring": { + "text": "Default maximum number of retries for failed requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 25 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default minimum delay between retries." + } + ] + }, + "flags": {}, + "groups": [], + "id": 225, + "module": "_consts", + "name": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "parsedDocstring": { + "text": "Default minimum delay between retries." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default maximum wait time for job completion (effectively infinite)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 226, + "module": "_consts", + "name": "DEFAULT_WAIT_FOR_FINISH", + "parsedDocstring": { + "text": "Default maximum wait time for job completion (effectively infinite)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 31 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long to wait for a job to exist before giving up." + } + ] + }, + "flags": {}, + "groups": [], + "id": 227, + "module": "_consts", + "name": "DEFAULT_WAIT_WHEN_JOB_NOT_EXIST", + "parsedDocstring": { + "text": "How long to wait for a job to exist before giving up." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set of terminal Actor job statuses that indicate the job has finished." + } + ] + }, + "flags": {}, + "groups": [], + "id": 228, + "module": "_consts", + "name": "TERMINAL_STATUSES", + "parsedDocstring": { + "text": "Set of terminal Actor job statuses that indicate the job has finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 37 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Headers that can be overridden by users, but will trigger a warning if they do so, as it may lead to API errors." + } + ] + }, + "flags": {}, + "groups": [], + "id": 229, + "module": "_consts", + "name": "OVERRIDABLE_DEFAULT_HEADERS", + "parsedDocstring": { + "text": "Headers that can be overridden by users, but will trigger a warning if they do so, as it may lead to API errors." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_consts.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 230, + "module": "_docs", + "name": "GroupName", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_docs.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 8 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 231, + "module": "_docs", + "name": "T", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_docs.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 17 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Mark a symbol for rendering and grouping in documentation.\n\nThis decorator is used solely for documentation purposes and does not modify the behavior\nof the decorated callable.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 232, + "module": "_docs", + "name": "docs_group", + "parsedDocstring": { + "text": "Mark a symbol for rendering and grouping in documentation.\n\nThis decorator is used solely for documentation purposes and does not modify the behavior\nof the decorated callable.\n", + "args": { + "group_name": "The documentation group to which the symbol belongs.\n" + }, + "returns": "The original callable without modification." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_docs.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The original callable without modification." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Mark a symbol for rendering and grouping in documentation.\n\nThis decorator is used solely for documentation purposes and does not modify the behavior\nof the decorated callable.\n" + } + ] + }, + "flags": {}, + "id": 233, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "docs_group", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The documentation group to which the symbol belongs.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 234, + "kind": 32768, + "kindString": "Parameter", + "name": "group_name", + "type": { + "name": "GroupName", + "type": "reference", + "target": "230" + } + } + ], + "type": { + "name": "Callable", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "[T]" + }, + { + "type": "reference", + "name": "T", + "target": "231" + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the logger used throughout the library." + } + ] + }, + "flags": {}, + "groups": [], + "id": 235, + "module": "_logging", + "name": "logger_name", + "parsedDocstring": { + "text": "Name of the logger used throughout the library." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Logger used throughout the library." + } + ] + }, + "flags": {}, + "groups": [], + "id": 236, + "module": "_logging", + "name": "logger", + "parsedDocstring": { + "text": "Logger used throughout the library." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 22 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 238, + "module": "_logging", + "name": "attempt", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 29 + } + ], + "type": { + "name": "ContextVar", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 239, + "module": "_logging", + "name": "client_method", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 30 + } + ], + "type": { + "name": "ContextVar", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 240, + "module": "_logging", + "name": "method", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 31 + } + ], + "type": { + "name": "ContextVar", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 241, + "module": "_logging", + "name": "resource_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "ContextVar", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 242, + "module": "_logging", + "name": "url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 33 + } + ], + "type": { + "name": "ContextVar", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Request context details for logging (attempt, client method, HTTP method, resource ID, URL)." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 238, + 239, + 240, + 241, + 242 + ], + "title": "Properties" + } + ], + "id": 237, + "module": "_logging", + "name": "LogContext", + "parsedDocstring": { + "text": "Request context details for logging (attempt, client method, HTTP method, resource ID, URL)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 243, + "module": "_logging", + "name": "log_context", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wrap all public methods in the class with logging context injection." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 245, + "module": "_logging", + "name": "__new__", + "parsedDocstring": { + "text": "Wrap all public methods in the class with logging context injection." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 48 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wrap all public methods in the class with logging context injection." + } + ] + }, + "flags": {}, + "id": 246, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__new__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 247, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 248, + "kind": 32768, + "kindString": "Parameter", + "name": "bases", + "type": { + "name": "tuple", + "type": "reference" + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 249, + "kind": 32768, + "kindString": "Parameter", + "name": "attrs", + "type": { + "name": "dict", + "type": "reference" + } + } + ], + "type": { + "name": "WithLogDetailsClient", + "type": "reference", + "target": "244" + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Metaclass that wraps public methods to inject client details into log context." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 245 + ], + "title": "Methods" + } + ], + "id": 244, + "module": "_logging", + "name": "WithLogDetailsClient", + "parsedDocstring": { + "text": "Metaclass that wraps public methods to inject client details into log context." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 45 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format log by prepending colored logger name.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 251, + "module": "_logging", + "name": "format", + "parsedDocstring": { + "text": "Format log by prepending colored logger name.\n", + "args": { + "record": "The log record to format.\n" + }, + "returns": "Formatted log message with colored logger name prefix." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 60 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Formatted log message with colored logger name prefix." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Format log by prepending colored logger name.\n" + } + ] + }, + "flags": {}, + "id": 252, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "format", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The log record to format.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 253, + "kind": 32768, + "kindString": "Parameter", + "name": "record", + "type": { + "name": "logging.LogRecord", + "type": "reference" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Log formatter that prepends colored logger name to messages." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 251 + ], + "title": "Methods" + } + ], + "id": 250, + "module": "_logging", + "name": "RedirectLogFormatter", + "parsedDocstring": { + "text": "Log formatter that prepends colored logger name to messages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a logger for redirecting logs from another Actor.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 254, + "module": "_logging", + "name": "create_redirect_logger", + "parsedDocstring": { + "text": "Create a logger for redirecting logs from another Actor.\n", + "args": { + "name": "Logger name. Use dot notation for hierarchy (e.g., \"apify.xyz\" creates \"xyz\" under \"apify\").\n" + }, + "returns": "Configured logger with RedirectLogFormatter." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 74 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Configured logger with RedirectLogFormatter." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a logger for redirecting logs from another Actor.\n" + } + ] + }, + "flags": {}, + "id": 255, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create_redirect_logger", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Logger name. Use dot notation for hierarchy (e.g., \"apify.xyz\" creates \"xyz\" under \"apify\").\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 256, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "logging.Logger", + "type": "reference" + } + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add log context variables to the record." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 258, + "module": "_logging", + "name": "filter", + "parsedDocstring": { + "text": "Add log context variables to the record." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 102 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add log context variables to the record." + } + ] + }, + "flags": {}, + "id": 259, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "filter", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 260, + "kind": 32768, + "kindString": "Parameter", + "name": "record", + "type": { + "name": "logging.LogRecord", + "type": "reference" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter that injects current log context into all log records." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 258 + ], + "title": "Methods" + } + ], + "id": 257, + "module": "_logging", + "name": "_ContextInjectingFilter", + "parsedDocstring": { + "text": "Filter that injects current log context into all log records." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_logging.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 99 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 262, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 16 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 263, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 264, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 265, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 266, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 267, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Common pagination fields for list responses." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 267, + 266, + 265, + 262, + 264, + 263 + ], + "title": "Properties" + } + ], + "id": 261, + "module": "_models", + "name": "PaginationResponse", + "parsedDocstring": { + "text": "Common pagination fields for list responses." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 13 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "ListOfActors", + "target": "287", + "type": "reference" + }, + { + "name": "ListOfWebhooks", + "target": "540", + "type": "reference" + }, + { + "name": "ListOfBuilds", + "target": "579", + "type": "reference" + }, + { + "name": "ListOfRuns", + "target": "662", + "type": "reference" + }, + { + "name": "ListOfTasks", + "target": "782", + "type": "reference" + }, + { + "name": "ListOfKeyValueStores", + "target": "885", + "type": "reference" + }, + { + "name": "ListOfDatasets", + "target": "930", + "type": "reference" + }, + { + "name": "ListOfRequestQueues", + "target": "1019", + "type": "reference" + }, + { + "name": "ListOfWebhookDispatches", + "target": "1225", + "type": "reference" + }, + { + "name": "ListOfSchedules", + "target": "1256", + "type": "reference" + }, + { + "name": "ListOfStoreActors", + "target": "1342", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 269, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 43 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 270, + "module": "_models", + "name": "total_builds", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalBuilds', examples=[9])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 271, + "module": "_models", + "name": "total_runs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 48 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalRuns', examples=[16])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 272, + "module": "_models", + "name": "total_users", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 49 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalUsers', examples=[6])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 273, + "module": "_models", + "name": "total_users7_days", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 50 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalUsers7Days', examples=[2])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 274, + "module": "_models", + "name": "total_users30_days", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 51 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalUsers30Days', examples=[6])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 275, + "module": "_models", + "name": "total_users90_days", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 52 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalUsers90Days', examples=[6])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 276, + "module": "_models", + "name": "total_metamorphs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 53 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalMetamorphs', examples=[2])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 277, + "module": "_models", + "name": "last_run_started_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 54 + } + ], + "type": { + "name": "Annotated[ AwareDatetime | None, Field(alias='lastRunStartedAt', examples=['2019-07-08T14:01:05.546Z']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 277, + 269, + 270, + 276, + 271, + 272, + 274, + 273, + 275 + ], + "title": "Properties" + } + ], + "id": 268, + "module": "_models", + "name": "ActorStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 42 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 279, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 60 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 280, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 64 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 281, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 65 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 282, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 66 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 283, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 67 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 284, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 68 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 285, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 69 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['Hello World Example'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 286, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 70 + } + ], + "type": { + "name": "ActorStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStats", + "target": "268" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 281, + 280, + 279, + 282, + 283, + 286, + 285, + 284 + ], + "title": "Properties" + } + ], + "id": 278, + "module": "_models", + "name": "ActorShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 59 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 288, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 74 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 289, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 78 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ActorShort", + "target": "278" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3726, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3727, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3728, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3729, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3730, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3730, + 3729, + 289, + 3728, + 288, + 3727, + 3726 + ], + "title": "Properties" + } + ], + "id": 287, + "module": "_models", + "name": "ListOfActors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 73 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 291, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 82 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 292, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 86 + } + ], + "type": { + "name": "ListOfActors", + "type": "reference", + "target": "287" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 292, + 291 + ], + "title": "Properties" + } + ], + "id": 290, + "module": "_models", + "name": "ListOfActorsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 81 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 294, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 90 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 295, + "module": "_models", + "name": "type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 94 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 296, + "module": "_models", + "name": "message", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 95 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 296, + 294, + 295 + ], + "title": "Properties" + } + ], + "id": 293, + "module": "_models", + "name": "Error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 89 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 298, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 99 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 299, + "module": "_models", + "name": "error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 103 + } + ], + "type": { + "name": "Error", + "type": "reference", + "target": "293" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 299, + 298 + ], + "title": "Properties" + } + ], + "id": 297, + "module": "_models", + "name": "ErrorResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 98 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 301, + "module": "_models", + "name": "SOURCE_FILES", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 107 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 302, + "module": "_models", + "name": "GIT_REPO", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 108 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 303, + "module": "_models", + "name": "TARBALL", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 109 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 304, + "module": "_models", + "name": "GITHUB_GIST", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 110 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 302, + 304, + 301, + 303 + ], + "title": "Properties" + } + ], + "id": 300, + "module": "_models", + "name": "VersionSourceType", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 106 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 306, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 114 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 307, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 118 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 308, + "module": "_models", + "name": "value", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 119 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 309, + "module": "_models", + "name": "is_secret", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 120 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isSecret', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 309, + 306, + 307, + 308 + ], + "title": "Properties" + } + ], + "id": 305, + "module": "_models", + "name": "EnvVar", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 113 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 311, + "module": "_models", + "name": "BASE64", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 124 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 312, + "module": "_models", + "name": "TEXT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 125 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 311, + 312 + ], + "title": "Properties" + } + ], + "id": 310, + "module": "_models", + "name": "SourceCodeFileFormat", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 123 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 314, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 129 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 315, + "module": "_models", + "name": "format", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 133 + } + ], + "type": { + "name": "SourceCodeFileFormat", + "type": "reference", + "target": "310" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 316, + "module": "_models", + "name": "content", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 134 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 317, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 135 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 316, + 315, + 314, + 317 + ], + "title": "Properties" + } + ], + "id": 313, + "module": "_models", + "name": "SourceCodeFile", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 128 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 319, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 144 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The folder path relative to the Actor's root directory." + } + ] + }, + "flags": {}, + "groups": [], + "id": 320, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "The folder path relative to the Actor's root directory." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 148 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Always `true` for folders. Used to distinguish folders from files." + } + ] + }, + "flags": {}, + "groups": [], + "id": 321, + "module": "_models", + "name": "folder", + "parsedDocstring": { + "text": "Always `true` for folders. Used to distinguish folders from files." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 152 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Represents a folder in the Actor's source code structure. Distinguished from\nSourceCodeFile by the presence of the `folder` property set to `true`." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 321, + 319, + 320 + ], + "title": "Properties" + } + ], + "id": 318, + "module": "_models", + "name": "SourceCodeFolder", + "parsedDocstring": { + "text": "Represents a folder in the Actor's source code structure. Distinguished from\nSourceCodeFile by the presence of the `folder` property set to `true`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 138 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 323, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 159 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 324, + "module": "_models", + "name": "version_number", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 163 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 325, + "module": "_models", + "name": "source_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 164 + } + ], + "type": { + "name": "Annotated[VersionSourceType | None, Field(alias='sourceType')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "VersionSourceType", + "target": "300" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 326, + "module": "_models", + "name": "env_vars", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 165 + } + ], + "type": { + "name": "Annotated[list[EnvVar] | None, Field(alias='envVars')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "EnvVar", + "target": "305" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 327, + "module": "_models", + "name": "apply_env_vars_to_build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 166 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='applyEnvVarsToBuild', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 328, + "module": "_models", + "name": "build_tag", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 167 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildTag', examples=['latest'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 329, + "module": "_models", + "name": "source_files", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 168 + } + ], + "type": { + "name": "Annotated[ list[SourceCodeFile | SourceCodeFolder] | None, Field(alias='sourceFiles', title='VersionSourceFiles') ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "SourceCodeFile", + "target": "313" + }, + { + "type": "reference", + "name": "SourceCodeFolder", + "target": "318" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the Git repository when sourceType is GIT_REPO." + } + ] + }, + "flags": {}, + "groups": [], + "id": 330, + "module": "_models", + "name": "git_repo_url", + "parsedDocstring": { + "text": "URL of the Git repository when sourceType is GIT_REPO." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 171 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='gitRepoUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the tarball when sourceType is TARBALL." + } + ] + }, + "flags": {}, + "groups": [], + "id": 331, + "module": "_models", + "name": "tarball_url", + "parsedDocstring": { + "text": "URL of the tarball when sourceType is TARBALL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 175 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='tarballUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the GitHub Gist when sourceType is GITHUB_GIST." + } + ] + }, + "flags": {}, + "groups": [], + "id": 332, + "module": "_models", + "name": "github_gist_url", + "parsedDocstring": { + "text": "URL of the GitHub Gist when sourceType is GITHUB_GIST." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 179 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='gitHubGistUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 327, + 328, + 326, + 330, + 332, + 323, + 329, + 325, + 331, + 324 + ], + "title": "Properties" + } + ], + "id": 322, + "module": "_models", + "name": "Version", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 158 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 334, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 186 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + } + ] + }, + "flags": {}, + "groups": [], + "id": 335, + "module": "_models", + "name": "apify_margin_percentage", + "parsedDocstring": { + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When this pricing info record has been created" + } + ] + }, + "flags": {}, + "groups": [], + "id": 336, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "When this pricing info record has been created" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Since when is this pricing info record effective for a given Actor" + } + ] + }, + "flags": {}, + "groups": [], + "id": 337, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Since when is this pricing info record effective for a given Actor" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 198 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 338, + "module": "_models", + "name": "notified_about_future_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutFutureChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 339, + "module": "_models", + "name": "notified_about_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 340, + "module": "_models", + "name": "reason_for_change", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='reasonForChange')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 335, + 336, + 334, + 339, + 338, + 340, + 337 + ], + "title": "Properties" + } + ], + "id": 333, + "module": "_models", + "name": "CommonActorPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 185 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "PayPerEventActorPricingInfo", + "target": "354", + "type": "reference" + }, + { + "name": "PricePerDatasetItemActorPricingInfo", + "target": "359", + "type": "reference" + }, + { + "name": "FlatPricePerMonthActorPricingInfo", + "target": "364", + "type": "reference" + }, + { + "name": "FreeActorPricingInfo", + "target": "369", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 342, + "module": "_models", + "name": "PAY_PER_EVENT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 208 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 343, + "module": "_models", + "name": "PRICE_PER_DATASET_ITEM", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 209 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 344, + "module": "_models", + "name": "FLAT_PRICE_PER_MONTH", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 210 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 345, + "module": "_models", + "name": "FREE", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 211 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 344, + 345, + 342, + 343 + ], + "title": "Properties" + } + ], + "id": 341, + "module": "_models", + "name": "PricingModel", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 207 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 347, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 215 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 348, + "module": "_models", + "name": "event_price_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 219 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 349, + "module": "_models", + "name": "event_title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 220 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 350, + "module": "_models", + "name": "event_description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 221 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 350, + 348, + 349, + 347 + ], + "title": "Properties" + } + ], + "id": 346, + "module": "_models", + "name": "ActorChargeEvent", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 214 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 352, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 225 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 353, + "module": "_models", + "name": "actor_charge_events", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 229 + } + ], + "type": { + "name": "Annotated[dict[str, ActorChargeEvent] | None, Field(alias='actorChargeEvents')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "ActorChargeEvent", + "target": "346" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 353, + 352 + ], + "title": "Properties" + } + ], + "id": 351, + "module": "_models", + "name": "PricingPerEvent", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 224 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 355, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 233 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "CommonActorPricingInfo.model_config", + "target": 334, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 356, + "module": "_models", + "name": "pricing_model", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 237 + } + ], + "type": { + "name": "Literal", + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": "PAY_PER_EVENT" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 357, + "module": "_models", + "name": "pricing_per_event", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 238 + } + ], + "type": { + "name": "PricingPerEvent", + "type": "reference", + "target": "351" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 358, + "module": "_models", + "name": "minimal_max_total_charge_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 239 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='minimalMaxTotalChargeUsd')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3702, + "module": "_models", + "name": "apify_margin_percentage", + "parsedDocstring": { + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "Annotated[float, Field(alias='apifyMarginPercentage')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.apify_margin_percentage", + "target": 335, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When this pricing info record has been created" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3703, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "When this pricing info record has been created" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='createdAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.created_at", + "target": 336, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Since when is this pricing info record effective for a given Actor" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3704, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Since when is this pricing info record effective for a given Actor" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 198 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='startedAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.started_at", + "target": 337, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3705, + "module": "_models", + "name": "notified_about_future_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutFutureChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_future_change_at", + "target": 338, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3706, + "module": "_models", + "name": "notified_about_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_change_at", + "target": 339, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3707, + "module": "_models", + "name": "reason_for_change", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='reasonForChange')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.reason_for_change", + "target": 340, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3702, + 3703, + 358, + 355, + 3706, + 3705, + 356, + 357, + 3707, + 3704 + ], + "title": "Properties" + } + ], + "id": 354, + "module": "_models", + "name": "PayPerEventActorPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 232 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "CommonActorPricingInfo", + "target": "333", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 360, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 243 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "CommonActorPricingInfo.model_config", + "target": 334, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 361, + "module": "_models", + "name": "pricing_model", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 247 + } + ], + "type": { + "name": "Literal", + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": "PRICE_PER_DATASET_ITEM" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the unit that is being charged" + } + ] + }, + "flags": {}, + "groups": [], + "id": 362, + "module": "_models", + "name": "unit_name", + "parsedDocstring": { + "text": "Name of the unit that is being charged" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 248 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 363, + "module": "_models", + "name": "price_per_unit_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 252 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3708, + "module": "_models", + "name": "apify_margin_percentage", + "parsedDocstring": { + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "Annotated[float, Field(alias='apifyMarginPercentage')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.apify_margin_percentage", + "target": 335, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When this pricing info record has been created" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3709, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "When this pricing info record has been created" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='createdAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.created_at", + "target": 336, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Since when is this pricing info record effective for a given Actor" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3710, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Since when is this pricing info record effective for a given Actor" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 198 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='startedAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.started_at", + "target": 337, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3711, + "module": "_models", + "name": "notified_about_future_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutFutureChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_future_change_at", + "target": 338, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3712, + "module": "_models", + "name": "notified_about_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_change_at", + "target": 339, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3713, + "module": "_models", + "name": "reason_for_change", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='reasonForChange')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.reason_for_change", + "target": 340, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3708, + 3709, + 360, + 3712, + 3711, + 363, + 361, + 3713, + 3710, + 362 + ], + "title": "Properties" + } + ], + "id": 359, + "module": "_models", + "name": "PricePerDatasetItemActorPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 242 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "CommonActorPricingInfo", + "target": "333", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 365, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 256 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "CommonActorPricingInfo.model_config", + "target": 334, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 366, + "module": "_models", + "name": "pricing_model", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 260 + } + ], + "type": { + "name": "Literal", + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": "FLAT_PRICE_PER_MONTH" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "For how long this Actor can be used for free in trial period" + } + ] + }, + "flags": {}, + "groups": [], + "id": 367, + "module": "_models", + "name": "trial_minutes", + "parsedDocstring": { + "text": "For how long this Actor can be used for free in trial period" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 261 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Monthly flat price in USD" + } + ] + }, + "flags": {}, + "groups": [], + "id": 368, + "module": "_models", + "name": "price_per_unit_usd", + "parsedDocstring": { + "text": "Monthly flat price in USD" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 265 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3714, + "module": "_models", + "name": "apify_margin_percentage", + "parsedDocstring": { + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "Annotated[float, Field(alias='apifyMarginPercentage')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.apify_margin_percentage", + "target": 335, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When this pricing info record has been created" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3715, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "When this pricing info record has been created" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='createdAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.created_at", + "target": 336, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Since when is this pricing info record effective for a given Actor" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3716, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Since when is this pricing info record effective for a given Actor" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 198 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='startedAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.started_at", + "target": 337, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3717, + "module": "_models", + "name": "notified_about_future_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutFutureChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_future_change_at", + "target": 338, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3718, + "module": "_models", + "name": "notified_about_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_change_at", + "target": 339, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3719, + "module": "_models", + "name": "reason_for_change", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='reasonForChange')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.reason_for_change", + "target": 340, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3714, + 3715, + 365, + 3718, + 3717, + 368, + 366, + 3719, + 3716, + 367 + ], + "title": "Properties" + } + ], + "id": 364, + "module": "_models", + "name": "FlatPricePerMonthActorPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 255 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "CommonActorPricingInfo", + "target": "333", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 370, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 272 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "CommonActorPricingInfo.model_config", + "target": 334, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 371, + "module": "_models", + "name": "pricing_model", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 276 + } + ], + "type": { + "name": "Literal", + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": "FREE" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3720, + "module": "_models", + "name": "apify_margin_percentage", + "parsedDocstring": { + "text": "In [0, 1], fraction of pricePerUnitUsd that goes to Apify" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "Annotated[float, Field(alias='apifyMarginPercentage')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.apify_margin_percentage", + "target": 335, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When this pricing info record has been created" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3721, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "When this pricing info record has been created" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='createdAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.created_at", + "target": 336, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Since when is this pricing info record effective for a given Actor" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3722, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Since when is this pricing info record effective for a given Actor" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 198 + } + ], + "type": { + "name": "Annotated[AwareDatetime, Field(alias='startedAt')]", + "type": "reference" + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.started_at", + "target": 337, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3723, + "module": "_models", + "name": "notified_about_future_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutFutureChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_future_change_at", + "target": 338, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3724, + "module": "_models", + "name": "notified_about_change_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='notifiedAboutChangeAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.notified_about_change_at", + "target": 339, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 3725, + "module": "_models", + "name": "reason_for_change", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='reasonForChange')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + }, + "inheritedFrom": { + "name": "CommonActorPricingInfo.reason_for_change", + "target": 340, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3720, + 3721, + 370, + 3724, + 3723, + 371, + 3725, + 3722 + ], + "title": "Properties" + } + ], + "id": 369, + "module": "_models", + "name": "FreeActorPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 271 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "CommonActorPricingInfo", + "target": "333", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 373, + "module": "_models", + "name": "LIMITED_PERMISSIONS", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 282 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 374, + "module": "_models", + "name": "FULL_PERMISSIONS", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 283 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines permissions that the Actor requires to run. For more information, see the [Actor permissions documentation](https://docs.apify.com/platform/actors/development/permissions)." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 374, + 373 + ], + "title": "Properties" + } + ], + "id": 372, + "module": "_models", + "name": "ActorPermissionLevel", + "parsedDocstring": { + "text": "Determines permissions that the Actor requires to run. For more information, see the [Actor permissions documentation](https://docs.apify.com/platform/actors/development/permissions)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 279 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 376, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 287 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 377, + "module": "_models", + "name": "build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 291 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['latest'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 378, + "module": "_models", + "name": "timeout_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 292 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='timeoutSecs', examples=[3600])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 379, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 293 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memoryMbytes', examples=[2048])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 380, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 294 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 381, + "module": "_models", + "name": "max_items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 295 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='maxItems')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 382, + "module": "_models", + "name": "force_permission_level", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 296 + } + ], + "type": { + "name": "Annotated[ActorPermissionLevel | None, Field(alias='forcePermissionLevel')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 377, + 382, + 381, + 379, + 376, + 380, + 378 + ], + "title": "Properties" + } + ], + "id": 375, + "module": "_models", + "name": "DefaultRunOptions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 286 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 384, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 300 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 385, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 304 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isEnabled')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 386, + "module": "_models", + "name": "desired_requests_per_actor_run", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 305 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='desiredRequestsPerActorRun')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 387, + "module": "_models", + "name": "max_requests_per_actor_run", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='maxRequestsPerActorRun')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 388, + "module": "_models", + "name": "idle_timeout_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 307 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='idleTimeoutSecs')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 389, + "module": "_models", + "name": "build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 308 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 390, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 309 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memoryMbytes')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 391, + "module": "_models", + "name": "disable_standby_fields_override", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 310 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='disableStandbyFieldsOverride')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 392, + "module": "_models", + "name": "should_pass_actor_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 311 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='shouldPassActorInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 389, + 386, + 391, + 388, + 385, + 387, + 390, + 384, + 392 + ], + "title": "Properties" + } + ], + "id": 383, + "module": "_models", + "name": "ActorStandby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 299 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 394, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 315 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 395, + "module": "_models", + "name": "body", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 319 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['{ \"helloWorld\": 123 }'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 396, + "module": "_models", + "name": "content_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 320 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='contentType', examples=['application/json; charset=utf-8'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 395, + 396, + 394 + ], + "title": "Properties" + } + ], + "id": 393, + "module": "_models", + "name": "ExampleRunInput", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 314 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 398, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 324 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 399, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 328 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['MyActor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 400, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 329 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My favourite actor!'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 401, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 330 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 402, + "module": "_models", + "name": "is_public", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 331 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isPublic', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 403, + "module": "_models", + "name": "seo_title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 332 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='seoTitle', examples=['My actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 404, + "module": "_models", + "name": "seo_description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 333 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='seoDescription', examples=['My actor is the best'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 405, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 334 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 406, + "module": "_models", + "name": "versions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 335 + } + ], + "type": { + "name": "list[Version] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "Version", + "target": "322" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 407, + "module": "_models", + "name": "pricing_infos", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 336 + } + ], + "type": { + "name": "Annotated[ list[ PayPerEventActorPricingInfo | PricePerDatasetItemActorPricingInfo | FlatPricePerMonthActorPricingInfo | FreeActorPricingInfo ] | None, Field(alias='pricingInfos'), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "PayPerEventActorPricingInfo", + "target": "354" + }, + { + "type": "reference", + "name": "PricePerDatasetItemActorPricingInfo", + "target": "359" + } + ] + }, + { + "type": "reference", + "name": "FlatPricePerMonthActorPricingInfo", + "target": "364" + } + ] + }, + { + "type": "reference", + "name": "FreeActorPricingInfo", + "target": "369" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 408, + "module": "_models", + "name": "categories", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 346 + } + ], + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 409, + "module": "_models", + "name": "default_run_options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 347 + } + ], + "type": { + "name": "Annotated[DefaultRunOptions | None, Field(alias='defaultRunOptions')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "DefaultRunOptions", + "target": "375" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 410, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 348 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 411, + "module": "_models", + "name": "example_run_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 349 + } + ], + "type": { + "name": "Annotated[ExampleRunInput | None, Field(alias='exampleRunInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ExampleRunInput", + "target": "393" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 412, + "module": "_models", + "name": "is_deprecated", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 350 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isDeprecated')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 410, + 408, + 409, + 400, + 411, + 412, + 402, + 398, + 399, + 407, + 405, + 404, + 403, + 401, + 406 + ], + "title": "Properties" + } + ], + "id": 397, + "module": "_models", + "name": "CreateActorRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 323 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 414, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 356 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the build associated with this tag." + } + ] + }, + "flags": {}, + "groups": [], + "id": 415, + "module": "_models", + "name": "build_id", + "parsedDocstring": { + "text": "The ID of the build associated with this tag." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 360 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildId', examples=['z2EryhbfhgSyqj6Hn'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build number/version string." + } + ] + }, + "flags": {}, + "groups": [], + "id": 416, + "module": "_models", + "name": "build_number", + "parsedDocstring": { + "text": "The build number/version string." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 364 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildNumber', examples=['0.0.2'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the build finished." + } + ] + }, + "flags": {}, + "groups": [], + "id": 417, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "The timestamp when the build finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 368 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-06-10T11:15:49.286Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Information about a tagged build." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 415, + 416, + 417, + 414 + ], + "title": "Properties" + } + ], + "id": 413, + "module": "_models", + "name": "TaggedBuildInfo", + "parsedDocstring": { + "text": "Information about a tagged build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 353 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 419, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 377 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 420, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 381 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 421, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 382 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 422, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 383 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 423, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 384 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 424, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 385 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My favourite actor!'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 425, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 386 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 426, + "module": "_models", + "name": "is_public", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 387 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 427, + "module": "_models", + "name": "actor_permission_level", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 388 + } + ], + "type": { + "name": "Annotated[ActorPermissionLevel | None, Field(alias='actorPermissionLevel')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 428, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 389 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 429, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 390 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 430, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 391 + } + ], + "type": { + "name": "ActorStats", + "type": "reference", + "target": "268" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 431, + "module": "_models", + "name": "versions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 392 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Version", + "target": "322" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 432, + "module": "_models", + "name": "pricing_infos", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 393 + } + ], + "type": { + "name": "Annotated[ list[ PayPerEventActorPricingInfo | PricePerDatasetItemActorPricingInfo | FlatPricePerMonthActorPricingInfo | FreeActorPricingInfo ] | None, Field(alias='pricingInfos'), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "PayPerEventActorPricingInfo", + "target": "354" + }, + { + "type": "reference", + "name": "PricePerDatasetItemActorPricingInfo", + "target": "359" + } + ] + }, + { + "type": "reference", + "name": "FlatPricePerMonthActorPricingInfo", + "target": "364" + } + ] + }, + { + "type": "reference", + "name": "FreeActorPricingInfo", + "target": "369" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 433, + "module": "_models", + "name": "default_run_options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 403 + } + ], + "type": { + "name": "DefaultRunOptions", + "type": "reference", + "target": "375" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 434, + "module": "_models", + "name": "example_run_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 404 + } + ], + "type": { + "name": "Annotated[ExampleRunInput | None, Field(alias='exampleRunInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ExampleRunInput", + "target": "393" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 435, + "module": "_models", + "name": "is_deprecated", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 405 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isDeprecated', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 436, + "module": "_models", + "name": "deployment_key", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 406 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='deploymentKey', examples=['ssh-rsa AAAA ...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 437, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 407 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My Actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 438, + "module": "_models", + "name": "tagged_builds", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 408 + } + ], + "type": { + "name": "Annotated[dict[str, TaggedBuildInfo | None] | None, Field(alias='taggedBuilds')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaggedBuildInfo", + "target": "413" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 439, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 409 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A brief, LLM-generated readme summary" + } + ] + }, + "flags": {}, + "groups": [], + "id": 440, + "module": "_models", + "name": "readme_summary", + "parsedDocstring": { + "text": "A brief, LLM-generated readme summary" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 410 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='readmeSummary')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 427, + 439, + 428, + 433, + 436, + 424, + 434, + 420, + 435, + 426, + 419, + 429, + 422, + 432, + 440, + 425, + 430, + 438, + 437, + 421, + 423, + 431 + ], + "title": "Properties" + } + ], + "id": 418, + "module": "_models", + "name": "Actor", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 376 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 442, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 419 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 443, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 423 + } + ], + "type": { + "name": "Actor", + "type": "reference", + "target": "418" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing Actor data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 443, + 442 + ], + "title": "Properties" + } + ], + "id": 441, + "module": "_models", + "name": "ActorResponse", + "parsedDocstring": { + "text": "Response containing Actor data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 416 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 445, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 427 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 446, + "module": "_models", + "name": "version_number", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 431 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='versionNumber', examples=['0.0'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 447, + "module": "_models", + "name": "source_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 432 + } + ], + "type": { + "name": "Annotated[VersionSourceType | None, Field(alias='sourceType')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "VersionSourceType", + "target": "300" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 448, + "module": "_models", + "name": "env_vars", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 433 + } + ], + "type": { + "name": "Annotated[list[EnvVar] | None, Field(alias='envVars')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "EnvVar", + "target": "305" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 449, + "module": "_models", + "name": "apply_env_vars_to_build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 434 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='applyEnvVarsToBuild', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 450, + "module": "_models", + "name": "build_tag", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 435 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildTag', examples=['latest'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 451, + "module": "_models", + "name": "source_files", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 436 + } + ], + "type": { + "name": "Annotated[ list[SourceCodeFile | SourceCodeFolder] | None, Field(alias='sourceFiles', title='VersionSourceFiles') ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "SourceCodeFile", + "target": "313" + }, + { + "type": "reference", + "name": "SourceCodeFolder", + "target": "318" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the Git repository when sourceType is GIT_REPO." + } + ] + }, + "flags": {}, + "groups": [], + "id": 452, + "module": "_models", + "name": "git_repo_url", + "parsedDocstring": { + "text": "URL of the Git repository when sourceType is GIT_REPO." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 439 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='gitRepoUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the tarball when sourceType is TARBALL." + } + ] + }, + "flags": {}, + "groups": [], + "id": 453, + "module": "_models", + "name": "tarball_url", + "parsedDocstring": { + "text": "URL of the tarball when sourceType is TARBALL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 443 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='tarballUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the GitHub Gist when sourceType is GITHUB_GIST." + } + ] + }, + "flags": {}, + "groups": [], + "id": 454, + "module": "_models", + "name": "github_gist_url", + "parsedDocstring": { + "text": "URL of the GitHub Gist when sourceType is GITHUB_GIST." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 447 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='gitHubGistUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 449, + 450, + 448, + 452, + 454, + 445, + 451, + 447, + 453, + 446 + ], + "title": "Properties" + } + ], + "id": 444, + "module": "_models", + "name": "CreateOrUpdateVersionRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 426 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 456, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 454 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 457, + "module": "_models", + "name": "build_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 458 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 457, + 456 + ], + "title": "Properties" + } + ], + "id": 455, + "module": "_models", + "name": "BuildTag", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 453 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 459, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 462 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 460, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 466 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['MyActor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 461, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 467 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My favourite actor!'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 462, + "module": "_models", + "name": "is_public", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 468 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isPublic', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 463, + "module": "_models", + "name": "actor_permission_level", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 469 + } + ], + "type": { + "name": "Annotated[ActorPermissionLevel | None, Field(alias='actorPermissionLevel')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 464, + "module": "_models", + "name": "seo_title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 470 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='seoTitle', examples=['My actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 465, + "module": "_models", + "name": "seo_description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 471 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='seoDescription', examples=['My actor is the best'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 466, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 472 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['My Actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 467, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 473 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 468, + "module": "_models", + "name": "versions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 474 + } + ], + "type": { + "name": "list[CreateOrUpdateVersionRequest] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "CreateOrUpdateVersionRequest", + "target": "444" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 469, + "module": "_models", + "name": "pricing_infos", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 475 + } + ], + "type": { + "name": "Annotated[ list[ PayPerEventActorPricingInfo | PricePerDatasetItemActorPricingInfo | FlatPricePerMonthActorPricingInfo | FreeActorPricingInfo ] | None, Field(alias='pricingInfos'), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "PayPerEventActorPricingInfo", + "target": "354" + }, + { + "type": "reference", + "name": "PricePerDatasetItemActorPricingInfo", + "target": "359" + } + ] + }, + { + "type": "reference", + "name": "FlatPricePerMonthActorPricingInfo", + "target": "364" + } + ] + }, + { + "type": "reference", + "name": "FreeActorPricingInfo", + "target": "369" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 470, + "module": "_models", + "name": "categories", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 485 + } + ], + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 471, + "module": "_models", + "name": "default_run_options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 486 + } + ], + "type": { + "name": "Annotated[DefaultRunOptions | None, Field(alias='defaultRunOptions')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "DefaultRunOptions", + "target": "375" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object to modify tags on the Actor's builds. The key is the tag name (e.g., _latest_), and the value is either an object with a `buildId` or `null`.\n\nThis operation is a patch; any existing tags that you omit from this object will be preserved.\n\n- **To create or reassign a tag**, provide the tag name with a `buildId`. e.g., to assign the _latest_ tag:\n\n \n\n ```json\n {\n \"latest\": {\n \"buildId\": \"z2EryhbfhgSyqj6Hn\"\n }\n }\n ```\n\n\n- **To remove a tag**, provide the tag name with a `null` value. e.g., to remove the _beta_ tag:\n\n \n\n ```json\n {\n \"beta\": null\n }\n ```\n\n\n- **To perform multiple operations**, combine them. The following reassigns _latest_ and removes _beta_, while preserving any other existing tags.\n\n \n\n ```json\n {\n \"latest\": {\n \"buildId\": \"z2EryhbfhgSyqj6Hn\"\n },\n \"beta\": null\n }\n ```" + } + ] + }, + "flags": {}, + "groups": [], + "id": 472, + "module": "_models", + "name": "tagged_builds", + "parsedDocstring": { + "text": "An object to modify tags on the Actor's builds. The key is the tag name (e.g., _latest_), and the value is either an object with a `buildId` or `null`.\n\nThis operation is a patch; any existing tags that you omit from this object will be preserved.\n\n- **To create or reassign a tag**, provide the tag name with a `buildId`. e.g., to assign the _latest_ tag:\n\n \n\n ```json\n {\n \"latest\": {\n \"buildId\": \"z2EryhbfhgSyqj6Hn\"\n }\n }\n ```\n\n\n- **To remove a tag**, provide the tag name with a `null` value. e.g., to remove the _beta_ tag:\n\n \n\n ```json\n {\n \"beta\": null\n }\n ```\n\n\n- **To perform multiple operations**, combine them. The following reassigns _latest_ and removes _beta_, while preserving any other existing tags.\n\n \n\n ```json\n {\n \"latest\": {\n \"buildId\": \"z2EryhbfhgSyqj6Hn\"\n },\n \"beta\": null\n }\n ```" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 487 + } + ], + "type": { + "name": "Annotated[ dict[str, Any] | None, Field(alias='taggedBuilds', examples=[{'latest': {'buildId': 'z2EryhbfhgSyqj6Hn'}, 'beta': None}]), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 473, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 532 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 474, + "module": "_models", + "name": "example_run_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 533 + } + ], + "type": { + "name": "Annotated[ExampleRunInput | None, Field(alias='exampleRunInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ExampleRunInput", + "target": "393" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 475, + "module": "_models", + "name": "is_deprecated", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 534 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isDeprecated')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 463, + 473, + 470, + 471, + 461, + 474, + 475, + 462, + 459, + 460, + 469, + 467, + 465, + 464, + 472, + 466, + 468 + ], + "title": "Properties" + } + ], + "id": 458, + "module": "_models", + "name": "UpdateActorRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 461 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 477, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 538 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 478, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 542 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 479, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 543 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Version", + "target": "322" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 479, + 477, + 478 + ], + "title": "Properties" + } + ], + "id": 476, + "module": "_models", + "name": "ListOfVersions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 537 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 481, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 547 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 482, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 551 + } + ], + "type": { + "name": "ListOfVersions", + "type": "reference", + "target": "476" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 482, + 481 + ], + "title": "Properties" + } + ], + "id": 480, + "module": "_models", + "name": "ListOfVersionsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 546 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 484, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 555 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 485, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 559 + } + ], + "type": { + "name": "Version", + "type": "reference", + "target": "322" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 485, + 484 + ], + "title": "Properties" + } + ], + "id": 483, + "module": "_models", + "name": "VersionResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 554 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 487, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 563 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 488, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 567 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 489, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 568 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "EnvVar", + "target": "305" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 489, + 487, + 488 + ], + "title": "Properties" + } + ], + "id": 486, + "module": "_models", + "name": "ListOfEnvVars", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 562 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 491, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 572 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 492, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 576 + } + ], + "type": { + "name": "ListOfEnvVars", + "type": "reference", + "target": "486" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 492, + 491 + ], + "title": "Properties" + } + ], + "id": 490, + "module": "_models", + "name": "ListOfEnvVarsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 571 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 494, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 580 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 495, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 584 + } + ], + "type": { + "name": "EnvVar", + "type": "reference", + "target": "305" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 495, + 494 + ], + "title": "Properties" + } + ], + "id": 493, + "module": "_models", + "name": "EnvVarResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 579 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 497, + "module": "_models", + "name": "ACTOR_BUILD_ABORTED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 590 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 498, + "module": "_models", + "name": "ACTOR_BUILD_CREATED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 591 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 499, + "module": "_models", + "name": "ACTOR_BUILD_FAILED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 592 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 500, + "module": "_models", + "name": "ACTOR_BUILD_SUCCEEDED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 593 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 501, + "module": "_models", + "name": "ACTOR_BUILD_TIMED_OUT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 594 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 502, + "module": "_models", + "name": "ACTOR_RUN_ABORTED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 595 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 503, + "module": "_models", + "name": "ACTOR_RUN_CREATED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 596 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 504, + "module": "_models", + "name": "ACTOR_RUN_FAILED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 597 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 505, + "module": "_models", + "name": "ACTOR_RUN_RESURRECTED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 598 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 506, + "module": "_models", + "name": "ACTOR_RUN_SUCCEEDED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 599 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 507, + "module": "_models", + "name": "ACTOR_RUN_TIMED_OUT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 600 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 508, + "module": "_models", + "name": "TEST", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 601 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Type of event that triggers the webhook." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508 + ], + "title": "Properties" + } + ], + "id": 496, + "module": "_models", + "name": "WebhookEventType", + "parsedDocstring": { + "text": "Type of event that triggers the webhook." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 587 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 510, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 605 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 511, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 609 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actorId', examples=['hksJZtadYvn4mBuin'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 512, + "module": "_models", + "name": "actor_task_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 610 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actorTaskId', examples=['asdLZtadYvn4mBZmm'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 513, + "module": "_models", + "name": "actor_run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 611 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actorRunId', examples=['hgdKZtadYvn4mBpoi'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 511, + 513, + 512, + 510 + ], + "title": "Properties" + } + ], + "id": 509, + "module": "_models", + "name": "WebhookCondition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 604 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 515, + "module": "_models", + "name": "ACTIVE", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 617 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 516, + "module": "_models", + "name": "SUCCEEDED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 618 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 517, + "module": "_models", + "name": "FAILED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 619 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Status of the webhook dispatch indicating whether the HTTP request was successful." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 515, + 517, + 516 + ], + "title": "Properties" + } + ], + "id": 514, + "module": "_models", + "name": "WebhookDispatchStatus", + "parsedDocstring": { + "text": "Status of the webhook dispatch indicating whether the HTTP request was successful." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 614 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 519, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 623 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 520, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 627 + } + ], + "type": { + "name": "WebhookDispatchStatus", + "type": "reference", + "target": "514" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 521, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 628 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-13T08:36:13.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 521, + 519, + 520 + ], + "title": "Properties" + } + ], + "id": 518, + "module": "_models", + "name": "ExampleWebhookDispatch", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 622 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 523, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 634 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 524, + "module": "_models", + "name": "total_dispatches", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 638 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 523, + 524 + ], + "title": "Properties" + } + ], + "id": 522, + "module": "_models", + "name": "WebhookStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 633 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 526, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 642 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 527, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 646 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 528, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 647 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 529, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 648 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 530, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 649 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 531, + "module": "_models", + "name": "is_ad_hoc", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 650 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isAdHoc', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 532, + "module": "_models", + "name": "should_interpolate_strings", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 651 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='shouldInterpolateStrings', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 533, + "module": "_models", + "name": "event_types", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 652 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 534, + "module": "_models", + "name": "condition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 653 + } + ], + "type": { + "name": "WebhookCondition", + "type": "reference", + "target": "509" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 535, + "module": "_models", + "name": "ignore_ssl_errors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 654 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 536, + "module": "_models", + "name": "do_not_retry", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 655 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 537, + "module": "_models", + "name": "request_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 656 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 538, + "module": "_models", + "name": "last_dispatch", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 657 + } + ], + "type": { + "name": "Annotated[ExampleWebhookDispatch | None, Field(alias='lastDispatch')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ExampleWebhookDispatch", + "target": "518" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 539, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 658 + } + ], + "type": { + "name": "WebhookStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookStats", + "target": "522" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 534, + 528, + 536, + 533, + 527, + 535, + 531, + 538, + 526, + 529, + 537, + 532, + 539, + 530 + ], + "title": "Properties" + } + ], + "id": 525, + "module": "_models", + "name": "WebhookShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 641 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 541, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 662 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 542, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 666 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookShort", + "target": "525" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3731, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3732, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3733, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3734, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3735, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3735, + 3734, + 542, + 3733, + 541, + 3732, + 3731 + ], + "title": "Properties" + } + ], + "id": 540, + "module": "_models", + "name": "ListOfWebhooks", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 661 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 544, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 670 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 545, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 674 + } + ], + "type": { + "name": "ListOfWebhooks", + "type": "reference", + "target": "540" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 545, + 544 + ], + "title": "Properties" + } + ], + "id": 543, + "module": "_models", + "name": "ListOfWebhooksResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 669 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 547, + "module": "_models", + "name": "READY", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 680 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 548, + "module": "_models", + "name": "RUNNING", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 681 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 549, + "module": "_models", + "name": "SUCCEEDED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 682 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 550, + "module": "_models", + "name": "FAILED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 683 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 551, + "module": "_models", + "name": "TIMING_OUT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 684 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 552, + "module": "_models", + "name": "TIMED_OUT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 685 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 553, + "module": "_models", + "name": "ABORTING", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 686 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 554, + "module": "_models", + "name": "ABORTED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 687 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Status of an Actor job (run or build)." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 554, + 553, + 550, + 547, + 548, + 549, + 552, + 551 + ], + "title": "Properties" + } + ], + "id": 546, + "module": "_models", + "name": "ActorJobStatus", + "parsedDocstring": { + "text": "Status of an Actor job (run or build)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 677 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 556, + "module": "_models", + "name": "DEVELOPMENT", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 691 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 557, + "module": "_models", + "name": "WEB", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 692 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 558, + "module": "_models", + "name": "API", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 693 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 559, + "module": "_models", + "name": "SCHEDULER", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 694 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 560, + "module": "_models", + "name": "TEST", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 695 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 561, + "module": "_models", + "name": "WEBHOOK", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 696 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 562, + "module": "_models", + "name": "ACTOR", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 697 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 563, + "module": "_models", + "name": "CLI", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 698 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 564, + "module": "_models", + "name": "STANDBY", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 699 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 562, + 558, + 563, + 556, + 559, + 564, + 560, + 557, + 561 + ], + "title": "Properties" + } + ], + "id": 555, + "module": "_models", + "name": "RunOrigin", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 690 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 566, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 703 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 567, + "module": "_models", + "name": "origin", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 707 + } + ], + "type": { + "name": "RunOrigin", + "type": "reference", + "target": "555" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "IP address of the client that started the build." + } + ] + }, + "flags": {}, + "groups": [], + "id": 568, + "module": "_models", + "name": "client_ip", + "parsedDocstring": { + "text": "IP address of the client that started the build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 708 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='clientIp', examples=['172.234.12.34'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "User agent of the client that started the build." + } + ] + }, + "flags": {}, + "groups": [], + "id": 569, + "module": "_models", + "name": "user_agent", + "parsedDocstring": { + "text": "User agent of the client that started the build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 712 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='userAgent', examples=['Mozilla/5.0 (iPad)'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 568, + 566, + 567, + 569 + ], + "title": "Properties" + } + ], + "id": 565, + "module": "_models", + "name": "BuildsMeta", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 702 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 571, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 719 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 572, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 723 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 573, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 724 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actId', examples=['janedoe~my-actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 574, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 725 + } + ], + "type": { + "name": "ActorJobStatus", + "type": "reference", + "target": "546" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 575, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 726 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 576, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 727 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-12T09:30:12.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 577, + "module": "_models", + "name": "usage_total_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 730 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 578, + "module": "_models", + "name": "meta", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 731 + } + ], + "type": { + "name": "BuildsMeta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BuildsMeta", + "target": "565" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 573, + 576, + 572, + 578, + 571, + 575, + 574, + 577 + ], + "title": "Properties" + } + ], + "id": 570, + "module": "_models", + "name": "BuildShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 718 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 580, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 735 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 581, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 739 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BuildShort", + "target": "570" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3736, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3737, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3738, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3739, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3740, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3740, + 3739, + 581, + 3738, + 580, + 3737, + 3736 + ], + "title": "Properties" + } + ], + "id": 579, + "module": "_models", + "name": "ListOfBuilds", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 734 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 583, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 743 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 584, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 747 + } + ], + "type": { + "name": "ListOfBuilds", + "type": "reference", + "target": "579" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 584, + 583 + ], + "title": "Properties" + } + ], + "id": 582, + "module": "_models", + "name": "ListOfBuildsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 742 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 586, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 751 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 587, + "module": "_models", + "name": "duration_millis", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 755 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='durationMillis', examples=[1000])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 588, + "module": "_models", + "name": "run_time_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 756 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='runTimeSecs', examples=[45.718])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 589, + "module": "_models", + "name": "compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 757 + } + ], + "type": { + "name": "float", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 589, + 587, + 586, + 588 + ], + "title": "Properties" + } + ], + "id": 585, + "module": "_models", + "name": "BuildStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 750 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 591, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 761 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 592, + "module": "_models", + "name": "use_cache", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 765 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='useCache', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 593, + "module": "_models", + "name": "beta_packages", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 766 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='betaPackages', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 594, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 767 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memoryMbytes', examples=[1024])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 595, + "module": "_models", + "name": "disk_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 768 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='diskMbytes', examples=[2048])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 593, + 595, + 594, + 591, + 592 + ], + "title": "Properties" + } + ], + "id": 590, + "module": "_models", + "name": "BuildOptions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 760 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 597, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 772 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 598, + "module": "_models", + "name": "actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 776 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='ACTOR_COMPUTE_UNITS', examples=[0.08])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 598, + 597 + ], + "title": "Properties" + } + ], + "id": 596, + "module": "_models", + "name": "BuildUsage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 771 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 600, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 780 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Defines the schema of items in your dataset, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema)" + } + ] + }, + "flags": {}, + "groups": [], + "id": 601, + "module": "_models", + "name": "dataset", + "parsedDocstring": { + "text": "Defines the schema of items in your dataset, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema)" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 784 + } + ], + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 601, + 600 + ], + "title": "Properties" + } + ], + "id": 599, + "module": "_models", + "name": "Storages", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 779 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 603, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 793 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Actor specification version that this Actor follows. This property must be set to 1." + } + ] + }, + "flags": {}, + "groups": [], + "id": 604, + "module": "_models", + "name": "actor_specification", + "parsedDocstring": { + "text": "The Actor specification version that this Actor follows. This property must be set to 1." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 797 + } + ], + "type": { + "name": "Literal", + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": 1 + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 605, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "The name of the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 801 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The version of the Actor, specified in the format [Number].[Number], e.g., 0.1, 1.0." + } + ] + }, + "flags": {}, + "groups": [], + "id": 606, + "module": "_models", + "name": "version", + "parsedDocstring": { + "text": "The version of the Actor, specified in the format [Number].[Number], e.g., 0.1, 1.0." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 805 + } + ], + "type": { + "name": "Annotated[str | None, Field(pattern='^[0-9]+\\\\.[0-9]+$')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tag name to be applied to a successful build of the Actor. Defaults to 'latest' if not specified." + } + ] + }, + "flags": {}, + "groups": [], + "id": 607, + "module": "_models", + "name": "build_tag", + "parsedDocstring": { + "text": "The tag name to be applied to a successful build of the Actor. Defaults to 'latest' if not specified." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 809 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildTag')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A map of environment variables to be used during local development and deployment." + } + ] + }, + "flags": {}, + "groups": [], + "id": 608, + "module": "_models", + "name": "environment_variables", + "parsedDocstring": { + "text": "A map of environment variables to be used during local development and deployment." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 813 + } + ], + "type": { + "name": "Annotated[dict[str, str] | None, Field(alias='environmentVariables')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the Dockerfile used for building the Actor on the platform." + } + ] + }, + "flags": {}, + "groups": [], + "id": 609, + "module": "_models", + "name": "dockerfile", + "parsedDocstring": { + "text": "The path to the Dockerfile used for building the Actor on the platform." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 817 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the directory used as the Docker context when building the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 610, + "module": "_models", + "name": "docker_context_dir", + "parsedDocstring": { + "text": "The path to the directory used as the Docker context when building the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 821 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='dockerContextDir')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the README file for the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 611, + "module": "_models", + "name": "readme", + "parsedDocstring": { + "text": "The path to the README file for the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 825 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input schema object, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/input-schema)" + } + ] + }, + "flags": {}, + "groups": [], + "id": 612, + "module": "_models", + "name": "input", + "parsedDocstring": { + "text": "The input schema object, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/input-schema)" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 829 + } + ], + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the CHANGELOG file displayed in the Actor's information tab." + } + ] + }, + "flags": {}, + "groups": [], + "id": 613, + "module": "_models", + "name": "changelog", + "parsedDocstring": { + "text": "The path to the CHANGELOG file displayed in the Actor's information tab." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 833 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 614, + "module": "_models", + "name": "storages", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 837 + } + ], + "type": { + "name": "Storages | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Storages", + "target": "599" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the default amount of memory in megabytes to be used when the Actor is started. Can be an integer or a [dynamic memory expression](/platform/actors/development/actor-definition/dynamic-actor-memory)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 615, + "module": "_models", + "name": "default_memory_mbytes", + "parsedDocstring": { + "text": "Specifies the default amount of memory in megabytes to be used when the Actor is started. Can be an integer or a [dynamic memory expression](/platform/actors/development/actor-definition/dynamic-actor-memory)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 838 + } + ], + "type": { + "name": "Annotated[str | int | None, Field(alias='defaultMemoryMbytes')]", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "int" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the minimum amount of memory in megabytes required by the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 616, + "module": "_models", + "name": "min_memory_mbytes", + "parsedDocstring": { + "text": "Specifies the minimum amount of memory in megabytes required by the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 842 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='minMemoryMbytes', ge=256)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum amount of memory in megabytes required by the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 617, + "module": "_models", + "name": "max_memory_mbytes", + "parsedDocstring": { + "text": "Specifies the maximum amount of memory in megabytes required by the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 846 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='maxMemoryMbytes', ge=256)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies whether Standby mode is enabled for the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 618, + "module": "_models", + "name": "uses_standby_mode", + "parsedDocstring": { + "text": "Specifies whether Standby mode is enabled for the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 850 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='usesStandbyMode')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The definition of the Actor, the full specification of this field can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/actor-json)" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 604, + 607, + 613, + 615, + 610, + 609, + 608, + 612, + 617, + 616, + 603, + 605, + 611, + 614, + 618, + 606 + ], + "title": "Properties" + } + ], + "id": 602, + "module": "_models", + "name": "ActorDefinition", + "parsedDocstring": { + "text": "The definition of the Actor, the full specification of this field can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/actor-json)" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 790 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 620, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 857 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 621, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 861 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 622, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 862 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 623, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 863 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 624, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 864 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 625, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 865 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-12T09:30:12.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 626, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 868 + } + ], + "type": { + "name": "ActorJobStatus", + "type": "reference", + "target": "546" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 627, + "module": "_models", + "name": "meta", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 869 + } + ], + "type": { + "name": "BuildsMeta", + "type": "reference", + "target": "565" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 628, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 870 + } + ], + "type": { + "name": "BuildStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BuildStats", + "target": "585" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 629, + "module": "_models", + "name": "options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 871 + } + ], + "type": { + "name": "BuildOptions | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BuildOptions", + "target": "590" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 630, + "module": "_models", + "name": "usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 872 + } + ], + "type": { + "name": "BuildUsage | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BuildUsage", + "target": "596" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 631, + "module": "_models", + "name": "usage_total_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 873 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='usageTotalUsd', examples=[0.02])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 632, + "module": "_models", + "name": "usage_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 874 + } + ], + "type": { + "name": "Annotated[BuildUsage | None, Field(alias='usageUsd')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BuildUsage", + "target": "596" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 633, + "module": "_models", + "name": "input_schema", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 875 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='inputSchema', examples=['{\\\\n \"title\": \"Schema for ... }'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 634, + "module": "_models", + "name": "readme", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 878 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 635, + "module": "_models", + "name": "build_number", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 879 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 636, + "module": "_models", + "name": "actor_definition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 880 + } + ], + "type": { + "name": "Annotated[ActorDefinition | None, Field(alias='actorDefinition')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorDefinition", + "target": "602" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 622, + 636, + 635, + 625, + 621, + 633, + 627, + 620, + 629, + 634, + 624, + 628, + 626, + 630, + 631, + 632, + 623 + ], + "title": "Properties" + } + ], + "id": 619, + "module": "_models", + "name": "Build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 856 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 638, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 886 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 639, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 890 + } + ], + "type": { + "name": "Build", + "type": "reference", + "target": "619" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing Actor build data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 639, + 638 + ], + "title": "Properties" + } + ], + "id": 637, + "module": "_models", + "name": "BuildResponse", + "parsedDocstring": { + "text": "Response containing Actor build data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 883 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 641, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 894 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 642, + "module": "_models", + "name": "origin", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 898 + } + ], + "type": { + "name": "RunOrigin", + "type": "reference", + "target": "555" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "IP address of the client that started the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 643, + "module": "_models", + "name": "client_ip", + "parsedDocstring": { + "text": "IP address of the client that started the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 899 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='clientIp')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "User agent of the client that started the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 644, + "module": "_models", + "name": "user_agent", + "parsedDocstring": { + "text": "User agent of the client that started the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 903 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='userAgent')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the schedule that triggered the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 645, + "module": "_models", + "name": "schedule_id", + "parsedDocstring": { + "text": "ID of the schedule that triggered the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 907 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='scheduleId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Time when the run was scheduled." + } + ] + }, + "flags": {}, + "groups": [], + "id": 646, + "module": "_models", + "name": "scheduled_at", + "parsedDocstring": { + "text": "Time when the run was scheduled." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 911 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='scheduledAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 643, + 641, + 642, + 645, + 646, + 644 + ], + "title": "Properties" + } + ], + "id": 640, + "module": "_models", + "name": "RunMeta", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 893 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 648, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 918 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 649, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 922 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 650, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 923 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 651, + "module": "_models", + "name": "actor_task_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 924 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actorTaskId', examples=['KJHSKHausidyaJKHs'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 652, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 925 + } + ], + "type": { + "name": "ActorJobStatus", + "type": "reference", + "target": "546" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 653, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 926 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 654, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 927 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-12T09:30:12.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 655, + "module": "_models", + "name": "build_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 930 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 656, + "module": "_models", + "name": "build_number", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 931 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildNumber', examples=['0.0.2'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 657, + "module": "_models", + "name": "meta", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 932 + } + ], + "type": { + "name": "RunMeta", + "type": "reference", + "target": "640" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 658, + "module": "_models", + "name": "usage_total_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 933 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 659, + "module": "_models", + "name": "default_key_value_store_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 934 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 660, + "module": "_models", + "name": "default_dataset_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 935 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 661, + "module": "_models", + "name": "default_request_queue_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 936 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 650, + 651, + 655, + 656, + 660, + 659, + 661, + 654, + 649, + 657, + 648, + 653, + 652, + 658 + ], + "title": "Properties" + } + ], + "id": 647, + "module": "_models", + "name": "RunShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 917 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 663, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 940 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 664, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 944 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RunShort", + "target": "647" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3741, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3742, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3743, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3744, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3745, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3745, + 3744, + 664, + 3743, + 663, + 3742, + 3741 + ], + "title": "Properties" + } + ], + "id": 662, + "module": "_models", + "name": "ListOfRuns", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 939 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 666, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 948 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 667, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 952 + } + ], + "type": { + "name": "ListOfRuns", + "type": "reference", + "target": "662" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 667, + 666 + ], + "title": "Properties" + } + ], + "id": 665, + "module": "_models", + "name": "ListOfRunsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 947 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 669, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 956 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 670, + "module": "_models", + "name": "input_body_len", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 960 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='inputBodyLen', examples=[240], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 671, + "module": "_models", + "name": "migration_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 961 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='migrationCount', examples=[0], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 672, + "module": "_models", + "name": "reboot_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 962 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='rebootCount', examples=[0], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 673, + "module": "_models", + "name": "restart_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 963 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 674, + "module": "_models", + "name": "resurrect_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 964 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 675, + "module": "_models", + "name": "mem_avg_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 965 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='memAvgBytes', examples=[267874071.9])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 676, + "module": "_models", + "name": "mem_max_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 966 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memMaxBytes', examples=[404713472], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 677, + "module": "_models", + "name": "mem_current_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 967 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memCurrentBytes', examples=[0], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 678, + "module": "_models", + "name": "cpu_avg_usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 968 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='cpuAvgUsage', examples=[33.7532101107538])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 679, + "module": "_models", + "name": "cpu_max_usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 969 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='cpuMaxUsage', examples=[169.650735534941])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 680, + "module": "_models", + "name": "cpu_current_usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 970 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='cpuCurrentUsage', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 681, + "module": "_models", + "name": "net_rx_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 971 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='netRxBytes', examples=[103508042], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 682, + "module": "_models", + "name": "net_tx_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 972 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='netTxBytes', examples=[4854600], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 683, + "module": "_models", + "name": "duration_millis", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 973 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='durationMillis', examples=[248472], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 684, + "module": "_models", + "name": "run_time_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 974 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='runTimeSecs', examples=[248.472], ge=0.0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 685, + "module": "_models", + "name": "metamorph", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 975 + } + ], + "type": { + "name": "Annotated[int | None, Field(examples=[0], ge=0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 686, + "module": "_models", + "name": "compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 976 + } + ], + "type": { + "name": "float", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 686, + 678, + 680, + 679, + 683, + 670, + 675, + 677, + 676, + 685, + 671, + 669, + 681, + 682, + 672, + 673, + 674, + 684 + ], + "title": "Properties" + } + ], + "id": 668, + "module": "_models", + "name": "RunStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 955 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 688, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 980 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 689, + "module": "_models", + "name": "build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 984 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 690, + "module": "_models", + "name": "timeout_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 985 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 691, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 986 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 692, + "module": "_models", + "name": "disk_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 987 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 693, + "module": "_models", + "name": "max_items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 988 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='maxItems', examples=[1000], ge=1)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 694, + "module": "_models", + "name": "max_total_charge_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 989 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='maxTotalChargeUsd', examples=[5], ge=0.0)]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 689, + 692, + 693, + 694, + 691, + 688, + 690 + ], + "title": "Properties" + } + ], + "id": 687, + "module": "_models", + "name": "RunOptions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 979 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 696, + "module": "_models", + "name": "ANYONE_WITH_ID_CAN_READ", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 995 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 697, + "module": "_models", + "name": "ANYONE_WITH_NAME_CAN_READ", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 996 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 698, + "module": "_models", + "name": "FOLLOW_USER_SETTING", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 997 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 699, + "module": "_models", + "name": "RESTRICTED", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 998 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Defines the general access level for the resource." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 696, + 697, + 698, + 699 + ], + "title": "Properties" + } + ], + "id": 695, + "module": "_models", + "name": "GeneralAccess", + "parsedDocstring": { + "text": "Defines the general access level for the resource." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 992 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 701, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1002 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 702, + "module": "_models", + "name": "actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1006 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='ACTOR_COMPUTE_UNITS', examples=[3])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 703, + "module": "_models", + "name": "dataset_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1007 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='DATASET_READS', examples=[4])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 704, + "module": "_models", + "name": "dataset_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1008 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='DATASET_WRITES', examples=[4])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 705, + "module": "_models", + "name": "key_value_store_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1009 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='KEY_VALUE_STORE_READS', examples=[5])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 706, + "module": "_models", + "name": "key_value_store_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1010 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='KEY_VALUE_STORE_WRITES', examples=[3])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 707, + "module": "_models", + "name": "key_value_store_lists", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1011 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='KEY_VALUE_STORE_LISTS', examples=[5])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 708, + "module": "_models", + "name": "request_queue_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1012 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='REQUEST_QUEUE_READS', examples=[2])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 709, + "module": "_models", + "name": "request_queue_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1013 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='REQUEST_QUEUE_WRITES', examples=[1])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 710, + "module": "_models", + "name": "data_transfer_internal_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1014 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='DATA_TRANSFER_INTERNAL_GBYTES', examples=[1]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 711, + "module": "_models", + "name": "data_transfer_external_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1017 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='DATA_TRANSFER_EXTERNAL_GBYTES', examples=[3]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 712, + "module": "_models", + "name": "proxy_residential_transfer_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1020 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='PROXY_RESIDENTIAL_TRANSFER_GBYTES', examples=[34]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 713, + "module": "_models", + "name": "proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1023 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='PROXY_SERPS', examples=[3])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 702, + 711, + 710, + 703, + 704, + 707, + 705, + 706, + 701, + 712, + 713, + 708, + 709 + ], + "title": "Properties" + } + ], + "id": 700, + "module": "_models", + "name": "RunUsage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1001 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 715, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1029 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 716, + "module": "_models", + "name": "actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1033 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='ACTOR_COMPUTE_UNITS', examples=[0.0003])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 717, + "module": "_models", + "name": "dataset_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1034 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='DATASET_READS', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 718, + "module": "_models", + "name": "dataset_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1035 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='DATASET_WRITES', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 719, + "module": "_models", + "name": "key_value_store_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1036 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='KEY_VALUE_STORE_READS', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 720, + "module": "_models", + "name": "key_value_store_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1037 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='KEY_VALUE_STORE_WRITES', examples=[5e-05])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 721, + "module": "_models", + "name": "key_value_store_lists", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1038 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='KEY_VALUE_STORE_LISTS', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 722, + "module": "_models", + "name": "request_queue_reads", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1039 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='REQUEST_QUEUE_READS', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 723, + "module": "_models", + "name": "request_queue_writes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1040 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='REQUEST_QUEUE_WRITES', examples=[0.0001])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 724, + "module": "_models", + "name": "data_transfer_internal_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1041 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='DATA_TRANSFER_INTERNAL_GBYTES', examples=[0.001]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 725, + "module": "_models", + "name": "data_transfer_external_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1044 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='DATA_TRANSFER_EXTERNAL_GBYTES', examples=[0.003]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 726, + "module": "_models", + "name": "proxy_residential_transfer_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1047 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='PROXY_RESIDENTIAL_TRANSFER_GBYTES', examples=[0.034]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 727, + "module": "_models", + "name": "proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1050 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='PROXY_SERPS', examples=[0.003])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource usage costs in USD. All values are monetary amounts in US dollars." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 716, + 725, + 724, + 717, + 718, + 721, + 719, + 720, + 715, + 726, + 727, + 722, + 723 + ], + "title": "Properties" + } + ], + "id": 714, + "module": "_models", + "name": "RunUsageUsd", + "parsedDocstring": { + "text": "Resource usage costs in USD. All values are monetary amounts in US dollars." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1026 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 729, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1056 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Time when the metamorph occurred." + } + ] + }, + "flags": {}, + "groups": [], + "id": 730, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "Time when the metamorph occurred." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1060 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor that the run was metamorphed to." + } + ] + }, + "flags": {}, + "groups": [], + "id": 731, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "ID of the Actor that the run was metamorphed to." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1064 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the build used for the metamorphed Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 732, + "module": "_models", + "name": "build_id", + "parsedDocstring": { + "text": "ID of the build used for the metamorphed Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1068 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the input record in the key-value store." + } + ] + }, + "flags": {}, + "groups": [], + "id": 733, + "module": "_models", + "name": "input_key", + "parsedDocstring": { + "text": "Key of the input record in the key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1072 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='inputKey', examples=['INPUT-METAMORPH-1'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Information about a metamorph event that occurred during the run." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 731, + 732, + 730, + 733, + 729 + ], + "title": "Properties" + } + ], + "id": 728, + "module": "_models", + "name": "Metamorph", + "parsedDocstring": { + "text": "Information about a metamorph event that occurred during the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1053 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 735, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1081 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Unique identifier of the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 736, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "Unique identifier of the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1085 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor that was run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 737, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "ID of the Actor that was run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1089 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the user who started the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 738, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "ID of the user who started the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1093 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor task, if the run was started from a task." + } + ] + }, + "flags": {}, + "groups": [], + "id": 739, + "module": "_models", + "name": "actor_task_id", + "parsedDocstring": { + "text": "ID of the Actor task, if the run was started from a task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1097 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actorTaskId', examples=['KJHSKHausidyaJKHs'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Time when the Actor run started." + } + ] + }, + "flags": {}, + "groups": [], + "id": 740, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "Time when the Actor run started." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1101 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Time when the Actor run finished." + } + ] + }, + "flags": {}, + "groups": [], + "id": 741, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "Time when the Actor run finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1105 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-12T09:30:12.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Current status of the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 742, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "Current status of the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1111 + } + ], + "type": { + "name": "ActorJobStatus", + "type": "reference", + "target": "546" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detailed message about the run status." + } + ] + }, + "flags": {}, + "groups": [], + "id": 743, + "module": "_models", + "name": "status_message", + "parsedDocstring": { + "text": "Detailed message about the run status." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1115 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='statusMessage', examples=['Actor is running'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the status message is terminal (final)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 744, + "module": "_models", + "name": "is_status_message_terminal", + "parsedDocstring": { + "text": "Whether the status message is terminal (final)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1119 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isStatusMessageTerminal', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Metadata about the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 745, + "module": "_models", + "name": "meta", + "parsedDocstring": { + "text": "Metadata about the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1123 + } + ], + "type": { + "name": "RunMeta", + "type": "reference", + "target": "640" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Pricing information for the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 746, + "module": "_models", + "name": "pricing_info", + "parsedDocstring": { + "text": "Pricing information for the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1127 + } + ], + "type": { + "name": "Annotated[ PayPerEventActorPricingInfo | PricePerDatasetItemActorPricingInfo | FlatPricePerMonthActorPricingInfo | FreeActorPricingInfo | None, Field(alias='pricingInfo', discriminator='pricing_model', title='ActorRunPricingInfo'), ]", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "PayPerEventActorPricingInfo", + "target": "354" + }, + { + "type": "reference", + "name": "PricePerDatasetItemActorPricingInfo", + "target": "359" + } + ] + }, + { + "type": "reference", + "name": "FlatPricePerMonthActorPricingInfo", + "target": "364" + } + ] + }, + { + "type": "reference", + "name": "FreeActorPricingInfo", + "target": "369" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics of the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 747, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "Statistics of the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1138 + } + ], + "type": { + "name": "RunStats", + "type": "reference", + "target": "668" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A map of charged event types to their counts. The keys are event type identifiers defined by the Actor's pricing model (pay-per-event), and the values are the number of times each event was charged during this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 748, + "module": "_models", + "name": "charged_event_counts", + "parsedDocstring": { + "text": "A map of charged event types to their counts. The keys are event type identifiers defined by the Actor's pricing model (pay-per-event), and the values are the number of times each event was charged during this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1142 + } + ], + "type": { + "name": "Annotated[ dict[str, int] | None, Field(alias='chargedEventCounts', examples=[{'actor-start': 1, 'page-crawled': 150, 'data-extracted': 75}]), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "int" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Configuration options for the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 749, + "module": "_models", + "name": "options", + "parsedDocstring": { + "text": "Configuration options for the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1149 + } + ], + "type": { + "name": "RunOptions", + "type": "reference", + "target": "687" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the Actor build used for this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 750, + "module": "_models", + "name": "build_id", + "parsedDocstring": { + "text": "ID of the Actor build used for this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1153 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Exit code of the Actor run process." + } + ] + }, + "flags": {}, + "groups": [], + "id": 751, + "module": "_models", + "name": "exit_code", + "parsedDocstring": { + "text": "Exit code of the Actor run process." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1157 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='exitCode', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "General access level for the Actor run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 752, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "General access level for the Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1161 + } + ], + "type": { + "name": "GeneralAccess", + "type": "reference", + "target": "695" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the default key-value store for this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 753, + "module": "_models", + "name": "default_key_value_store_id", + "parsedDocstring": { + "text": "ID of the default key-value store for this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1165 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the default dataset for this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 754, + "module": "_models", + "name": "default_dataset_id", + "parsedDocstring": { + "text": "ID of the default dataset for this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1169 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the default request queue for this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 755, + "module": "_models", + "name": "default_request_queue_id", + "parsedDocstring": { + "text": "ID of the default request queue for this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1173 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Build number of the Actor build used for this run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 756, + "module": "_models", + "name": "build_number", + "parsedDocstring": { + "text": "Build number of the Actor build used for this run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1177 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='buildNumber', examples=['0.0.36'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL of the container running the Actor." + } + ] + }, + "flags": {}, + "groups": [], + "id": 757, + "module": "_models", + "name": "container_url", + "parsedDocstring": { + "text": "URL of the container running the Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1181 + } + ], + "type": { + "name": "Annotated[ AnyUrl | None, Field(alias='containerUrl', examples=['https://g8kd8kbc5ge8.runs.apify.net']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the container's HTTP server is ready to accept requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 758, + "module": "_models", + "name": "is_container_server_ready", + "parsedDocstring": { + "text": "Whether the container's HTTP server is ready to accept requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1187 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isContainerServerReady', examples=[True])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the git branch used for the Actor build." + } + ] + }, + "flags": {}, + "groups": [], + "id": 759, + "module": "_models", + "name": "git_branch_name", + "parsedDocstring": { + "text": "Name of the git branch used for the Actor build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1191 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='gitBranchName', examples=['master'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource usage statistics for the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 760, + "module": "_models", + "name": "usage", + "parsedDocstring": { + "text": "Resource usage statistics for the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1195 + } + ], + "type": { + "name": "RunUsage | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunUsage", + "target": "700" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Total cost in USD for this run. Represents what you actually pay. For run owners: includes platform usage (compute units) and/or event costs depending on the Actor's pricing model. For run non-owners: only available for Pay-Per-Event Actors (event costs only). Not available for Pay-Per-Result Actors when you're not the Actor owner." + } + ] + }, + "flags": {}, + "groups": [], + "id": 761, + "module": "_models", + "name": "usage_total_usd", + "parsedDocstring": { + "text": "Total cost in USD for this run. Represents what you actually pay. For run owners: includes platform usage (compute units) and/or event costs depending on the Actor's pricing model. For run non-owners: only available for Pay-Per-Event Actors (event costs only). Not available for Pay-Per-Result Actors when you're not the Actor owner." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1199 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='usageTotalUsd', examples=[0.2654])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Platform usage costs breakdown in USD. Only present if you own the run AND are paying for platform usage (Pay-Per-Usage, Rental, or Pay-Per-Event with usage costs like standby Actors). Not available for standard Pay-Per-Event Actors or Pay-Per-Result Actors owned by others." + } + ] + }, + "flags": {}, + "groups": [], + "id": 762, + "module": "_models", + "name": "usage_usd", + "parsedDocstring": { + "text": "Platform usage costs breakdown in USD. Only present if you own the run AND are paying for platform usage (Pay-Per-Usage, Rental, or Pay-Per-Event with usage costs like standby Actors). Not available for standard Pay-Per-Event Actors or Pay-Per-Result Actors owned by others." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1203 + } + ], + "type": { + "name": "Annotated[RunUsageUsd | None, Field(alias='usageUsd')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunUsageUsd", + "target": "714" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of metamorph events that occurred during the run." + } + ] + }, + "flags": {}, + "groups": [], + "id": 763, + "module": "_models", + "name": "metamorphs", + "parsedDocstring": { + "text": "List of metamorph events that occurred during the run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1207 + } + ], + "type": { + "name": "list[Metamorph] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "Metamorph", + "target": "728" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Represents an Actor run and its associated data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 737, + 739, + 750, + 756, + 748, + 757, + 754, + 753, + 755, + 751, + 741, + 752, + 759, + 736, + 758, + 744, + 745, + 763, + 735, + 749, + 746, + 740, + 747, + 742, + 743, + 760, + 761, + 762, + 738 + ], + "title": "Properties" + } + ], + "id": 734, + "module": "_models", + "name": "Run", + "parsedDocstring": { + "text": "Represents an Actor run and its associated data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1078 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 765, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1214 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 766, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1218 + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 766, + 765 + ], + "title": "Properties" + } + ], + "id": 764, + "module": "_models", + "name": "RunResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1213 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 768, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1222 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 769, + "module": "_models", + "name": "total_runs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1226 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='totalRuns', examples=[15])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 768, + 769 + ], + "title": "Properties" + } + ], + "id": 767, + "module": "_models", + "name": "TaskStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1221 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 771, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1230 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 772, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1234 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 773, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1235 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 774, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1236 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 775, + "module": "_models", + "name": "act_name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1237 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actName', examples=['my-actor'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 776, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1238 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 777, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1239 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['janedoe'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 778, + "module": "_models", + "name": "act_username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1240 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actUsername', examples=['janedoe'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 779, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1241 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 780, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1242 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 781, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1243 + } + ], + "type": { + "name": "TaskStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskStats", + "target": "767" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 774, + 775, + 778, + 779, + 772, + 771, + 780, + 776, + 781, + 773, + 777 + ], + "title": "Properties" + } + ], + "id": 770, + "module": "_models", + "name": "TaskShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1229 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 783, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1247 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 784, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1251 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TaskShort", + "target": "770" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3746, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3747, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3748, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3749, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3750, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3750, + 3749, + 784, + 3748, + 783, + 3747, + 3746 + ], + "title": "Properties" + } + ], + "id": 782, + "module": "_models", + "name": "ListOfTasks", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1246 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 786, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1255 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 787, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1259 + } + ], + "type": { + "name": "ListOfTasks", + "type": "reference", + "target": "782" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 787, + 786 + ], + "title": "Properties" + } + ], + "id": 785, + "module": "_models", + "name": "ListOfTasksResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1254 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 789, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1263 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 790, + "module": "_models", + "name": "build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1267 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['latest'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 791, + "module": "_models", + "name": "timeout_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1268 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='timeoutSecs', examples=[300])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 792, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1269 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memoryMbytes', examples=[128])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 793, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1270 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 794, + "module": "_models", + "name": "max_items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1271 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='maxItems')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 790, + 794, + 792, + 789, + 793, + 791 + ], + "title": "Properties" + } + ], + "id": 788, + "module": "_models", + "name": "TaskOptions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1262 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 796, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1280 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input configuration for the Actor task. This is a user-defined JSON object\nthat will be passed to the Actor when the task is run." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 796 + ], + "title": "Properties" + } + ], + "id": 795, + "module": "_models", + "name": "TaskInput", + "parsedDocstring": { + "text": "The input configuration for the Actor task. This is a user-defined JSON object\nthat will be passed to the Actor when the task is run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1274 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 798, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1287 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 799, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1291 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 800, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1292 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 801, + "module": "_models", + "name": "options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1293 + } + ], + "type": { + "name": "TaskOptions | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskOptions", + "target": "788" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 802, + "module": "_models", + "name": "input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1294 + } + ], + "type": { + "name": "TaskInput | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskInput", + "target": "795" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 803, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1295 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 804, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1296 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 799, + 804, + 802, + 798, + 800, + 801, + 803 + ], + "title": "Properties" + } + ], + "id": 797, + "module": "_models", + "name": "CreateTaskRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1286 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 806, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1300 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 807, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1304 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 808, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1305 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 809, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1306 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 810, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1307 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 811, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1308 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['janedoe'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 812, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1309 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 813, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1310 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 814, + "module": "_models", + "name": "removed_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1311 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='removedAt')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 815, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1312 + } + ], + "type": { + "name": "TaskStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskStats", + "target": "767" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 816, + "module": "_models", + "name": "options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1313 + } + ], + "type": { + "name": "TaskOptions | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskOptions", + "target": "788" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 817, + "module": "_models", + "name": "input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1314 + } + ], + "type": { + "name": "TaskInput | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskInput", + "target": "795" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 818, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1315 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 819, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1316 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 820, + "module": "_models", + "name": "standby_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1317 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='standbyUrl')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 809, + 819, + 812, + 807, + 817, + 806, + 813, + 810, + 816, + 814, + 820, + 815, + 818, + 808, + 811 + ], + "title": "Properties" + } + ], + "id": 805, + "module": "_models", + "name": "Task", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1299 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 822, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1323 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 823, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1327 + } + ], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing Actor task data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 823, + 822 + ], + "title": "Properties" + } + ], + "id": 821, + "module": "_models", + "name": "TaskResponse", + "parsedDocstring": { + "text": "Response containing Actor task data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1320 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 825, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1331 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 826, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1335 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['my-task'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 827, + "module": "_models", + "name": "options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1336 + } + ], + "type": { + "name": "TaskOptions | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskOptions", + "target": "788" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 828, + "module": "_models", + "name": "input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1337 + } + ], + "type": { + "name": "TaskInput | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TaskInput", + "target": "795" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 829, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1338 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 830, + "module": "_models", + "name": "actor_standby", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1339 + } + ], + "type": { + "name": "Annotated[ActorStandby | None, Field(alias='actorStandby')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorStandby", + "target": "383" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 830, + 828, + 825, + 826, + 827, + 829 + ], + "title": "Properties" + } + ], + "id": 824, + "module": "_models", + "name": "UpdateTaskRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1330 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 832, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1343 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 833, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1347 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 834, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1348 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 835, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1349 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 836, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1350 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 837, + "module": "_models", + "name": "is_ad_hoc", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1351 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isAdHoc', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 838, + "module": "_models", + "name": "should_interpolate_strings", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1352 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='shouldInterpolateStrings', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 839, + "module": "_models", + "name": "event_types", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1353 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 840, + "module": "_models", + "name": "condition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1354 + } + ], + "type": { + "name": "WebhookCondition", + "type": "reference", + "target": "509" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 841, + "module": "_models", + "name": "ignore_ssl_errors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1355 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 842, + "module": "_models", + "name": "do_not_retry", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1356 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='doNotRetry', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 843, + "module": "_models", + "name": "request_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1357 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 844, + "module": "_models", + "name": "payload_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1358 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='payloadTemplate', examples=['{\\\\n \"userId\": {{userId}}...']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 845, + "module": "_models", + "name": "headers_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1361 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='headersTemplate', examples=['{\\\\n \"Authorization\": \"Bearer ...\"}']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 846, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1364 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['this is webhook description'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 847, + "module": "_models", + "name": "last_dispatch", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1365 + } + ], + "type": { + "name": "Annotated[ExampleWebhookDispatch | None, Field(alias='lastDispatch')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ExampleWebhookDispatch", + "target": "518" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 848, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1366 + } + ], + "type": { + "name": "WebhookStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookStats", + "target": "522" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 840, + 834, + 846, + 842, + 839, + 845, + 833, + 841, + 837, + 847, + 832, + 835, + 844, + 843, + 838, + 848, + 836 + ], + "title": "Properties" + } + ], + "id": 831, + "module": "_models", + "name": "Webhook", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1342 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 850, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1370 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 851, + "module": "_models", + "name": "run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1374 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='runId', examples=['3KH8gEpp4d8uQSe8T'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 852, + "module": "_models", + "name": "status_message", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1375 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='statusMessage', examples=['Actor has finished'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 853, + "module": "_models", + "name": "is_status_message_terminal", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1376 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isStatusMessageTerminal', examples=[True])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 854, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1377 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 854, + 853, + 850, + 851, + 852 + ], + "title": "Properties" + } + ], + "id": 849, + "module": "_models", + "name": "UpdateRunRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1369 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 856, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1381 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 857, + "module": "_models", + "name": "event_name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1385 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 858, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1386 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 858, + 857, + 856 + ], + "title": "Properties" + } + ], + "id": 855, + "module": "_models", + "name": "ChargeRunRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1380 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 860, + "module": "_models", + "name": "OWNED_BY_ME", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1390 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 861, + "module": "_models", + "name": "SHARED_WITH_ME", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1391 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 860, + 861 + ], + "title": "Properties" + } + ], + "id": 859, + "module": "_models", + "name": "StorageOwnership", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1389 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 863, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1395 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 864, + "module": "_models", + "name": "read_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1399 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 865, + "module": "_models", + "name": "write_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1400 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 866, + "module": "_models", + "name": "delete_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1401 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 867, + "module": "_models", + "name": "list_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1402 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 868, + "module": "_models", + "name": "s3_storage_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1403 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='s3StorageBytes', examples=[18])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 866, + 867, + 863, + 864, + 868, + 865 + ], + "title": "Properties" + } + ], + "id": 862, + "module": "_models", + "name": "KeyValueStoreStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1394 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 870, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1407 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 871, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1411 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 872, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1412 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['d7b9MDYsbtX5L7XAj'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 873, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1413 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='userId', examples=['BPWDBd7Z9c746JAnF'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 874, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1414 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['janedoe'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 875, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1415 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 876, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1416 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 877, + "module": "_models", + "name": "accessed_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1417 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 878, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1418 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actId', examples=[None])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 879, + "module": "_models", + "name": "act_run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1419 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actRunId', examples=[None])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 880, + "module": "_models", + "name": "console_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1420 + } + ], + "type": { + "name": "Annotated[ AnyUrl | None, Field(alias='consoleUrl', examples=['https://console.apify.com/storage/key-value-stores/27TmTznX9YPeAYhkC']), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A public link to access keys of the key-value store directly." + } + ] + }, + "flags": {}, + "groups": [], + "id": 881, + "module": "_models", + "name": "keys_public_url", + "parsedDocstring": { + "text": "A public link to access keys of the key-value store directly." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1424 + } + ], + "type": { + "name": "Annotated[ AnyUrl | None, Field( alias='keysPublicUrl', examples=['https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/keys?signature=abc123'], ), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the key-value store." + } + ] + }, + "flags": {}, + "groups": [], + "id": 882, + "module": "_models", + "name": "url_signing_secret_key", + "parsedDocstring": { + "text": "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1434 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='urlSigningSecretKey')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 883, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1438 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 884, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1439 + } + ], + "type": { + "name": "KeyValueStoreStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "KeyValueStoreStats", + "target": "862" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 877, + 878, + 879, + 880, + 875, + 883, + 871, + 881, + 870, + 876, + 872, + 884, + 882, + 873, + 874 + ], + "title": "Properties" + } + ], + "id": 869, + "module": "_models", + "name": "KeyValueStore", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1406 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 886, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1443 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 887, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1447 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStore", + "target": "869" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3751, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3752, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3753, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3754, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3755, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3755, + 3754, + 887, + 3753, + 886, + 3752, + 3751 + ], + "title": "Properties" + } + ], + "id": 885, + "module": "_models", + "name": "ListOfKeyValueStores", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1442 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 889, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1451 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 890, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1455 + } + ], + "type": { + "name": "ListOfKeyValueStores", + "type": "reference", + "target": "885" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 890, + 889 + ], + "title": "Properties" + } + ], + "id": 888, + "module": "_models", + "name": "ListOfKeyValueStoresResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1450 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 892, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1461 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 893, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1465 + } + ], + "type": { + "name": "KeyValueStore", + "type": "reference", + "target": "869" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing key-value store data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 893, + 892 + ], + "title": "Properties" + } + ], + "id": 891, + "module": "_models", + "name": "KeyValueStoreResponse", + "parsedDocstring": { + "text": "Response containing key-value store data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1458 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 895, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1469 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 896, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1473 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 897, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1474 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 897, + 895, + 896 + ], + "title": "Properties" + } + ], + "id": 894, + "module": "_models", + "name": "UpdateStoreRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1468 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 899, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1478 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 900, + "module": "_models", + "name": "key", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1482 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 901, + "module": "_models", + "name": "size", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1483 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A public link to access this record directly." + } + ] + }, + "flags": {}, + "groups": [], + "id": 902, + "module": "_models", + "name": "record_public_url", + "parsedDocstring": { + "text": "A public link to access this record directly." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1484 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 900, + 899, + 902, + 901 + ], + "title": "Properties" + } + ], + "id": 898, + "module": "_models", + "name": "KeyValueStoreKey", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1477 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 904, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1497 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 905, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1501 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreKey", + "target": "898" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 906, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1502 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 907, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1503 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 908, + "module": "_models", + "name": "exclusive_start_key", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1504 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='exclusiveStartKey', examples=['some-key'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 909, + "module": "_models", + "name": "is_truncated", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1505 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 910, + "module": "_models", + "name": "next_exclusive_start_key", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1506 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='nextExclusiveStartKey', examples=['third-key'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 906, + 908, + 909, + 905, + 907, + 904, + 910 + ], + "title": "Properties" + } + ], + "id": 903, + "module": "_models", + "name": "ListOfKeys", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1496 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 912, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1510 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 913, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1514 + } + ], + "type": { + "name": "ListOfKeys", + "type": "reference", + "target": "903" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 913, + 912 + ], + "title": "Properties" + } + ], + "id": 911, + "module": "_models", + "name": "ListOfKeysResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1509 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 915, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1523 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The response body contains the value of the record. The content type of the response\nis determined by the Content-Type header stored with the record." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 915 + ], + "title": "Properties" + } + ], + "id": 914, + "module": "_models", + "name": "RecordResponse", + "parsedDocstring": { + "text": "The response body contains the value of the record. The content type of the response\nis determined by the Content-Type header stored with the record." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1517 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 917, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1535 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The request body contains the value to store in the record. The content type\nshould be specified in the Content-Type header." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 917 + ], + "title": "Properties" + } + ], + "id": 916, + "module": "_models", + "name": "PutRecordRequest", + "parsedDocstring": { + "text": "The request body contains the value to store in the record. The content type\nshould be specified in the Content-Type header." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1529 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 919, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1542 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 920, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1546 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 921, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1547 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 922, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1548 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 923, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1549 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 924, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1550 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 925, + "module": "_models", + "name": "accessed_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1551 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 926, + "module": "_models", + "name": "item_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1552 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 927, + "module": "_models", + "name": "clean_item_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1553 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 928, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1554 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 929, + "module": "_models", + "name": "act_run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1555 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actRunId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 925, + 928, + 929, + 927, + 923, + 920, + 926, + 919, + 924, + 921, + 922 + ], + "title": "Properties" + } + ], + "id": 918, + "module": "_models", + "name": "DatasetListItem", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1541 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 931, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1559 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 932, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1563 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DatasetListItem", + "target": "918" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3756, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3757, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3758, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3759, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3760, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3760, + 3759, + 932, + 3758, + 931, + 3757, + 3756 + ], + "title": "Properties" + } + ], + "id": 930, + "module": "_models", + "name": "ListOfDatasets", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1558 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 934, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1567 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 935, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1571 + } + ], + "type": { + "name": "ListOfDatasets", + "type": "reference", + "target": "930" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 935, + 934 + ], + "title": "Properties" + } + ], + "id": 933, + "module": "_models", + "name": "ListOfDatasetsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1566 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 937, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1575 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 938, + "module": "_models", + "name": "read_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1579 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 939, + "module": "_models", + "name": "write_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1580 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 940, + "module": "_models", + "name": "storage_bytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1581 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 937, + 938, + 940, + 939 + ], + "title": "Properties" + } + ], + "id": 936, + "module": "_models", + "name": "DatasetStats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1574 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 942, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1585 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 943, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1589 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 944, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1590 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['d7b9MDYsbtX5L7XAj'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 945, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1591 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 946, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1592 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 947, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1593 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 948, + "module": "_models", + "name": "accessed_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1594 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 949, + "module": "_models", + "name": "item_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1595 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 950, + "module": "_models", + "name": "clean_item_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1596 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 951, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1597 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 952, + "module": "_models", + "name": "act_run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1598 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actRunId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 953, + "module": "_models", + "name": "fields", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1599 + } + ], + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Defines the schema of items in your dataset, the full specification can be found in [Apify docs](/platform/actors/development/actor-definition/dataset-schema)" + } + ] + }, + "flags": {}, + "groups": [], + "id": 954, + "module": "_models", + "name": "schema_", + "parsedDocstring": { + "text": "Defines the schema of items in your dataset, the full specification can be found in [Apify docs](/platform/actors/development/actor-definition/dataset-schema)" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1600 + } + ], + "type": { + "name": "Annotated[ dict[str, Any] | None, Field( alias='schema', examples=[ { 'actorSpecification': 1, 'title': 'My dataset', 'views': { 'overview': { 'title': 'Overview', 'transformation': {'fields': ['linkUrl']}, 'display': { 'component': 'table', 'properties': {'linkUrl': {'label': 'Link URL', 'format': 'link'}}, }, } }, } ], ), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 955, + "module": "_models", + "name": "console_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1625 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A public link to access the dataset items directly." + } + ] + }, + "flags": {}, + "groups": [], + "id": 956, + "module": "_models", + "name": "items_public_url", + "parsedDocstring": { + "text": "A public link to access the dataset items directly." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1628 + } + ], + "type": { + "name": "Annotated[ AnyUrl | None, Field( alias='itemsPublicUrl', examples=['https://api.apify.com/v2/datasets/WkzbQMuFYuamGv3YF/items?signature=abc123'], ), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the dataset." + } + ] + }, + "flags": {}, + "groups": [], + "id": 957, + "module": "_models", + "name": "url_signing_secret_key", + "parsedDocstring": { + "text": "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1638 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='urlSigningSecretKey')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 958, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1642 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 959, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1643 + } + ], + "type": { + "name": "DatasetStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "DatasetStats", + "target": "936" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 948, + 951, + 952, + 950, + 955, + 946, + 953, + 958, + 943, + 949, + 956, + 942, + 947, + 944, + 954, + 959, + 957, + 945 + ], + "title": "Properties" + } + ], + "id": 941, + "module": "_models", + "name": "Dataset", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1584 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 961, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1649 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 962, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1653 + } + ], + "type": { + "name": "Dataset", + "type": "reference", + "target": "941" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing dataset metadata." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 962, + 961 + ], + "title": "Properties" + } + ], + "id": 960, + "module": "_models", + "name": "DatasetResponse", + "parsedDocstring": { + "text": "Response containing dataset metadata." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1646 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 964, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1657 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 965, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1661 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 966, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1662 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 966, + 964, + 965 + ], + "title": "Properties" + } + ], + "id": 963, + "module": "_models", + "name": "UpdateDatasetRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1656 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 968, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1671 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The request body containing the item(s) to add to the dataset. Can be a single\nobject or an array of objects. Each object represents one dataset item." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 968 + ], + "title": "Properties" + } + ], + "id": 967, + "module": "_models", + "name": "PutItemsRequest", + "parsedDocstring": { + "text": "The request body containing the item(s) to add to the dataset. Can be a single\nobject or an array of objects. Each object represents one dataset item." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1665 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 970, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1678 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the instance being validated." + } + ] + }, + "flags": {}, + "groups": [], + "id": 971, + "module": "_models", + "name": "instance_path", + "parsedDocstring": { + "text": "The path to the instance being validated." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1682 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='instancePath')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The path to the schema that failed the validation." + } + ] + }, + "flags": {}, + "groups": [], + "id": 972, + "module": "_models", + "name": "schema_path", + "parsedDocstring": { + "text": "The path to the schema that failed the validation." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1686 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='schemaPath')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The validation keyword that caused the error." + } + ] + }, + "flags": {}, + "groups": [], + "id": 973, + "module": "_models", + "name": "keyword", + "parsedDocstring": { + "text": "The validation keyword that caused the error." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1690 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A message describing the validation error." + } + ] + }, + "flags": {}, + "groups": [], + "id": 974, + "module": "_models", + "name": "message", + "parsedDocstring": { + "text": "A message describing the validation error." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1694 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional parameters specific to the validation error." + } + ] + }, + "flags": {}, + "groups": [], + "id": 975, + "module": "_models", + "name": "params", + "parsedDocstring": { + "text": "Additional parameters specific to the validation error." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1698 + } + ], + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 971, + 973, + 974, + 970, + 975, + 972 + ], + "title": "Properties" + } + ], + "id": 969, + "module": "_models", + "name": "ValidationError", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1677 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 977, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1705 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The position of the invalid item in the array." + } + ] + }, + "flags": {}, + "groups": [], + "id": 978, + "module": "_models", + "name": "item_position", + "parsedDocstring": { + "text": "The position of the invalid item in the array." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1709 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='itemPosition', examples=[2])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A complete list of AJV validation error objects for the invalid item." + } + ] + }, + "flags": {}, + "groups": [], + "id": 979, + "module": "_models", + "name": "validation_errors", + "parsedDocstring": { + "text": "A complete list of AJV validation error objects for the invalid item." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1713 + } + ], + "type": { + "name": "Annotated[list[ValidationError] | None, Field(alias='validationErrors')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ValidationError", + "target": "969" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 978, + 977, + 979 + ], + "title": "Properties" + } + ], + "id": 976, + "module": "_models", + "name": "InvalidItem", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1704 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 981, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1720 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of invalid items in the received array of items." + } + ] + }, + "flags": {}, + "groups": [], + "id": 982, + "module": "_models", + "name": "invalid_items", + "parsedDocstring": { + "text": "A list of invalid items in the received array of items." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1724 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "InvalidItem", + "target": "976" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 982, + 981 + ], + "title": "Properties" + } + ], + "id": 980, + "module": "_models", + "name": "SchemaValidationErrorData", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1719 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 984, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1731 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the error." + } + ] + }, + "flags": {}, + "groups": [], + "id": 985, + "module": "_models", + "name": "type", + "parsedDocstring": { + "text": "The type of the error." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1735 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['schema-validation-error'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-readable message describing the error." + } + ] + }, + "flags": {}, + "groups": [], + "id": 986, + "module": "_models", + "name": "message", + "parsedDocstring": { + "text": "A human-readable message describing the error." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1739 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['Schema validation failed'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 987, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1743 + } + ], + "type": { + "name": "SchemaValidationErrorData | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "SchemaValidationErrorData", + "target": "980" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 987, + 986, + 984, + 985 + ], + "title": "Properties" + } + ], + "id": 983, + "module": "_models", + "name": "DatasetSchemaValidationError", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1730 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 989, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1747 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 990, + "module": "_models", + "name": "error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1751 + } + ], + "type": { + "name": "DatasetSchemaValidationError", + "type": "reference", + "target": "983" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 990, + 989 + ], + "title": "Properties" + } + ], + "id": 988, + "module": "_models", + "name": "PutItemResponseError", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1746 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 992, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1755 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum value of the field. For numbers, this is calculated directly. For strings, this is the length of the shortest string. For arrays, this is the length of the shortest array. For objects, this is the number of keys in the smallest object." + } + ] + }, + "flags": {}, + "groups": [], + "id": 993, + "module": "_models", + "name": "min", + "parsedDocstring": { + "text": "Minimum value of the field. For numbers, this is calculated directly. For strings, this is the length of the shortest string. For arrays, this is the length of the shortest array. For objects, this is the number of keys in the smallest object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1759 + } + ], + "type": { + "name": "float | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum value of the field. For numbers, this is calculated directly. For strings, this is the length of the longest string. For arrays, this is the length of the longest array. For objects, this is the number of keys in the largest object." + } + ] + }, + "flags": {}, + "groups": [], + "id": 994, + "module": "_models", + "name": "max", + "parsedDocstring": { + "text": "Maximum value of the field. For numbers, this is calculated directly. For strings, this is the length of the longest string. For arrays, this is the length of the longest array. For objects, this is the number of keys in the largest object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1763 + } + ], + "type": { + "name": "float | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many items in the dataset have a null value for this field." + } + ] + }, + "flags": {}, + "groups": [], + "id": 995, + "module": "_models", + "name": "null_count", + "parsedDocstring": { + "text": "How many items in the dataset have a null value for this field." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1767 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='nullCount')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many items in the dataset are `undefined`, meaning that for example empty string is not considered empty." + } + ] + }, + "flags": {}, + "groups": [], + "id": 996, + "module": "_models", + "name": "empty_count", + "parsedDocstring": { + "text": "How many items in the dataset are `undefined`, meaning that for example empty string is not considered empty." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1771 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='emptyCount')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 996, + 994, + 993, + 992, + 995 + ], + "title": "Properties" + } + ], + "id": 991, + "module": "_models", + "name": "DatasetFieldStatistics", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1754 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 998, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1778 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "When you configure the dataset [fields schema](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation), we measure the statistics such as `min`, `max`, `nullCount` and `emptyCount` for each field. This property provides statistics for each field from dataset fields schema.

See dataset field statistics [documentation](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation#dataset-field-statistics) for more information." + } + ] + }, + "flags": {}, + "groups": [], + "id": 999, + "module": "_models", + "name": "field_statistics", + "parsedDocstring": { + "text": "When you configure the dataset [fields schema](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation), we measure the statistics such as `min`, `max`, `nullCount` and `emptyCount` for each field. This property provides statistics for each field from dataset fields schema.

See dataset field statistics [documentation](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation#dataset-field-statistics) for more information." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1782 + } + ], + "type": { + "name": "Annotated[dict[str, Any] | None, Field(alias='fieldStatistics')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 999, + 998 + ], + "title": "Properties" + } + ], + "id": 997, + "module": "_models", + "name": "DatasetStatistics", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1777 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1001, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1789 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1002, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1793 + } + ], + "type": { + "name": "DatasetStatistics", + "type": "reference", + "target": "997" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1002, + 1001 + ], + "title": "Properties" + } + ], + "id": 1000, + "module": "_models", + "name": "DatasetStatisticsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1788 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1004, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1799 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1005, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1803 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1006, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "The name of the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1807 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the user who owns the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1007, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "The ID of the user who owns the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1811 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The username of the user who owns the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1008, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "The username of the user who owns the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1815 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was created." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1009, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was created." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1819 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last modified." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1010, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last modified." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1823 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last accessed." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1011, + "module": "_models", + "name": "accessed_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last accessed." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1827 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue will expire and be deleted." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1012, + "module": "_models", + "name": "expire_at", + "parsedDocstring": { + "text": "The timestamp when the request queue will expire and be deleted." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1831 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='expireAt', examples=['2019-06-02T17:15:06.751Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of requests in the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1013, + "module": "_models", + "name": "total_request_count", + "parsedDocstring": { + "text": "The total number of requests in the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1835 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of requests that have been handled." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1014, + "module": "_models", + "name": "handled_request_count", + "parsedDocstring": { + "text": "The number of requests that have been handled." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1839 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of requests that are pending and have not been handled yet." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1015, + "module": "_models", + "name": "pending_request_count", + "parsedDocstring": { + "text": "The number of requests that are pending and have not been handled yet." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1843 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the Actor that created this request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1016, + "module": "_models", + "name": "act_id", + "parsedDocstring": { + "text": "The ID of the Actor that created this request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1847 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the Actor run that created this request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1017, + "module": "_models", + "name": "act_run_id", + "parsedDocstring": { + "text": "The ID of the Actor run that created this request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1851 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='actRunId')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the request queue has been accessed by multiple different clients." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1018, + "module": "_models", + "name": "had_multiple_clients", + "parsedDocstring": { + "text": "Whether the request queue has been accessed by multiple different clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1855 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A shortened request queue object for list responses." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1011, + 1016, + 1017, + 1009, + 1012, + 1018, + 1014, + 1005, + 1004, + 1010, + 1006, + 1015, + 1013, + 1007, + 1008 + ], + "title": "Properties" + } + ], + "id": 1003, + "module": "_models", + "name": "RequestQueueShort", + "parsedDocstring": { + "text": "A shortened request queue object for list responses." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1796 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1020, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1864 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The array of request queues." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1021, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "The array of request queues." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1868 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestQueueShort", + "target": "1003" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3761, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3762, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3763, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3764, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3765, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A paginated list of request queues." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3765, + 3764, + 1021, + 3763, + 1020, + 3762, + 3761 + ], + "title": "Properties" + } + ], + "id": 1019, + "module": "_models", + "name": "ListOfRequestQueues", + "parsedDocstring": { + "text": "A paginated list of request queues." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1861 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1023, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1877 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1024, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1881 + } + ], + "type": { + "name": "ListOfRequestQueues", + "type": "reference", + "target": "1019" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing a list of request queues." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1024, + 1023 + ], + "title": "Properties" + } + ], + "id": 1022, + "module": "_models", + "name": "ListOfRequestQueuesResponse", + "parsedDocstring": { + "text": "Response containing a list of request queues." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1874 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1026, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1887 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of delete operations performed on the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1027, + "module": "_models", + "name": "delete_count", + "parsedDocstring": { + "text": "The number of delete operations performed on the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1891 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='deleteCount', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of times requests from the head were read." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1028, + "module": "_models", + "name": "head_item_read_count", + "parsedDocstring": { + "text": "The number of times requests from the head were read." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1895 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='headItemReadCount', examples=[5])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of read operations performed on the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1029, + "module": "_models", + "name": "read_count", + "parsedDocstring": { + "text": "The total number of read operations performed on the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1899 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='readCount', examples=[100])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total storage size in bytes used by the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1030, + "module": "_models", + "name": "storage_bytes", + "parsedDocstring": { + "text": "The total storage size in bytes used by the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1903 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='storageBytes', examples=[1024])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of write operations performed on the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1031, + "module": "_models", + "name": "write_count", + "parsedDocstring": { + "text": "The total number of write operations performed on the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1907 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='writeCount', examples=[10])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics about request queue operations and storage." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1027, + 1028, + 1026, + 1029, + 1030, + 1031 + ], + "title": "Properties" + } + ], + "id": 1025, + "module": "_models", + "name": "RequestQueueStats", + "parsedDocstring": { + "text": "Statistics about request queue operations and storage." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1884 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1033, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1916 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1034, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1920 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1035, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "The name of the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1924 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['some-name'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the user who owns the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1036, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "The ID of the user who owns the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1928 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was created." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1037, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was created." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1932 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last modified. Modifications include adding, updating, or removing requests, as well as locking or unlocking requests in the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1038, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last modified. Modifications include adding, updating, or removing requests, as well as locking or unlocking requests in the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1936 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last accessed." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1039, + "module": "_models", + "name": "accessed_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last accessed." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1940 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of requests in the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1040, + "module": "_models", + "name": "total_request_count", + "parsedDocstring": { + "text": "The total number of requests in the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1944 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of requests that have been handled." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1041, + "module": "_models", + "name": "handled_request_count", + "parsedDocstring": { + "text": "The number of requests that have been handled." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1948 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of requests that are pending and have not been handled yet." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1042, + "module": "_models", + "name": "pending_request_count", + "parsedDocstring": { + "text": "The number of requests that are pending and have not been handled yet." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1952 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the request queue has been accessed by multiple different clients." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1043, + "module": "_models", + "name": "had_multiple_clients", + "parsedDocstring": { + "text": "Whether the request queue has been accessed by multiple different clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1956 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL to view the request queue in the Apify console." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1044, + "module": "_models", + "name": "console_url", + "parsedDocstring": { + "text": "The URL to view the request queue in the Apify console." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1960 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1045, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1966 + } + ], + "type": { + "name": "RequestQueueStats | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestQueueStats", + "target": "1025" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1046, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1967 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A request queue object containing metadata and statistics." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1039, + 1044, + 1037, + 1046, + 1043, + 1041, + 1034, + 1033, + 1038, + 1035, + 1042, + 1045, + 1040, + 1036 + ], + "title": "Properties" + } + ], + "id": 1032, + "module": "_models", + "name": "RequestQueue", + "parsedDocstring": { + "text": "A request queue object containing metadata and statistics." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1913 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1048, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1973 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1049, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1977 + } + ], + "type": { + "name": "RequestQueue", + "type": "reference", + "target": "1032" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing request queue data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1049, + 1048 + ], + "title": "Properties" + } + ], + "id": 1047, + "module": "_models", + "name": "RequestQueueResponse", + "parsedDocstring": { + "text": "Response containing request queue data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1970 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1051, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1983 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1052, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "The new name for the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1987 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1053, + "module": "_models", + "name": "general_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1991 + } + ], + "type": { + "name": "Annotated[GeneralAccess | None, Field(alias='generalAccess')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Request object for updating a request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1053, + 1051, + 1052 + ], + "title": "Properties" + } + ], + "id": 1050, + "module": "_models", + "name": "UpdateRequestQueueRequest", + "parsedDocstring": { + "text": "Request object for updating a request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1980 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1055, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1997 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1056, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2001 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['sbJ7klsdf7ujN9l'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1057, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2005 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1058, + "module": "_models", + "name": "url", + "parsedDocstring": { + "text": "The URL of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2009 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1059, + "module": "_models", + "name": "method", + "parsedDocstring": { + "text": "The HTTP method of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2013 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A request that failed to be processed during a request queue operation and can be retried." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1056, + 1059, + 1055, + 1057, + 1058 + ], + "title": "Properties" + } + ], + "id": 1054, + "module": "_models", + "name": "RequestDraft", + "parsedDocstring": { + "text": "A request that failed to be processed during a request queue operation and can be retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1994 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1061, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2022 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1062, + "module": "_models", + "name": "request_id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2026 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1063, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2030 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indicates whether a request with the same unique key already existed in the request queue. If true, no new request was created." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1064, + "module": "_models", + "name": "was_already_present", + "parsedDocstring": { + "text": "Indicates whether a request with the same unique key already existed in the request queue. If true, no new request was created." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2034 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indicates whether a request with the same unique key has already been processed by the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1065, + "module": "_models", + "name": "was_already_handled", + "parsedDocstring": { + "text": "Indicates whether a request with the same unique key has already been processed by the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2038 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Information about a request that was successfully added to a request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1061, + 1062, + 1063, + 1065, + 1064 + ], + "title": "Properties" + } + ], + "id": 1060, + "module": "_models", + "name": "AddedRequest", + "parsedDocstring": { + "text": "Information about a request that was successfully added to a request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2019 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1067, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2047 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Requests that were successfully added to the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1068, + "module": "_models", + "name": "processed_requests", + "parsedDocstring": { + "text": "Requests that were successfully added to the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2051 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "AddedRequest", + "target": "1060" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Requests that failed to be added and can be retried." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1069, + "module": "_models", + "name": "unprocessed_requests", + "parsedDocstring": { + "text": "Requests that failed to be added and can be retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2055 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestDraft", + "target": "1054" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Result of a batch add operation containing successfully processed and failed requests." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1067, + 1068, + 1069 + ], + "title": "Properties" + } + ], + "id": 1066, + "module": "_models", + "name": "BatchAddResult", + "parsedDocstring": { + "text": "Result of a batch add operation containing successfully processed and failed requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2044 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1071, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2064 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1072, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2068 + } + ], + "type": { + "name": "BatchAddResult", + "type": "reference", + "target": "1066" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing the result of a batch add operation." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1072, + 1071 + ], + "title": "Properties" + } + ], + "id": 1070, + "module": "_models", + "name": "BatchAddResponse", + "parsedDocstring": { + "text": "Response containing the result of a batch add operation." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2061 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1074, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2074 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1075, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2078 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1076, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2082 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['sbJ7klsdf7ujN9l'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Confirmation of a request that was successfully deleted from a request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1076, + 1074, + 1075 + ], + "title": "Properties" + } + ], + "id": 1073, + "module": "_models", + "name": "DeletedRequest", + "parsedDocstring": { + "text": "Confirmation of a request that was successfully deleted from a request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2071 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1078, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2091 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Requests that were successfully deleted from the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1079, + "module": "_models", + "name": "processed_requests", + "parsedDocstring": { + "text": "Requests that were successfully deleted from the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2095 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DeletedRequest", + "target": "1073" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Requests that failed to be deleted and can be retried." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1080, + "module": "_models", + "name": "unprocessed_requests", + "parsedDocstring": { + "text": "Requests that failed to be deleted and can be retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2099 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "RequestDraft", + "target": "1054" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Result of a batch delete operation containing successfully deleted and failed requests." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1078, + 1079, + 1080 + ], + "title": "Properties" + } + ], + "id": 1077, + "module": "_models", + "name": "BatchDeleteResult", + "parsedDocstring": { + "text": "Result of a batch delete operation containing successfully deleted and failed requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2088 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1082, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2108 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1083, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2112 + } + ], + "type": { + "name": "BatchDeleteResult", + "type": "reference", + "target": "1077" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing the result of a batch delete operation." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1083, + 1082 + ], + "title": "Properties" + } + ], + "id": 1081, + "module": "_models", + "name": "BatchDeleteResponse", + "parsedDocstring": { + "text": "Response containing the result of a batch delete operation." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2105 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1085, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2118 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of requests that were successfully unlocked." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1086, + "module": "_models", + "name": "unlocked_count", + "parsedDocstring": { + "text": "Number of requests that were successfully unlocked." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2122 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Result of unlocking requests in the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1085, + 1086 + ], + "title": "Properties" + } + ], + "id": 1084, + "module": "_models", + "name": "UnlockRequestsResult", + "parsedDocstring": { + "text": "Result of unlocking requests in the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2115 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1088, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2131 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1089, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2135 + } + ], + "type": { + "name": "UnlockRequestsResult", + "type": "reference", + "target": "1084" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing the result of unlocking requests." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1089, + 1088 + ], + "title": "Properties" + } + ], + "id": 1087, + "module": "_models", + "name": "UnlockRequestsResponse", + "parsedDocstring": { + "text": "Response containing the result of unlocking requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2128 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1091, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2141 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional label for categorizing the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1092, + "module": "_models", + "name": "label", + "parsedDocstring": { + "text": "Optional label for categorizing the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2145 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['DETAIL'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional image URL associated with the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1093, + "module": "_models", + "name": "image", + "parsedDocstring": { + "text": "Optional image URL associated with the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2149 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(examples=['https://picserver1.eu'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Custom user data attached to the request. Can contain arbitrary fields." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1093, + 1092, + 1091 + ], + "title": "Properties" + } + ], + "id": 1090, + "module": "_models", + "name": "RequestUserData", + "parsedDocstring": { + "text": "Custom user data attached to the request. Can contain arbitrary fields." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2138 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1095, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2158 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1096, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2162 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1097, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2166 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1098, + "module": "_models", + "name": "url", + "parsedDocstring": { + "text": "The URL of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2170 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1099, + "module": "_models", + "name": "method", + "parsedDocstring": { + "text": "The HTTP method of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2174 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['GET'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of times this request has been retried." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1100, + "module": "_models", + "name": "retry_count", + "parsedDocstring": { + "text": "The number of times this request has been retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2178 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='retryCount', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The final URL that was loaded, after redirects (if any)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1101, + "module": "_models", + "name": "loaded_url", + "parsedDocstring": { + "text": "The final URL that was loaded, after redirects (if any)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2182 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='loadedUrl', examples=['https://apify.com/jobs'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The request payload, typically used with POST or PUT requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1102, + "module": "_models", + "name": "payload", + "parsedDocstring": { + "text": "The request payload, typically used with POST or PUT requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2186 + } + ], + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP headers sent with the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1103, + "module": "_models", + "name": "headers", + "parsedDocstring": { + "text": "HTTP headers sent with the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2190 + } + ], + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1104, + "module": "_models", + "name": "user_data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2194 + } + ], + "type": { + "name": "Annotated[RequestUserData | None, Field(alias='userData')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestUserData", + "target": "1090" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indicates whether the request should not be retried if processing fails." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1105, + "module": "_models", + "name": "no_retry", + "parsedDocstring": { + "text": "Indicates whether the request should not be retried if processing fails." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2195 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='noRetry', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error messages recorded from failed processing attempts." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1106, + "module": "_models", + "name": "error_messages", + "parsedDocstring": { + "text": "Error messages recorded from failed processing attempts." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2199 + } + ], + "type": { + "name": "Annotated[list[str] | None, Field(alias='errorMessages')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request was marked as handled, if applicable." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1107, + "module": "_models", + "name": "handled_at", + "parsedDocstring": { + "text": "The timestamp when the request was marked as handled, if applicable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2203 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='handledAt', examples=['2019-06-16T10:23:31.607Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A request stored in the request queue, including its metadata and processing state." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1106, + 1107, + 1103, + 1096, + 1101, + 1099, + 1095, + 1105, + 1102, + 1100, + 1097, + 1098, + 1104 + ], + "title": "Properties" + } + ], + "id": 1094, + "module": "_models", + "name": "Request", + "parsedDocstring": { + "text": "A request stored in the request queue, including its metadata and processing state." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2155 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1109, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2212 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The array of requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1110, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "The array of requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2216 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Request", + "target": "1094" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of requests matching the query." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1111, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The total number of requests matching the query." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2220 + } + ], + "type": { + "name": "Annotated[int | None, Field(examples=[2])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of requests returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1112, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of requests returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2224 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the last request from the previous page, used for pagination." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1113, + "module": "_models", + "name": "exclusive_start_id", + "parsedDocstring": { + "text": "The ID of the last request from the previous page, used for pagination." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2228 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='exclusiveStartId', examples=['Ihnsp8YrvJ8102Kj'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A paginated list of requests from the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1111, + 1113, + 1110, + 1112, + 1109 + ], + "title": "Properties" + } + ], + "id": 1108, + "module": "_models", + "name": "ListOfRequests", + "parsedDocstring": { + "text": "A paginated list of requests from the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2209 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1115, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2237 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1116, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2241 + } + ], + "type": { + "name": "ListOfRequests", + "type": "reference", + "target": "1108" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing a list of requests from the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1116, + 1115 + ], + "title": "Properties" + } + ], + "id": 1114, + "module": "_models", + "name": "ListOfRequestsResponse", + "parsedDocstring": { + "text": "Response containing a list of requests from the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2234 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1118, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2247 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1119, + "module": "_models", + "name": "request_id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2251 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indicates whether a request with the same unique key already existed in the request queue. If true, no new request was created." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1120, + "module": "_models", + "name": "was_already_present", + "parsedDocstring": { + "text": "Indicates whether a request with the same unique key already existed in the request queue. If true, no new request was created." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2255 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indicates whether a request with the same unique key has already been processed by the request queue." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1121, + "module": "_models", + "name": "was_already_handled", + "parsedDocstring": { + "text": "Indicates whether a request with the same unique key has already been processed by the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2259 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Result of registering a request in the request queue, either by adding a new request or updating an existing one." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1118, + 1119, + 1121, + 1120 + ], + "title": "Properties" + } + ], + "id": 1117, + "module": "_models", + "name": "RequestRegistration", + "parsedDocstring": { + "text": "Result of registering a request in the request queue, either by adding a new request or updating an existing one." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2244 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1123, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2268 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1124, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2272 + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing the result of adding a request to the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1124, + 1123 + ], + "title": "Properties" + } + ], + "id": 1122, + "module": "_models", + "name": "AddRequestResponse", + "parsedDocstring": { + "text": "Response containing the result of adding a request to the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2265 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1126, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2278 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1127, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2282 + } + ], + "type": { + "name": "Request", + "type": "reference", + "target": "1094" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing a single request from the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1127, + 1126 + ], + "title": "Properties" + } + ], + "id": 1125, + "module": "_models", + "name": "RequestResponse", + "parsedDocstring": { + "text": "Response containing a single request from the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2275 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1129, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2288 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1130, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2292 + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing the result of updating a request in the request queue." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1130, + 1129 + ], + "title": "Properties" + } + ], + "id": 1128, + "module": "_models", + "name": "UpdateRequestResponse", + "parsedDocstring": { + "text": "Response containing the result of updating a request in the request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2285 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1132, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2298 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1133, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2302 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1134, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2306 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1135, + "module": "_models", + "name": "url", + "parsedDocstring": { + "text": "The URL of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2310 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1136, + "module": "_models", + "name": "method", + "parsedDocstring": { + "text": "The HTTP method of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2314 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['GET'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of times this request has been retried." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1137, + "module": "_models", + "name": "retry_count", + "parsedDocstring": { + "text": "The number of times this request has been retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2318 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='retryCount', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A request from the request queue head without lock information." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1133, + 1136, + 1132, + 1137, + 1134, + 1135 + ], + "title": "Properties" + } + ], + "id": 1131, + "module": "_models", + "name": "HeadRequest", + "parsedDocstring": { + "text": "A request from the request queue head without lock information." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2295 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1139, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2327 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of requests returned." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1140, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of requests returned." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2331 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last modified." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1141, + "module": "_models", + "name": "queue_modified_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last modified." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2335 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the request queue has been accessed by multiple different clients." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1142, + "module": "_models", + "name": "had_multiple_clients", + "parsedDocstring": { + "text": "Whether the request queue has been accessed by multiple different clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2339 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The array of requests from the request queue head." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1143, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "The array of requests from the request queue head." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2343 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "HeadRequest", + "target": "1131" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A batch of requests from the request queue head without locking." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1142, + 1143, + 1140, + 1139, + 1141 + ], + "title": "Properties" + } + ], + "id": 1138, + "module": "_models", + "name": "RequestQueueHead", + "parsedDocstring": { + "text": "A batch of requests from the request queue head without locking." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2324 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1145, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2352 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1146, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2356 + } + ], + "type": { + "name": "RequestQueueHead", + "type": "reference", + "target": "1138" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing requests from the request queue head without locking." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1146, + 1145 + ], + "title": "Properties" + } + ], + "id": 1144, + "module": "_models", + "name": "HeadResponse", + "parsedDocstring": { + "text": "Response containing requests from the request queue head without locking." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2349 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1148, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2362 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1149, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2366 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1150, + "module": "_models", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication. Requests with the same unique key are considered identical." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2370 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1151, + "module": "_models", + "name": "url", + "parsedDocstring": { + "text": "The URL of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2374 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1152, + "module": "_models", + "name": "method", + "parsedDocstring": { + "text": "The HTTP method of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2378 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['GET'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of times this request has been retried." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1153, + "module": "_models", + "name": "retry_count", + "parsedDocstring": { + "text": "The number of times this request has been retried." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2382 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='retryCount', examples=[0])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the lock on this request expires." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1154, + "module": "_models", + "name": "lock_expires_at", + "parsedDocstring": { + "text": "The timestamp when the lock on this request expires." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2386 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A request from the request queue head that has been locked for processing." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1149, + 1154, + 1152, + 1148, + 1153, + 1150, + 1151 + ], + "title": "Properties" + } + ], + "id": 1147, + "module": "_models", + "name": "LockedHeadRequest", + "parsedDocstring": { + "text": "A request from the request queue head that has been locked for processing." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2359 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1156, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2395 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of requests returned." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1157, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of requests returned." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2399 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the request queue was last modified. Modifications include adding, updating, or removing requests, as well as locking or unlocking requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1158, + "module": "_models", + "name": "queue_modified_at", + "parsedDocstring": { + "text": "The timestamp when the request queue was last modified. Modifications include adding, updating, or removing requests, as well as locking or unlocking requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2403 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the request queue contains requests locked by any client (either the one calling the endpoint or a different one)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1159, + "module": "_models", + "name": "queue_has_locked_requests", + "parsedDocstring": { + "text": "Whether the request queue contains requests locked by any client (either the one calling the endpoint or a different one)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2407 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='queueHasLockedRequests', examples=[True])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The client key used for locking the requests." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1160, + "module": "_models", + "name": "client_key", + "parsedDocstring": { + "text": "The client key used for locking the requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2411 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='clientKey', examples=['client-one'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the request queue has been accessed by multiple different clients." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1161, + "module": "_models", + "name": "had_multiple_clients", + "parsedDocstring": { + "text": "Whether the request queue has been accessed by multiple different clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2415 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of seconds the locks will be held." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1162, + "module": "_models", + "name": "lock_secs", + "parsedDocstring": { + "text": "The number of seconds the locks will be held." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2419 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The array of locked requests from the request queue head." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1163, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "The array of locked requests from the request queue head." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2423 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "LockedHeadRequest", + "target": "1147" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A batch of locked requests from the request queue head." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1160, + 1161, + 1163, + 1157, + 1162, + 1156, + 1159, + 1158 + ], + "title": "Properties" + } + ], + "id": 1155, + "module": "_models", + "name": "LockedRequestQueueHead", + "parsedDocstring": { + "text": "A batch of locked requests from the request queue head." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2392 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1165, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2432 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1166, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2436 + } + ], + "type": { + "name": "LockedRequestQueueHead", + "type": "reference", + "target": "1155" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing locked requests from the request queue head." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1166, + 1165 + ], + "title": "Properties" + } + ], + "id": 1164, + "module": "_models", + "name": "HeadAndLockResponse", + "parsedDocstring": { + "text": "Response containing locked requests from the request queue head." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2429 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1168, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2442 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timestamp when the lock expires." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1169, + "module": "_models", + "name": "lock_expires_at", + "parsedDocstring": { + "text": "The timestamp when the lock expires." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2446 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Information about a request lock." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1169, + 1168 + ], + "title": "Properties" + } + ], + "id": 1167, + "module": "_models", + "name": "RequestLockInfo", + "parsedDocstring": { + "text": "Information about a request lock." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2439 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1171, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2455 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1172, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2459 + } + ], + "type": { + "name": "RequestLockInfo", + "type": "reference", + "target": "1167" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing updated lock information after prolonging a request lock." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1172, + 1171 + ], + "title": "Properties" + } + ], + "id": 1170, + "module": "_models", + "name": "ProlongRequestLockResponse", + "parsedDocstring": { + "text": "Response containing updated lock information after prolonging a request lock." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2452 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1174, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2463 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1175, + "module": "_models", + "name": "is_ad_hoc", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2467 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isAdHoc', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1176, + "module": "_models", + "name": "event_types", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2468 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1177, + "module": "_models", + "name": "condition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2469 + } + ], + "type": { + "name": "WebhookCondition", + "type": "reference", + "target": "509" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1178, + "module": "_models", + "name": "idempotency_key", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2470 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='idempotencyKey', examples=['fdSJmdP3nfs7sfk3y'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1179, + "module": "_models", + "name": "ignore_ssl_errors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2471 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='ignoreSslErrors', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1180, + "module": "_models", + "name": "do_not_retry", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2472 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='doNotRetry', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1181, + "module": "_models", + "name": "request_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2473 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1182, + "module": "_models", + "name": "payload_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2474 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='payloadTemplate', examples=['{\\\\n \"userId\": {{userId}}...']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1183, + "module": "_models", + "name": "headers_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2477 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='headersTemplate', examples=['{\\\\n \"Authorization\": \"Bearer ...\"}']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1184, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2480 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['this is webhook description'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1185, + "module": "_models", + "name": "should_interpolate_strings", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2481 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='shouldInterpolateStrings', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1177, + 1184, + 1180, + 1176, + 1183, + 1178, + 1179, + 1175, + 1174, + 1182, + 1181, + 1185 + ], + "title": "Properties" + } + ], + "id": 1173, + "module": "_models", + "name": "WebhookCreate", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2462 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1187, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2487 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1188, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2491 + } + ], + "type": { + "name": "Webhook", + "type": "reference", + "target": "831" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response containing webhook data." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1188, + 1187 + ], + "title": "Properties" + } + ], + "id": 1186, + "module": "_models", + "name": "WebhookResponse", + "parsedDocstring": { + "text": "Response containing webhook data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2484 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1190, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2495 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1191, + "module": "_models", + "name": "is_ad_hoc", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2499 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isAdHoc', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1192, + "module": "_models", + "name": "event_types", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2500 + } + ], + "type": { + "name": "Annotated[ list[WebhookEventType] | None, Field(alias='eventTypes', examples=[['ACTOR.RUN.SUCCEEDED']]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1193, + "module": "_models", + "name": "condition", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2503 + } + ], + "type": { + "name": "WebhookCondition | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookCondition", + "target": "509" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1194, + "module": "_models", + "name": "ignore_ssl_errors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2504 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='ignoreSslErrors', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1195, + "module": "_models", + "name": "do_not_retry", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2505 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='doNotRetry', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1196, + "module": "_models", + "name": "request_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2506 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='requestUrl', examples=['http://example.com/'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1197, + "module": "_models", + "name": "payload_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2507 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='payloadTemplate', examples=['{\\\\n \"userId\": {{userId}}...']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1198, + "module": "_models", + "name": "headers_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2510 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='headersTemplate', examples=['{\\\\n \"Authorization\": \"Bearer ...\"}']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1199, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2513 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['this is webhook description'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1200, + "module": "_models", + "name": "should_interpolate_strings", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2514 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='shouldInterpolateStrings', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1193, + 1199, + 1195, + 1192, + 1198, + 1194, + 1191, + 1190, + 1197, + 1196, + 1200 + ], + "title": "Properties" + } + ], + "id": 1189, + "module": "_models", + "name": "WebhookUpdate", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2494 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1202, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2518 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1203, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2522 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1204, + "module": "_models", + "name": "actor_run_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2523 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1203, + 1204, + 1202 + ], + "title": "Properties" + } + ], + "id": 1201, + "module": "_models", + "name": "EventData", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2517 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1206, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2527 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1207, + "module": "_models", + "name": "started_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2531 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='startedAt', examples=['2019-12-12T07:34:14.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1208, + "module": "_models", + "name": "finished_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2532 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='finishedAt', examples=['2019-12-12T07:34:14.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1209, + "module": "_models", + "name": "error_message", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2535 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='errorMessage', examples=['Cannot send request'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1210, + "module": "_models", + "name": "response_status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2536 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='responseStatus', examples=[200])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1211, + "module": "_models", + "name": "response_body", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2537 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='responseBody', examples=['{\"foo\": \"bar\"}'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1209, + 1208, + 1206, + 1211, + 1210, + 1207 + ], + "title": "Properties" + } + ], + "id": 1205, + "module": "_models", + "name": "Call", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2526 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1213, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2541 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1214, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2545 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1215, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2546 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1216, + "module": "_models", + "name": "webhook_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2547 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1217, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2548 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1218, + "module": "_models", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2549 + } + ], + "type": { + "name": "WebhookDispatchStatus", + "type": "reference", + "target": "514" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1219, + "module": "_models", + "name": "event_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2550 + } + ], + "type": { + "name": "WebhookEventType", + "type": "reference", + "target": "496" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1220, + "module": "_models", + "name": "event_data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2551 + } + ], + "type": { + "name": "Annotated[EventData | None, Field(alias='eventData', title='eventData')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "EventData", + "target": "1201" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1221, + "module": "_models", + "name": "calls", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2552 + } + ], + "type": { + "name": "Annotated[list[Call] | None, Field(title='calls')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "Call", + "target": "1205" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1221, + 1217, + 1220, + 1219, + 1214, + 1213, + 1218, + 1215, + 1216 + ], + "title": "Properties" + } + ], + "id": 1212, + "module": "_models", + "name": "WebhookDispatch", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2540 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1223, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2556 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1224, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2560 + } + ], + "type": { + "name": "WebhookDispatch", + "type": "reference", + "target": "1212" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1224, + 1223 + ], + "title": "Properties" + } + ], + "id": 1222, + "module": "_models", + "name": "TestWebhookResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2555 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1226, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2564 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1227, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2568 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookDispatch", + "target": "1212" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3766, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3767, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3768, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3769, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3770, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3770, + 3769, + 1227, + 3768, + 1226, + 3767, + 3766 + ], + "title": "Properties" + } + ], + "id": 1225, + "module": "_models", + "name": "ListOfWebhookDispatches", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2563 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1229, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2572 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1230, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2576 + } + ], + "type": { + "name": "ListOfWebhookDispatches | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ListOfWebhookDispatches", + "target": "1225" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1230, + 1229 + ], + "title": "Properties" + } + ], + "id": 1228, + "module": "_models", + "name": "WebhookDispatchList", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2571 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1232, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2580 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1233, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2584 + } + ], + "type": { + "name": "WebhookDispatch", + "type": "reference", + "target": "1212" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1233, + 1232 + ], + "title": "Properties" + } + ], + "id": 1231, + "module": "_models", + "name": "WebhookDispatchResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2579 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1235, + "module": "_models", + "name": "RUN_ACTOR", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2590 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1236, + "module": "_models", + "name": "RUN_ACTOR_TASK", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2591 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Type of action to perform when the schedule triggers." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1235, + 1236 + ], + "title": "Properties" + } + ], + "id": 1234, + "module": "_models", + "name": "ScheduleActionType", + "parsedDocstring": { + "text": "Type of action to perform when the schedule triggers." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2587 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1238, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2595 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1239, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2599 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1240, + "module": "_models", + "name": "type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2600 + } + ], + "type": { + "name": "ScheduleActionType", + "type": "reference", + "target": "1234" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1241, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2601 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1241, + 1239, + 1238, + 1240 + ], + "title": "Properties" + } + ], + "id": 1237, + "module": "_models", + "name": "ScheduleAction", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2594 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1243, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2605 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1244, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2609 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1245, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2610 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1246, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2611 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1247, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2612 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1248, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2613 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1249, + "module": "_models", + "name": "last_run_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2614 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='lastRunAt', examples=['2019-04-12T07:33:10.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1250, + "module": "_models", + "name": "next_run_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2615 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='nextRunAt', examples=['2019-04-12T07:34:10.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1251, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2616 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1252, + "module": "_models", + "name": "is_exclusive", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2617 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1253, + "module": "_models", + "name": "cron_expression", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2618 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1254, + "module": "_models", + "name": "timezone", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2619 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1255, + "module": "_models", + "name": "actions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2620 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleAction", + "target": "1237" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1255, + 1247, + 1253, + 1244, + 1251, + 1252, + 1249, + 1243, + 1248, + 1246, + 1250, + 1254, + 1245 + ], + "title": "Properties" + } + ], + "id": 1242, + "module": "_models", + "name": "ScheduleShort", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2604 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1257, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2624 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1258, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2628 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleShort", + "target": "1242" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3771, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3772, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3773, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3774, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3775, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3775, + 3774, + 1258, + 3773, + 1257, + 3772, + 3771 + ], + "title": "Properties" + } + ], + "id": 1256, + "module": "_models", + "name": "ListOfSchedules", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2623 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1260, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2632 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1261, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2636 + } + ], + "type": { + "name": "ListOfSchedules", + "type": "reference", + "target": "1256" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1261, + 1260 + ], + "title": "Properties" + } + ], + "id": 1259, + "module": "_models", + "name": "ListOfSchedulesResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2631 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1263, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2640 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1264, + "module": "_models", + "name": "body", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2644 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['{\\\\n \"foo\": \"actor\"\\\\n}'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1265, + "module": "_models", + "name": "content_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2645 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='contentType', examples=['application/json; charset=utf-8'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1264, + 1265, + 1263 + ], + "title": "Properties" + } + ], + "id": 1262, + "module": "_models", + "name": "ScheduleActionsRunInput", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2639 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1267, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2649 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1268, + "module": "_models", + "name": "build", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2653 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['latest'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1269, + "module": "_models", + "name": "timeout_secs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2654 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='timeoutSecs', examples=[60])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1270, + "module": "_models", + "name": "memory_mbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2655 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='memoryMbytes', examples=[1024])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1271, + "module": "_models", + "name": "restart_on_error", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2656 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='restartOnError', examples=[False])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1268, + 1270, + 1267, + 1271, + 1269 + ], + "title": "Properties" + } + ], + "id": 1266, + "module": "_models", + "name": "ScheduleActionsRunOptions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2648 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1273, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2660 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1274, + "module": "_models", + "name": "type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2664 + } + ], + "type": { + "name": "ScheduleActionType", + "type": "reference", + "target": "1234" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1275, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2665 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1276, + "module": "_models", + "name": "run_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2666 + } + ], + "type": { + "name": "Annotated[ScheduleActionsRunInput | None, Field(alias='runInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ScheduleActionsRunInput", + "target": "1262" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1277, + "module": "_models", + "name": "run_options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2667 + } + ], + "type": { + "name": "Annotated[ScheduleActionsRunOptions | None, Field(alias='runOptions')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ScheduleActionsRunOptions", + "target": "1266" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1275, + 1273, + 1276, + 1277, + 1274 + ], + "title": "Properties" + } + ], + "id": 1272, + "module": "_models", + "name": "ScheduleCreateActions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2659 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1279, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2671 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1280, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2675 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['my-schedule'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1281, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2676 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isEnabled', examples=[True])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1282, + "module": "_models", + "name": "is_exclusive", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2677 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isExclusive', examples=[True])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1283, + "module": "_models", + "name": "cron_expression", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2678 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='cronExpression', examples=['* * * * *'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1284, + "module": "_models", + "name": "timezone", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2679 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['UTC'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1285, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2680 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['Schedule of actor ...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1286, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2681 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1287, + "module": "_models", + "name": "actions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2682 + } + ], + "type": { + "name": "list[ScheduleCreateActions] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleCreateActions", + "target": "1272" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1287, + 1283, + 1285, + 1281, + 1282, + 1279, + 1280, + 1284, + 1286 + ], + "title": "Properties" + } + ], + "id": 1278, + "module": "_models", + "name": "ScheduleCreate", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2670 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1289, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2686 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1290, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2690 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1291, + "module": "_models", + "name": "type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2691 + } + ], + "type": { + "name": "ScheduleActionType", + "type": "reference", + "target": "1234" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1292, + "module": "_models", + "name": "actor_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2692 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1293, + "module": "_models", + "name": "run_input", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2693 + } + ], + "type": { + "name": "Annotated[ScheduleActionsRunInput | None, Field(alias='runInput')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ScheduleActionsRunInput", + "target": "1262" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1294, + "module": "_models", + "name": "run_options", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2694 + } + ], + "type": { + "name": "Annotated[ScheduleActionsRunOptions | None, Field(alias='runOptions')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ScheduleActionsRunOptions", + "target": "1266" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1292, + 1290, + 1289, + 1293, + 1294, + 1291 + ], + "title": "Properties" + } + ], + "id": 1288, + "module": "_models", + "name": "ScheduleActions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2685 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1296, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2698 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1297, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2702 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1298, + "module": "_models", + "name": "user_id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2703 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1299, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2704 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1300, + "module": "_models", + "name": "cron_expression", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2705 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1301, + "module": "_models", + "name": "timezone", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2706 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1302, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2707 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1303, + "module": "_models", + "name": "is_exclusive", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2708 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1304, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2709 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['Schedule of actor ...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1305, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2710 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1306, + "module": "_models", + "name": "modified_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2711 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1307, + "module": "_models", + "name": "next_run_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2712 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='nextRunAt', examples=['2019-04-12T07:34:10.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1308, + "module": "_models", + "name": "last_run_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2713 + } + ], + "type": { + "name": "Annotated[AwareDatetime | None, Field(alias='lastRunAt', examples=['2019-04-12T07:33:10.202Z'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1309, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2714 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1310, + "module": "_models", + "name": "actions", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2715 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleActions", + "target": "1288" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1310, + 1305, + 1300, + 1304, + 1297, + 1302, + 1303, + 1308, + 1296, + 1306, + 1299, + 1307, + 1301, + 1309, + 1298 + ], + "title": "Properties" + } + ], + "id": 1295, + "module": "_models", + "name": "Schedule", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2697 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1312, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2719 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1313, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2723 + } + ], + "type": { + "name": "Schedule", + "type": "reference", + "target": "1295" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1313, + 1312 + ], + "title": "Properties" + } + ], + "id": 1311, + "module": "_models", + "name": "ScheduleResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2718 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1315, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2727 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1316, + "module": "_models", + "name": "message", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2731 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1317, + "module": "_models", + "name": "level", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2732 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1318, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2733 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1318, + 1317, + 1316, + 1315 + ], + "title": "Properties" + } + ], + "id": 1314, + "module": "_models", + "name": "ScheduleInvoked", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2726 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1320, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2737 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1321, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2741 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleInvoked", + "target": "1314" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1321, + 1320 + ], + "title": "Properties" + } + ], + "id": 1319, + "module": "_models", + "name": "ScheduleLogResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2736 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1323, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2745 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1324, + "module": "_models", + "name": "pricing_model", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2749 + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1323, + 1324 + ], + "title": "Properties" + } + ], + "id": 1322, + "module": "_models", + "name": "CurrentPricingInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2744 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1326, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2753 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1327, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2757 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1328, + "module": "_models", + "name": "title", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2758 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1329, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2759 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1330, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2760 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1331, + "module": "_models", + "name": "user_full_name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2761 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1332, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2762 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1333, + "module": "_models", + "name": "categories", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2763 + } + ], + "type": { + "name": "Annotated[list[str] | None, Field(examples=[['MARKETING', 'LEAD_GENERATION']])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1334, + "module": "_models", + "name": "notice", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2764 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1335, + "module": "_models", + "name": "picture_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2765 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='pictureUrl', examples=['https://...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1336, + "module": "_models", + "name": "user_picture_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2766 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='userPictureUrl', examples=['https://...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1337, + "module": "_models", + "name": "url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2767 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(examples=['https://...'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1338, + "module": "_models", + "name": "stats", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2768 + } + ], + "type": { + "name": "ActorStats", + "type": "reference", + "target": "268" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1339, + "module": "_models", + "name": "current_pricing_info", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2769 + } + ], + "type": { + "name": "CurrentPricingInfo", + "type": "reference", + "target": "1322" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is whitelisted for agentic payment processing." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1340, + "module": "_models", + "name": "is_white_listed_for_agentic_payment", + "parsedDocstring": { + "text": "Whether the Actor is whitelisted for agentic payment processing." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2770 + } + ], + "type": { + "name": "Annotated[bool | None, Field(alias='isWhiteListedForAgenticPayment')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A brief, LLM-generated readme summary" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1341, + "module": "_models", + "name": "readme_summary", + "parsedDocstring": { + "text": "A brief, LLM-generated readme summary" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2774 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='readmeSummary')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1333, + 1339, + 1332, + 1327, + 1340, + 1326, + 1329, + 1334, + 1335, + 1341, + 1338, + 1328, + 1337, + 1331, + 1336, + 1330 + ], + "title": "Properties" + } + ], + "id": 1325, + "module": "_models", + "name": "StoreListActor", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2752 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1343, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2781 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "overwrites": { + "name": "PaginationResponse.model_config", + "target": 262, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1344, + "module": "_models", + "name": "items", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2785 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "StoreListActor", + "target": "1325" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total number of items available across all pages." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3776, + "module": "_models", + "name": "total", + "parsedDocstring": { + "text": "The total number of items available across all pages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.total", + "target": 263, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The starting position for this page of results." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3777, + "module": "_models", + "name": "offset", + "parsedDocstring": { + "text": "The starting position for this page of results." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 24 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[0], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.offset", + "target": 264, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of items returned per page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3778, + "module": "_models", + "name": "limit", + "parsedDocstring": { + "text": "The maximum number of items returned per page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[1000], ge=1)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.limit", + "target": 265, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the results are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3779, + "module": "_models", + "name": "desc", + "parsedDocstring": { + "text": "Whether the results are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Annotated[bool, Field(examples=[False])]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.desc", + "target": 266, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of items returned in this response." + } + ] + }, + "flags": {}, + "groups": [], + "id": 3780, + "module": "_models", + "name": "count", + "parsedDocstring": { + "text": "The number of items returned in this response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Annotated[int, Field(examples=[2], ge=0)]", + "type": "reference" + }, + "inheritedFrom": { + "name": "PaginationResponse.count", + "target": 267, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 3780, + 3779, + 1344, + 3778, + 1343, + 3777, + 3776 + ], + "title": "Properties" + } + ], + "id": 1342, + "module": "_models", + "name": "ListOfStoreActors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2780 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "PaginationResponse", + "target": "261", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1346, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2789 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1347, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2793 + } + ], + "type": { + "name": "ListOfStoreActors", + "type": "reference", + "target": "1342" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1347, + 1346 + ], + "title": "Properties" + } + ], + "id": 1345, + "module": "_models", + "name": "ListOfActorsInStoreResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2788 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1349, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2797 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1350, + "module": "_models", + "name": "bio", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2801 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['I started web scraping in 1985 using Altair BASIC.'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1351, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2802 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['Jane Doe'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1352, + "module": "_models", + "name": "picture_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2803 + } + ], + "type": { + "name": "Annotated[ AnyUrl | None, Field(alias='pictureUrl', examples=['https://apify.com/img/anonymous_user_picture.png']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1353, + "module": "_models", + "name": "github_username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2806 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='githubUsername', examples=['torvalds.'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1354, + "module": "_models", + "name": "website_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2807 + } + ], + "type": { + "name": "Annotated[AnyUrl | None, Field(alias='websiteUrl', examples=['http://www.example.com'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AnyUrl" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1355, + "module": "_models", + "name": "twitter_username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2808 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='twitterUsername', examples=['@BillGates'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1350, + 1353, + 1349, + 1351, + 1352, + 1355, + 1354 + ], + "title": "Properties" + } + ], + "id": 1348, + "module": "_models", + "name": "Profile", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2796 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1357, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2812 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1358, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2816 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1359, + "module": "_models", + "name": "profile", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2817 + } + ], + "type": { + "name": "Profile", + "type": "reference", + "target": "1348" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1357, + 1359, + 1358 + ], + "title": "Properties" + } + ], + "id": 1356, + "module": "_models", + "name": "UserPublicInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2811 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1361, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2821 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1362, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2825 + } + ], + "type": { + "name": "UserPublicInfo", + "type": "reference", + "target": "1356" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1362, + 1361 + ], + "title": "Properties" + } + ], + "id": 1360, + "module": "_models", + "name": "PublicUserDataResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2820 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1364, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2829 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1365, + "module": "_models", + "name": "name", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2833 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1366, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2834 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1367, + "module": "_models", + "name": "available_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2835 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1367, + 1366, + 1364, + 1365 + ], + "title": "Properties" + } + ], + "id": 1363, + "module": "_models", + "name": "ProxyGroup", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2828 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1369, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2839 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1370, + "module": "_models", + "name": "password", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2843 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1371, + "module": "_models", + "name": "groups", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2844 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ProxyGroup", + "target": "1363" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1371, + 1369, + 1370 + ], + "title": "Properties" + } + ], + "id": 1368, + "module": "_models", + "name": "Proxy", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2838 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1373, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2848 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1374, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2852 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1375, + "module": "_models", + "name": "description", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2853 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1376, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2854 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1377, + "module": "_models", + "name": "monthly_base_price_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2855 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1378, + "module": "_models", + "name": "monthly_usage_credits_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2856 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1379, + "module": "_models", + "name": "usage_discount_percent", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2857 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1380, + "module": "_models", + "name": "enabled_platform_features", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2858 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "Any" + } + ], + "target": "2003" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1381, + "module": "_models", + "name": "max_monthly_usage_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2865 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1382, + "module": "_models", + "name": "max_actor_memory_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2866 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1383, + "module": "_models", + "name": "max_monthly_actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2867 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1384, + "module": "_models", + "name": "max_monthly_residential_proxy_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2868 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1385, + "module": "_models", + "name": "max_monthly_proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2871 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1386, + "module": "_models", + "name": "max_monthly_external_data_transfer_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2872 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1387, + "module": "_models", + "name": "max_actor_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2875 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1388, + "module": "_models", + "name": "max_actor_task_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2876 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1389, + "module": "_models", + "name": "data_retention_days", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2877 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of available proxies in this group." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1390, + "module": "_models", + "name": "available_proxy_groups", + "parsedDocstring": { + "text": "The number of available proxies in this group." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2878 + } + ], + "type": { + "name": "dict", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "int" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1391, + "module": "_models", + "name": "team_account_seat_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2882 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1392, + "module": "_models", + "name": "support_level", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2883 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1393, + "module": "_models", + "name": "available_add_ons", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2884 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1393, + 1390, + 1389, + 1375, + 1380, + 1374, + 1376, + 1387, + 1382, + 1388, + 1383, + 1386, + 1385, + 1384, + 1381, + 1373, + 1377, + 1378, + 1392, + 1391, + 1379 + ], + "title": "Properties" + } + ], + "id": 1372, + "module": "_models", + "name": "Plan", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2847 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1395, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2888 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1396, + "module": "_models", + "name": "is_enabled", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2892 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1397, + "module": "_models", + "name": "disabled_reason", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2893 + } + ], + "type": { + "name": "Annotated[ str | None, Field( alias='disabledReason', examples=[ 'The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com' ], ), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1398, + "module": "_models", + "name": "disabled_reason_type", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2902 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='disabledReasonType', examples=['DISABLED'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1399, + "module": "_models", + "name": "is_trial", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2903 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1400, + "module": "_models", + "name": "trial_expiration_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2904 + } + ], + "type": { + "name": "Annotated[ AwareDatetime | None, Field(alias='trialExpirationAt', examples=['2025-01-01T14:00:00.000Z']) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AwareDatetime" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1397, + 1398, + 1396, + 1399, + 1395, + 1400 + ], + "title": "Properties" + } + ], + "id": 1394, + "module": "_models", + "name": "EffectivePlatformFeature", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2887 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1402, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2910 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1403, + "module": "_models", + "name": "actors", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2914 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1404, + "module": "_models", + "name": "storage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2915 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1405, + "module": "_models", + "name": "scheduler", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2916 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1406, + "module": "_models", + "name": "proxy", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2917 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1407, + "module": "_models", + "name": "proxy_external_access", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2918 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1408, + "module": "_models", + "name": "proxy_residential", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2919 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1409, + "module": "_models", + "name": "proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2920 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1410, + "module": "_models", + "name": "webhooks", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2921 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1411, + "module": "_models", + "name": "actors_public_all", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2922 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1412, + "module": "_models", + "name": "actors_public_developer", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2923 + } + ], + "type": { + "name": "EffectivePlatformFeature", + "type": "reference", + "target": "1394" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1403, + 1411, + 1412, + 1402, + 1406, + 1407, + 1408, + 1409, + 1405, + 1404, + 1410 + ], + "title": "Properties" + } + ], + "id": 1401, + "module": "_models", + "name": "EffectivePlatformFeatures", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2909 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1414, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2927 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1415, + "module": "_models", + "name": "id", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2931 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1416, + "module": "_models", + "name": "username", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2932 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1417, + "module": "_models", + "name": "profile", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2933 + } + ], + "type": { + "name": "Profile", + "type": "reference", + "target": "1348" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1418, + "module": "_models", + "name": "email", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2934 + } + ], + "type": { + "name": "EmailStr", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1419, + "module": "_models", + "name": "proxy", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2935 + } + ], + "type": { + "name": "Proxy", + "type": "reference", + "target": "1368" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1420, + "module": "_models", + "name": "plan", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2936 + } + ], + "type": { + "name": "Plan", + "type": "reference", + "target": "1372" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1421, + "module": "_models", + "name": "effective_platform_features", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2937 + } + ], + "type": { + "name": "EffectivePlatformFeatures", + "type": "reference", + "target": "1401" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1422, + "module": "_models", + "name": "created_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2938 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1423, + "module": "_models", + "name": "is_paying", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2939 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1422, + 1421, + 1418, + 1415, + 1423, + 1414, + 1420, + 1417, + 1419, + 1416 + ], + "title": "Properties" + } + ], + "id": 1413, + "module": "_models", + "name": "UserPrivateInfo", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2926 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1425, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2943 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1426, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2947 + } + ], + "type": { + "name": "UserPrivateInfo", + "type": "reference", + "target": "1413" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1426, + 1425 + ], + "title": "Properties" + } + ], + "id": 1424, + "module": "_models", + "name": "PrivateUserDataResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2942 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1428, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2951 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1429, + "module": "_models", + "name": "start_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2955 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1430, + "module": "_models", + "name": "end_at", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2956 + } + ], + "type": { + "name": "AwareDatetime", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1430, + 1428, + 1429 + ], + "title": "Properties" + } + ], + "id": 1427, + "module": "_models", + "name": "UsageCycle", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2950 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1432, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2960 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1433, + "module": "_models", + "name": "quantity_above", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2964 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1434, + "module": "_models", + "name": "discount_percent", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2965 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1435, + "module": "_models", + "name": "tier_quantity", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2966 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1436, + "module": "_models", + "name": "unit_price_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2967 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1437, + "module": "_models", + "name": "price_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2968 + } + ], + "type": { + "name": "float", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1434, + 1432, + 1437, + 1433, + 1435, + 1436 + ], + "title": "Properties" + } + ], + "id": 1431, + "module": "_models", + "name": "PriceTiers", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2959 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1439, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2972 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1440, + "module": "_models", + "name": "quantity", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2976 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1441, + "module": "_models", + "name": "base_amount_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2977 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1442, + "module": "_models", + "name": "base_unit_price_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2978 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='baseUnitPriceUsd', examples=[0.25])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1443, + "module": "_models", + "name": "amount_after_volume_discount_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2979 + } + ], + "type": { + "name": "Annotated[ float | None, Field(alias='amountAfterVolumeDiscountUsd', examples=[0.69611875]) ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1444, + "module": "_models", + "name": "price_tiers", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2982 + } + ], + "type": { + "name": "Annotated[list[PriceTiers] | None, Field(alias='priceTiers')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "PriceTiers", + "target": "1431" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1443, + 1441, + 1442, + 1439, + 1444, + 1440 + ], + "title": "Properties" + } + ], + "id": 1438, + "module": "_models", + "name": "UsageItem", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2971 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1446, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2986 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1447, + "module": "_models", + "name": "date", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2990 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1448, + "module": "_models", + "name": "service_usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2991 + } + ], + "type": { + "name": "dict", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "UsageItem", + "target": "1438" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1449, + "module": "_models", + "name": "total_usage_credits_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2992 + } + ], + "type": { + "name": "float", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1447, + 1446, + 1448, + 1449 + ], + "title": "Properties" + } + ], + "id": 1445, + "module": "_models", + "name": "DailyServiceUsages", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2985 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1451, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2996 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1452, + "module": "_models", + "name": "usage_cycle", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3000 + } + ], + "type": { + "name": "UsageCycle", + "type": "reference", + "target": "1427" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1453, + "module": "_models", + "name": "monthly_service_usage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3001 + } + ], + "type": { + "name": "dict", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "UsageItem", + "target": "1438" + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1454, + "module": "_models", + "name": "daily_service_usages", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3002 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "DailyServiceUsages", + "target": "1445" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1455, + "module": "_models", + "name": "total_usage_credits_usd_before_volume_discount", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3003 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1456, + "module": "_models", + "name": "total_usage_credits_usd_after_volume_discount", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3006 + } + ], + "type": { + "name": "float", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1454, + 1451, + 1453, + 1456, + 1455, + 1452 + ], + "title": "Properties" + } + ], + "id": 1450, + "module": "_models", + "name": "MonthlyUsage", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 2995 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1458, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3012 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1459, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3016 + } + ], + "type": { + "name": "MonthlyUsage", + "type": "reference", + "target": "1450" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1459, + 1458 + ], + "title": "Properties" + } + ], + "id": 1457, + "module": "_models", + "name": "MonthlyUsageResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3011 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1461, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3020 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1462, + "module": "_models", + "name": "max_monthly_usage_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3024 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1463, + "module": "_models", + "name": "max_monthly_actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3025 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1464, + "module": "_models", + "name": "max_monthly_external_data_transfer_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3026 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1465, + "module": "_models", + "name": "max_monthly_proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3029 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1466, + "module": "_models", + "name": "max_monthly_residential_proxy_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3030 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1467, + "module": "_models", + "name": "max_actor_memory_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3033 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1468, + "module": "_models", + "name": "max_actor_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3034 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1469, + "module": "_models", + "name": "max_actor_task_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3035 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1470, + "module": "_models", + "name": "max_concurrent_actor_jobs", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3036 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1471, + "module": "_models", + "name": "max_team_account_seat_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3037 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1472, + "module": "_models", + "name": "data_retention_days", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3038 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1472, + 1468, + 1467, + 1469, + 1470, + 1463, + 1464, + 1465, + 1466, + 1462, + 1471, + 1461 + ], + "title": "Properties" + } + ], + "id": 1460, + "module": "_models", + "name": "Limits", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3019 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1474, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3042 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1475, + "module": "_models", + "name": "monthly_usage_usd", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3046 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1476, + "module": "_models", + "name": "monthly_actor_compute_units", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3047 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1477, + "module": "_models", + "name": "monthly_external_data_transfer_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3048 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1478, + "module": "_models", + "name": "monthly_proxy_serps", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3051 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1479, + "module": "_models", + "name": "monthly_residential_proxy_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3052 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1480, + "module": "_models", + "name": "actor_memory_gbytes", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3053 + } + ], + "type": { + "name": "float", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1481, + "module": "_models", + "name": "actor_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3054 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1482, + "module": "_models", + "name": "actor_task_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3055 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1483, + "module": "_models", + "name": "active_actor_job_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3056 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1484, + "module": "_models", + "name": "team_account_seat_count", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3057 + } + ], + "type": { + "name": "int", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1483, + 1481, + 1480, + 1482, + 1474, + 1476, + 1477, + 1478, + 1479, + 1475, + 1484 + ], + "title": "Properties" + } + ], + "id": 1473, + "module": "_models", + "name": "Current", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3041 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1486, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3061 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1487, + "module": "_models", + "name": "monthly_usage_cycle", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3065 + } + ], + "type": { + "name": "UsageCycle", + "type": "reference", + "target": "1427" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1488, + "module": "_models", + "name": "limits", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3066 + } + ], + "type": { + "name": "Limits", + "type": "reference", + "target": "1460" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1489, + "module": "_models", + "name": "current", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3067 + } + ], + "type": { + "name": "Current", + "type": "reference", + "target": "1473" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1489, + 1488, + 1486, + 1487 + ], + "title": "Properties" + } + ], + "id": 1485, + "module": "_models", + "name": "AccountLimits", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3060 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1491, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3071 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1492, + "module": "_models", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3075 + } + ], + "type": { + "name": "AccountLimits", + "type": "reference", + "target": "1485" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1492, + 1491 + ], + "title": "Properties" + } + ], + "id": 1490, + "module": "_models", + "name": "LimitsResponse", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3070 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1494, + "module": "_models", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3079 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "If your platform usage in the billing period exceeds the prepaid usage, you will be charged extra. Setting this property you can update your hard limit on monthly platform usage to prevent accidental overage or to limit the extra charges." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1495, + "module": "_models", + "name": "max_monthly_usage_usd", + "parsedDocstring": { + "text": "If your platform usage in the billing period exceeds the prepaid usage, you will be charged extra. Setting this property you can update your hard limit on monthly platform usage to prevent accidental overage or to limit the extra charges." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3083 + } + ], + "type": { + "name": "Annotated[float | None, Field(alias='maxMonthlyUsageUsd', examples=[300])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify securely stores your ten most recent Actor runs indefinitely, ensuring they are always accessible. Unnamed storages and other Actor runs are automatically deleted after the retention period. If you're subscribed, you can change it to keep data for longer or to limit your usage. [Lear more](https://docs.apify.com/platform/storage/usage#data-retention)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1496, + "module": "_models", + "name": "data_retention_days", + "parsedDocstring": { + "text": "Apify securely stores your ten most recent Actor runs indefinitely, ensuring they are always accessible. Unnamed storages and other Actor runs are automatically deleted after the retention period. If you're subscribed, you can change it to keep data for longer or to limit your usage. [Lear more](https://docs.apify.com/platform/storage/usage#data-retention)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3088 + } + ], + "type": { + "name": "Annotated[int | None, Field(alias='dataRetentionDays', examples=[90])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1496, + 1495, + 1494 + ], + "title": "Properties" + } + ], + "id": 1493, + "module": "_models", + "name": "UpdateLimitsRequest", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_models.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 3078 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Total number of API method calls made by the client." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1498, + "module": "_statistics", + "name": "calls", + "parsedDocstring": { + "text": "Total number of API method calls made by the client." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_statistics.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 11 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Total number of HTTP requests sent, including retries." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1499, + "module": "_statistics", + "name": "requests", + "parsedDocstring": { + "text": "Total number of HTTP requests sent, including retries." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_statistics.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List tracking which retry attempts encountered rate limit (429) errors." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1500, + "module": "_statistics", + "name": "rate_limit_errors", + "parsedDocstring": { + "text": "List tracking which retry attempts encountered rate limit (429) errors." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_statistics.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 17 + } + ], + "type": { + "name": "defaultdict", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "reference", + "name": "int" + } + ] + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add rate limit error for specific attempt.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1501, + "module": "_statistics", + "name": "add_rate_limit_error", + "parsedDocstring": { + "text": "Add rate limit error for specific attempt.\n", + "args": { + "attempt": "The attempt number (1-based indexing)." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_statistics.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add rate limit error for specific attempt.\n" + } + ] + }, + "flags": {}, + "id": 1502, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "add_rate_limit_error", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attempt number (1-based indexing)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1503, + "kind": 32768, + "kindString": "Parameter", + "name": "attempt", + "type": { + "name": "int", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics about API client usage and rate limit errors." + } + ] + }, + "decorations": [ + { + "name": "dataclass" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1501 + ], + "title": "Methods" + }, + { + "children": [ + 1498, + 1500, + 1499 + ], + "title": "Properties" + } + ], + "id": 1497, + "module": "_statistics", + "name": "ClientStatistics", + "parsedDocstring": { + "text": "Statistics about API client usage and rate limit errors." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_statistics.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 8 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1505, + "module": "_status_message_watcher", + "name": "__init__", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 31 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "flags": {}, + "id": 1506, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1507, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "defaultValue": "timedelta(seconds=5)", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1508, + "kind": 32768, + "kindString": "Parameter", + "name": "check_period", + "type": { + "name": "timedelta", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class for polling and logging Actor run status messages." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1505 + ], + "title": "Methods" + } + ], + "id": 1504, + "module": "_status_message_watcher", + "name": "StatusMessageWatcherBase", + "parsedDocstring": { + "text": "Base class for polling and logging Actor run status messages." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 22 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "StatusMessageWatcherAsync", + "target": "1509", + "type": "reference" + }, + { + "name": "StatusMessageWatcher", + "target": "1526", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StatusMessageWatcherAsync`.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1510, + "module": "_status_message_watcher", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize `StatusMessageWatcherAsync`.\n", + "args": { + "run_client": "The run client used to poll the Actor run status and status message.", + "to_logger": "The logger to which the status messages will be forwarded.", + "check_period": "How often to poll the status message." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StatusMessageWatcherAsync`.\n" + } + ] + }, + "flags": {}, + "id": 1511, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The run client used to poll the Actor run status and status message." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1512, + "kind": 32768, + "kindString": "Parameter", + "name": "run_client", + "type": { + "name": "RunClientAsync", + "type": "reference", + "target": "3045" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The logger to which the status messages will be forwarded." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1513, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How often to poll the status message." + } + ] + }, + "defaultValue": "timedelta(seconds=1)", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1514, + "kind": 32768, + "kindString": "Parameter", + "name": "check_period", + "type": { + "name": "timedelta", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "StatusMessageWatcherBase.__init__", + "target": 1505, + "type": "reference" + } + } + ], + "overwrites": { + "name": "StatusMessageWatcherBase.__init__", + "target": 1505, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the polling task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1515, + "module": "_status_message_watcher", + "name": "start", + "parsedDocstring": { + "text": "Start the polling task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 86 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the polling task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "flags": {}, + "id": 1516, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the logging task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1517, + "module": "_status_message_watcher", + "name": "stop", + "parsedDocstring": { + "text": "Stop the logging task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 96 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the logging task." + } + ] + }, + "flags": {}, + "id": 1518, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "stop", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the logging task within the context. Exiting the context will cancel the logging task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1519, + "module": "_status_message_watcher", + "name": "__aenter__", + "parsedDocstring": { + "text": "Start the logging task within the context. Exiting the context will cancel the logging task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 109 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the logging task within the context. Exiting the context will cancel the logging task." + } + ] + }, + "flags": {}, + "id": 1520, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "__aenter__", + "parameters": [], + "type": { + "name": "Self", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Cancel the logging task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1521, + "module": "_status_message_watcher", + "name": "__aexit__", + "parsedDocstring": { + "text": "Cancel the logging task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 114 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Cancel the logging task." + } + ] + }, + "flags": {}, + "id": 1522, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "__aexit__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1523, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_type", + "type": { + "name": "type[BaseException] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "type", + "typeArguments": [ + { + "type": "reference", + "name": "BaseException" + } + ], + "target": "295" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1524, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_val", + "type": { + "name": "BaseException | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BaseException" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1525, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_tb", + "type": { + "name": "TracebackType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TracebackType" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Polls and logs Actor run status messages in an asyncio task.\n\nThe status message and status of the Actor run are polled at a fixed interval and forwarded to the provided logger\nwhenever they change. There is no guarantee that every intermediate status message will be captured, especially\nwhen messages change rapidly.\n\nCan be used as an async context manager, which automatically starts and cancels the polling task. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClientAsync.get_status_message_watcher`." + } + ] + }, + "decorations": [ + { + "args": "('Other')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1519, + 1521, + 1510, + 1515, + 1517 + ], + "title": "Methods" + } + ], + "id": 1509, + "module": "_status_message_watcher", + "name": "StatusMessageWatcherAsync", + "parsedDocstring": { + "text": "Polls and logs Actor run status messages in an asyncio task.\n\nThe status message and status of the Actor run are polled at a fixed interval and forwarded to the provided logger\nwhenever they change. There is no guarantee that every intermediate status message will be captured, especially\nwhen messages change rapidly.\n\nCan be used as an async context manager, which automatically starts and cancels the polling task. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClientAsync.get_status_message_watcher`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 61 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "StatusMessageWatcherBase", + "target": "1504", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StatusMessageWatcher`.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1527, + "module": "_status_message_watcher", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize `StatusMessageWatcher`.\n", + "args": { + "run_client": "The run client used to poll the Actor run status and status message.", + "to_logger": "The logger to which the status messages will be forwarded.", + "check_period": "How often to poll the status message." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 141 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StatusMessageWatcher`.\n" + } + ] + }, + "flags": {}, + "id": 1528, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The run client used to poll the Actor run status and status message." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1529, + "kind": 32768, + "kindString": "Parameter", + "name": "run_client", + "type": { + "name": "RunClient", + "type": "reference", + "target": "2976" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The logger to which the status messages will be forwarded." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1530, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How often to poll the status message." + } + ] + }, + "defaultValue": "timedelta(seconds=1)", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1531, + "kind": 32768, + "kindString": "Parameter", + "name": "check_period", + "type": { + "name": "timedelta", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "StatusMessageWatcherBase.__init__", + "target": 1505, + "type": "reference" + } + } + ], + "overwrites": { + "name": "StatusMessageWatcherBase.__init__", + "target": 1505, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the polling thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1532, + "module": "_status_message_watcher", + "name": "start", + "parsedDocstring": { + "text": "Start the polling thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 156 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the polling thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "flags": {}, + "id": 1533, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [], + "type": { + "name": "Thread", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signal the logging thread to stop logging and wait for it to finish." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1534, + "module": "_status_message_watcher", + "name": "stop", + "parsedDocstring": { + "text": "Signal the logging thread to stop logging and wait for it to finish." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 168 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signal the logging thread to stop logging and wait for it to finish." + } + ] + }, + "flags": {}, + "id": 1535, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "stop", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the logging thread within the context. Exiting the context will stop the logging thread." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1536, + "module": "_status_message_watcher", + "name": "__enter__", + "parsedDocstring": { + "text": "Start the logging thread within the context. Exiting the context will stop the logging thread." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 178 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the logging thread within the context. Exiting the context will stop the logging thread." + } + ] + }, + "flags": {}, + "id": 1537, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__enter__", + "parameters": [], + "type": { + "name": "Self", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the logging thread." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1538, + "module": "_status_message_watcher", + "name": "__exit__", + "parsedDocstring": { + "text": "Stop the logging thread." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 183 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the logging thread." + } + ] + }, + "flags": {}, + "id": 1539, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__exit__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1540, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_type", + "type": { + "name": "type[BaseException] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "type", + "typeArguments": [ + { + "type": "reference", + "name": "BaseException" + } + ], + "target": "295" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1541, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_val", + "type": { + "name": "BaseException | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BaseException" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1542, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_tb", + "type": { + "name": "TracebackType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TracebackType" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Polls and logs Actor run status messages in a background thread.\n\nThe status message and status of the Actor run are polled at a fixed interval and forwarded to the provided logger\nwhenever they change. There is no guarantee that every intermediate status message will be captured, especially\nwhen messages change rapidly.\n\nCan be used as a context manager, which automatically starts and stops the polling thread. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClient.get_status_message_watcher`." + } + ] + }, + "decorations": [ + { + "args": "('Other')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1536, + 1538, + 1527, + 1532, + 1534 + ], + "title": "Methods" + } + ], + "id": 1526, + "module": "_status_message_watcher", + "name": "StatusMessageWatcher", + "parsedDocstring": { + "text": "Polls and logs Actor run status messages in a background thread.\n\nThe status message and status of the Actor run are polled at a fixed interval and forwarded to the provided logger\nwhenever they change. There is no guarantee that every intermediate status message will be captured, especially\nwhen messages change rapidly.\n\nCan be used as a context manager, which automatically starts and stops the polling thread. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClient.get_status_message_watcher`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_status_message_watcher.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 130 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "StatusMessageWatcherBase", + "target": "1504", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1544, + "module": "_streamed_log", + "name": "__init__", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "flags": {}, + "id": 1545, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1546, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "defaultValue": "True", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1547, + "kind": 32768, + "kindString": "Parameter", + "name": "from_start", + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class for streaming and buffering chunked Actor run logs." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1544 + ], + "title": "Methods" + } + ], + "id": 1543, + "module": "_streamed_log", + "name": "StreamedLogBase", + "parsedDocstring": { + "text": "Base class for streaming and buffering chunked Actor run logs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 20 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "StreamedLog", + "target": "1548", + "type": "reference" + }, + { + "name": "StreamedLogAsync", + "target": "1565", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StreamedLog`.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1549, + "module": "_streamed_log", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize `StreamedLog`.\n", + "args": { + "log_client": "The log client used to stream raw log data from the Actor run.", + "to_logger": "The logger to which the log messages will be forwarded.", + "from_start": "If `True`, all logs from the start of the Actor run will be streamed. If `False`, only newly\narrived logs will be streamed. This can be useful for long-running Actors in stand-by mode where only\nrecent logs are relevant." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 93 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StreamedLog`.\n" + } + ] + }, + "flags": {}, + "id": 1550, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The log client used to stream raw log data from the Actor run." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1551, + "kind": 32768, + "kindString": "Parameter", + "name": "log_client", + "type": { + "name": "LogClient", + "type": "reference", + "target": "2757" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The logger to which the log messages will be forwarded." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1552, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If `True`, all logs from the start of the Actor run will be streamed. If `False`, only newly\narrived logs will be streamed. This can be useful for long-running Actors in stand-by mode where only\nrecent logs are relevant." + } + ] + }, + "defaultValue": "True", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1553, + "kind": 32768, + "kindString": "Parameter", + "name": "from_start", + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "StreamedLogBase.__init__", + "target": 1544, + "type": "reference" + } + } + ], + "overwrites": { + "name": "StreamedLogBase.__init__", + "target": 1544, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1554, + "module": "_streamed_log", + "name": "start", + "parsedDocstring": { + "text": "Start the streaming thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 108 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming thread.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "flags": {}, + "id": 1555, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [], + "type": { + "name": "Thread", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signal the streaming thread to stop logging and wait for it to finish." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1556, + "module": "_streamed_log", + "name": "stop", + "parsedDocstring": { + "text": "Signal the streaming thread to stop logging and wait for it to finish." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 120 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signal the streaming thread to stop logging and wait for it to finish." + } + ] + }, + "flags": {}, + "id": 1557, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "stop", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming thread within the context. Exiting the context will finish the streaming thread." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1558, + "module": "_streamed_log", + "name": "__enter__", + "parsedDocstring": { + "text": "Start the streaming thread within the context. Exiting the context will finish the streaming thread." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 129 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming thread within the context. Exiting the context will finish the streaming thread." + } + ] + }, + "flags": {}, + "id": 1559, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__enter__", + "parameters": [], + "type": { + "name": "Self", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the streaming thread." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1560, + "module": "_streamed_log", + "name": "__exit__", + "parsedDocstring": { + "text": "Stop the streaming thread." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 134 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the streaming thread." + } + ] + }, + "flags": {}, + "id": 1561, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__exit__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1562, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_type", + "type": { + "name": "type[BaseException] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "type", + "typeArguments": [ + { + "type": "reference", + "name": "BaseException" + } + ], + "target": "295" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1563, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_val", + "type": { + "name": "BaseException | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BaseException" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1564, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_tb", + "type": { + "name": "TracebackType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TracebackType" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Streams Actor run log output to a Python logger in a background thread.\n\nThe log stream is consumed in a background thread and each log message is forwarded to the provided logger with\nan appropriate log level inferred from the message content.\n\nCan be used as a context manager, which automatically starts and stops the streaming thread. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClient.get_streamed_log`." + } + ] + }, + "decorations": [ + { + "args": "('Other')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1558, + 1560, + 1549, + 1554, + 1556 + ], + "title": "Methods" + } + ], + "id": 1548, + "module": "_streamed_log", + "name": "StreamedLog", + "parsedDocstring": { + "text": "Streams Actor run log output to a Python logger in a background thread.\n\nThe log stream is consumed in a background thread and each log message is forwarded to the provided logger with\nan appropriate log level inferred from the message content.\n\nCan be used as a context manager, which automatically starts and stops the streaming thread. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClient.get_streamed_log`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 83 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "StreamedLogBase", + "target": "1543", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StreamedLogAsync`.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1566, + "module": "_streamed_log", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize `StreamedLogAsync`.\n", + "args": { + "log_client": "The async log client used to stream raw log data from the Actor run.", + "to_logger": "The logger to which the log messages will be forwarded.", + "from_start": "If `True`, all logs from the start of the Actor run will be streamed. If `False`, only newly\narrived logs will be streamed. This can be useful for long-running Actors in stand-by mode where only\nrecent logs are relevant." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 165 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize `StreamedLogAsync`.\n" + } + ] + }, + "flags": {}, + "id": 1567, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The async log client used to stream raw log data from the Actor run." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1568, + "kind": 32768, + "kindString": "Parameter", + "name": "log_client", + "type": { + "name": "LogClientAsync", + "type": "reference", + "target": "2774" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The logger to which the log messages will be forwarded." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1569, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If `True`, all logs from the start of the Actor run will be streamed. If `False`, only newly\narrived logs will be streamed. This can be useful for long-running Actors in stand-by mode where only\nrecent logs are relevant." + } + ] + }, + "defaultValue": "True", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1570, + "kind": 32768, + "kindString": "Parameter", + "name": "from_start", + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "StreamedLogBase.__init__", + "target": 1544, + "type": "reference" + } + } + ], + "overwrites": { + "name": "StreamedLogBase.__init__", + "target": 1544, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1571, + "module": "_streamed_log", + "name": "start", + "parsedDocstring": { + "text": "Start the streaming task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 179 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming task.\n\nThe caller is responsible for cleanup by calling the `stop` method when done." + } + ] + }, + "flags": {}, + "id": 1572, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the streaming task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1573, + "module": "_streamed_log", + "name": "stop", + "parsedDocstring": { + "text": "Stop the streaming task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 189 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stop the streaming task." + } + ] + }, + "flags": {}, + "id": 1574, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "stop", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming task within the context. Exiting the context will cancel the streaming task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1575, + "module": "_streamed_log", + "name": "__aenter__", + "parsedDocstring": { + "text": "Start the streaming task within the context. Exiting the context will cancel the streaming task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 202 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the streaming task within the context. Exiting the context will cancel the streaming task." + } + ] + }, + "flags": {}, + "id": 1576, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "__aenter__", + "parameters": [], + "type": { + "name": "Self", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Cancel the streaming task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1577, + "module": "_streamed_log", + "name": "__aexit__", + "parsedDocstring": { + "text": "Cancel the streaming task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 207 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Cancel the streaming task." + } + ] + }, + "flags": {}, + "id": 1578, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "__aexit__", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1579, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_type", + "type": { + "name": "type[BaseException] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "type", + "typeArguments": [ + { + "type": "reference", + "name": "BaseException" + } + ], + "target": "295" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1580, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_val", + "type": { + "name": "BaseException | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "BaseException" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1581, + "kind": 32768, + "kindString": "Parameter", + "name": "exc_tb", + "type": { + "name": "TracebackType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "TracebackType" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Streams Actor run log output to a Python logger in an asyncio task.\n\nThe log stream is consumed in a background asyncio task and each log message is forwarded to the provided logger\nwith an appropriate log level inferred from the message content.\n\nCan be used as an async context manager, which automatically starts and cancels the streaming task. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClientAsync.get_streamed_log`." + } + ] + }, + "decorations": [ + { + "args": "('Other')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1575, + 1577, + 1566, + 1571, + 1573 + ], + "title": "Methods" + } + ], + "id": 1565, + "module": "_streamed_log", + "name": "StreamedLogAsync", + "parsedDocstring": { + "text": "Streams Actor run log output to a Python logger in an asyncio task.\n\nThe log stream is consumed in a background asyncio task and each log message is forwarded to the provided logger\nwith an appropriate log level inferred from the message content.\n\nCan be used as an async context manager, which automatically starts and cancels the streaming task. Alternatively,\ncall `start` and `stop` manually. Obtain an instance via `RunClientAsync.get_streamed_log`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_streamed_log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 155 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "StreamedLogBase", + "target": "1543", + "type": "reference" + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Type for the `timeout` parameter on resource client methods.\n\n`'short'`, `'medium'`, and `'long'` are tier literals resolved by the HTTP client to configured values.\nA `timedelta` overrides the timeout for this call, and `'no_timeout'` disables the timeout entirely." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1582, + "module": "_types", + "name": "Timeout", + "parsedDocstring": { + "text": "Type for the `timeout` parameter on resource client methods.\n\n`'short'`, `'medium'`, and `'long'` are tier literals resolved by the HTTP client to configured values.\nA `timedelta` overrides the timeout for this call, and `'no_timeout'` disables the timeout entirely." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 12 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Type for representing json-serializable values. It's close enough to the real thing supported by json.parse.\nIt was suggested in a discussion with (and approved by) Guido van Rossum, so I'd consider it correct enough." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1583, + "module": "_types", + "name": "JsonSerializable", + "parsedDocstring": { + "text": "Type for representing json-serializable values. It's close enough to the real thing supported by json.parse.\nIt was suggested in a discussion with (and approved by) Guido van Rossum, so I'd consider it correct enough." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1585, + "module": "_types", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 31 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1586, + "module": "_types", + "name": "status", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 33 + } + ], + "type": { + "name": "ActorJobStatus", + "type": "reference", + "target": "546" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimal model for an Actor job (run or build) with status.\n\nUsed for validation during polling operations. Allows extra fields so the full response data is preserved." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1585, + 1586 + ], + "title": "Properties" + } + ], + "id": 1584, + "module": "_types", + "name": "ActorJob", + "parsedDocstring": { + "text": "Minimal model for an Actor job (run or build) with status.\n\nUsed for validation during polling operations. Allows extra fields so the full response data is preserved." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 25 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1588, + "module": "_types", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 42 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1589, + "module": "_types", + "name": "data", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 44 + } + ], + "type": { + "name": "ActorJob", + "type": "reference", + "target": "1584" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response wrapper for an Actor job (run or build).\n\nUsed for minimal validation during polling operations. Allows extra fields so the full response data is preserved." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1589, + 1588 + ], + "title": "Properties" + } + ], + "id": 1587, + "module": "_types", + "name": "ActorJobResponse", + "parsedDocstring": { + "text": "Response wrapper for an Actor job (run or build).\n\nUsed for minimal validation during polling operations. Allows extra fields so the full response data is preserved." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1591, + "module": "_types", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 53 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1592, + "module": "_types", + "name": "event_types", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 55 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1593, + "module": "_types", + "name": "request_url", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 56 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1594, + "module": "_types", + "name": "payload_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='payloadTemplate')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1595, + "module": "_types", + "name": "headers_template", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 58 + } + ], + "type": { + "name": "Annotated[str | None, Field(alias='headersTemplate')]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Representation of a webhook for base64-encoded API transmission.\n\nContains only the fields needed for the webhook payload sent via query parameters." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1592, + 1595, + 1591, + 1594, + 1593 + ], + "title": "Properties" + } + ], + "id": 1590, + "module": "_types", + "name": "WebhookRepresentation", + "parsedDocstring": { + "text": "Representation of a webhook for base64-encoded API transmission.\n\nContains only the fields needed for the webhook payload sent via query parameters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Construct from a list of `WebhookCreate` models or plain dicts.\n\nDicts are validated directly as `WebhookRepresentation`, so only the minimal ad-hoc webhook fields\n(`event_types`, `request_url`, and optionally `payload_template`/`headers_template`) are required." + } + ] + }, + "decorations": [ + { + "name": "classmethod" + } + ], + "flags": {}, + "groups": [], + "id": 1597, + "module": "_types", + "name": "from_webhooks", + "parsedDocstring": { + "text": "Construct from a list of `WebhookCreate` models or plain dicts.\n\nDicts are validated directly as `WebhookRepresentation`, so only the minimal ad-hoc webhook fields\n(`event_types`, `request_url`, and optionally `payload_template`/`headers_template`) are required." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 65 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Construct from a list of `WebhookCreate` models or plain dicts.\n\nDicts are validated directly as `WebhookRepresentation`, so only the minimal ad-hoc webhook fields\n(`event_types`, `request_url`, and optionally `payload_template`/`headers_template`) are required." + } + ] + }, + "flags": {}, + "id": 1598, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "from_webhooks", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1599, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + } + } + ], + "type": { + "name": "WebhookRepresentationList", + "type": "reference", + "target": "1596" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Encode this list of webhook representations to a base64 string.\n\nReturns `None` if the list is empty, so that the query parameter is omitted." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1600, + "module": "_types", + "name": "to_base64", + "parsedDocstring": { + "text": "Encode this list of webhook representations to a base64 string.\n\nReturns `None` if the list is empty, so that the query parameter is omitted." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 82 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Encode this list of webhook representations to a base64 string.\n\nReturns `None` if the list is empty, so that the query parameter is omitted." + } + ] + }, + "flags": {}, + "id": 1601, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "to_base64", + "parameters": [], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of webhook representations with base64 encoding support." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1597, + 1600 + ], + "title": "Methods" + } + ], + "id": 1596, + "module": "_types", + "name": "WebhookRepresentationList", + "parsedDocstring": { + "text": "List of webhook representations with base64 encoding support." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 61 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1603, + "module": "_types", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 101 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1604, + "module": "_types", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 106 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['sbJ7klsdf7ujN9l'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1605, + "module": "_types", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 109 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1606, + "module": "_types", + "name": "url", + "parsedDocstring": { + "text": "The URL of the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 115 + } + ], + "type": { + "name": "AnyUrl", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the request. Defaults to `GET` on the API side if not provided." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1607, + "module": "_types", + "name": "method", + "parsedDocstring": { + "text": "The HTTP method of the request. Defaults to `GET` on the API side if not provided." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 118 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['GET'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input model for adding requests to a request queue.\n\nBoth `url` and `unique_key` are required. The API defaults `method` to `GET` when not provided." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1604, + 1607, + 1603, + 1605, + 1606 + ], + "title": "Properties" + } + ], + "id": 1602, + "module": "_types", + "name": "RequestInput", + "parsedDocstring": { + "text": "Input model for adding requests to a request queue.\n\nBoth `url` and `unique_key` are required. The API defaults `method` to `GET` when not provided." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 95 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1609, + "module": "_types", + "name": "model_config", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 128 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier assigned to the request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1610, + "module": "_types", + "name": "id", + "parsedDocstring": { + "text": "A unique identifier assigned to the request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 133 + } + ], + "type": { + "name": "Annotated[str | None, Field(examples=['sbJ7klsdf7ujN9l'])]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key used for request de-duplication." + } + ] + }, + "flags": {}, + "groups": [], + "id": 1611, + "module": "_types", + "name": "unique_key", + "parsedDocstring": { + "text": "A unique key used for request de-duplication." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 136 + } + ], + "type": { + "name": "Annotated[ str | None, Field(alias='uniqueKey', examples=['GET|60d83e70|e3b0c442|https://apify.com']), ]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input model for deleting requests from a request queue.\n\nRequests are identified by `id` or `unique_key`. At least one must be provided." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1610, + 1609, + 1611 + ], + "title": "Properties" + } + ], + "id": 1608, + "module": "_types", + "name": "RequestDeleteInput", + "parsedDocstring": { + "text": "Input model for deleting requests from a request queue.\n\nRequests are identified by `id` or `unique_key`. At least one must be provided." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_types.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 122 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1612, + "module": "_utils", + "name": "T", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 25 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Convert timedelta to seconds.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1613, + "module": "_utils", + "name": "to_seconds", + "parsedDocstring": { + "text": "Convert timedelta to seconds.\n", + "args": { + "td": "The timedelta to convert, or None.", + "as_int": "If True, round and return as int. Defaults to False.\n" + }, + "returns": "The total seconds as a float (or int if as_int=True), or None if input is None." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 41 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The total seconds as a float (or int if as_int=True), or None if input is None." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Convert timedelta to seconds.\n" + } + ] + }, + "flags": {}, + "id": 1614, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "to_seconds", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The timedelta to convert, or None." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1615, + "kind": 32768, + "kindString": "Parameter", + "name": "td", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, round and return as int. Defaults to False.\n" + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1616, + "kind": 32768, + "kindString": "Parameter", + "name": "as_int", + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "type": { + "name": "float | int | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "float" + }, + { + "type": "reference", + "name": "int" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Suppress 404 Not Found errors and re-raise all other API errors.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1617, + "module": "_utils", + "name": "catch_not_found_or_throw", + "parsedDocstring": { + "text": "Suppress 404 Not Found errors and re-raise all other API errors.\n", + "args": { + "exc": "The API error to check.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Suppress 404 Not Found errors and re-raise all other API errors.\n" + } + ] + }, + "flags": {}, + "id": 1618, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "catch_not_found_or_throw", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The API error to check.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1619, + "kind": 32768, + "kindString": "Parameter", + "name": "exc", + "type": { + "name": "ApifyApiError", + "type": "reference", + "target": "1654" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Encode a value for storage in a key-value store record.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1620, + "module": "_utils", + "name": "encode_key_value_store_record_value", + "parsedDocstring": { + "text": "Encode a value for storage in a key-value store record.\n", + "args": { + "value": "The value to encode (can be dict, str, bytes, or file-like object).", + "content_type": "The content type; if None, it's inferred from the value type.\n" + }, + "returns": "A tuple of (encoded_value, content_type)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A tuple of (encoded_value, content_type)." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Encode a value for storage in a key-value store record.\n" + } + ] + }, + "flags": {}, + "id": 1621, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "encode_key_value_store_record_value", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to encode (can be dict, str, bytes, or file-like object)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1622, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type; if None, it's inferred from the value type.\n" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1623, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "tuple", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "Any" + }, + { + "type": "reference", + "name": "str" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Check if the given error is retryable.\n\nAll `impit.HTTPError` subclasses are considered retryable because they represent transport-level failures\n(network issues, timeouts, protocol errors, body decoding errors) that are typically transient. HTTP status\ncode errors are handled separately in `_make_request` based on the response status code, not here." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1624, + "module": "_utils", + "name": "is_retryable_error", + "parsedDocstring": { + "text": "Check if the given error is retryable.\n\nAll `impit.HTTPError` subclasses are considered retryable because they represent transport-level failures\n(network issues, timeouts, protocol errors, body decoding errors) that are typically transient. HTTP status\ncode errors are handled separately in `_make_request` based on the response status code, not here." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 106 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Check if the given error is retryable.\n\nAll `impit.HTTPError` subclasses are considered retryable because they represent transport-level failures\n(network issues, timeouts, protocol errors, body decoding errors) that are typically transient. HTTP status\ncode errors are handled separately in `_make_request` based on the response status code, not here." + } + ] + }, + "flags": {}, + "id": 1625, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "is_retryable_error", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1626, + "kind": 32768, + "kindString": "Parameter", + "name": "exc", + "type": { + "name": "Exception", + "type": "reference" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Convert a resource ID to URL-safe format by replacing forward slashes with tildes.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1627, + "module": "_utils", + "name": "to_safe_id", + "parsedDocstring": { + "text": "Convert a resource ID to URL-safe format by replacing forward slashes with tildes.\n", + "args": { + "id": "The resource identifier in format `resource_id` or `username/resource_id`.\n" + }, + "returns": "The resource identifier with `/` characters replaced by `~`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 122 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource identifier with `/` characters replaced by `~`." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Convert a resource ID to URL-safe format by replacing forward slashes with tildes.\n" + } + ] + }, + "flags": {}, + "id": 1628, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "to_safe_id", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The resource identifier in format `resource_id` or `username/resource_id`.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1629, + "kind": 32768, + "kindString": "Parameter", + "name": "id", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Parse the API response as a dictionary and validate its type.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1630, + "module": "_utils", + "name": "response_to_dict", + "parsedDocstring": { + "text": "Parse the API response as a dictionary and validate its type.\n", + "args": { + "response": "The HTTP response object from the API.\n" + }, + "returns": "The parsed response as a dictionary." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 134 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The parsed response as a dictionary." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Parse the API response as a dictionary and validate its type.\n" + } + ] + }, + "flags": {}, + "id": 1631, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "response_to_dict", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP response object from the API.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1632, + "kind": 32768, + "kindString": "Parameter", + "name": "response", + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + } + ], + "type": { + "name": "dict", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Parse the API response as a list and validate its type.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1633, + "module": "_utils", + "name": "response_to_list", + "parsedDocstring": { + "text": "Parse the API response as a list and validate its type.\n", + "args": { + "response": "The HTTP response object from the API.\n" + }, + "returns": "The parsed response as a list." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 154 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The parsed response as a list." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Parse the API response as a list and validate its type.\n" + } + ] + }, + "flags": {}, + "id": 1634, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "response_to_list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP response object from the API.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1635, + "kind": 32768, + "kindString": "Parameter", + "name": "response", + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + } + ], + "type": { + "name": "list", + "type": "reference", + "target": "2003" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Encode an integer to a base62 string.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1636, + "module": "_utils", + "name": "encode_base62", + "parsedDocstring": { + "text": "Encode an integer to a base62 string.\n", + "args": { + "num": "The number to encode.\n" + }, + "returns": "The base62-encoded string." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 177 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The base62-encoded string." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Encode an integer to a base62 string.\n" + } + ] + }, + "flags": {}, + "id": 1637, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "encode_base62", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number to encode.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1638, + "kind": 32768, + "kindString": "Parameter", + "name": "num", + "type": { + "name": "int", + "type": "reference" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate an HMAC-SHA256 signature and encode it using base62.\n\nThe HMAC signature is truncated to 30 characters and then encoded in base62 to reduce the signature length.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1639, + "module": "_utils", + "name": "create_hmac_signature", + "parsedDocstring": { + "text": "Generate an HMAC-SHA256 signature and encode it using base62.\n\nThe HMAC signature is truncated to 30 characters and then encoded in base62 to reduce the signature length.\n", + "args": { + "secret_key": "The secret key used for signing.", + "message": "The message to be signed.\n" + }, + "returns": "The base62-encoded signature." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 199 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The base62-encoded signature." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate an HMAC-SHA256 signature and encode it using base62.\n\nThe HMAC signature is truncated to 30 characters and then encoded in base62 to reduce the signature length.\n" + } + ] + }, + "flags": {}, + "id": 1640, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create_hmac_signature", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The secret key used for signing." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1641, + "kind": 32768, + "kindString": "Parameter", + "name": "secret_key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The message to be signed.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1642, + "kind": 32768, + "kindString": "Parameter", + "name": "message", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a secure signature for a storage resource like a dataset or key-value store.\n\nThis signature is used to generate a signed URL for authenticated access, which can be expiring or permanent.\nThe signature is created using HMAC with the provided secret key and includes the resource ID, expiration time,\nand version.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1643, + "module": "_utils", + "name": "create_storage_content_signature", + "parsedDocstring": { + "text": "Create a secure signature for a storage resource like a dataset or key-value store.\n\nThis signature is used to generate a signed URL for authenticated access, which can be expiring or permanent.\nThe signature is created using HMAC with the provided secret key and includes the resource ID, expiration time,\nand version.\n", + "args": { + "resource_id": "The unique identifier of the storage resource.", + "url_signing_secret_key": "The secret key for signing the URL.", + "expires_in": "Optional expiration duration; if None, the signature never expires.", + "version": "The signature version number (default: 0).\n" + }, + "returns": "The base64url-encoded signature string." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 218 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The base64url-encoded signature string." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a secure signature for a storage resource like a dataset or key-value store.\n\nThis signature is used to generate a signed URL for authenticated access, which can be expiring or permanent.\nThe signature is created using HMAC with the provided secret key and includes the resource ID, expiration time,\nand version.\n" + } + ] + }, + "flags": {}, + "id": 1644, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create_storage_content_signature", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The unique identifier of the storage resource." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1645, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The secret key for signing the URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1646, + "kind": 32768, + "kindString": "Parameter", + "name": "url_signing_secret_key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional expiration duration; if None, the signature never expires." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1647, + "kind": 32768, + "kindString": "Parameter", + "name": "expires_in", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The signature version number (default: 0).\n" + } + ] + }, + "defaultValue": "0", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1648, + "kind": 32768, + "kindString": "Parameter", + "name": "version", + "type": { + "name": "int", + "type": "reference" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn if custom headers override important default headers." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1649, + "module": "_utils", + "name": "check_custom_headers", + "parsedDocstring": { + "text": "Warn if custom headers override important default headers." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_utils.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 248 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn if custom headers override important default headers." + } + ] + }, + "flags": {}, + "id": 1650, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "check_custom_headers", + "parameters": [ + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1651, + "kind": 32768, + "kindString": "Parameter", + "name": "class_name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1652, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class for all Apify API client errors.\n\nAll custom exceptions defined by this package inherit from this class, making it convenient\nto catch any client-related error with a single except clause." + } + ] + }, + "decorations": [ + { + "args": "('Errors')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [], + "id": 1653, + "module": "errors", + "name": "ApifyClientError", + "parsedDocstring": { + "text": "Base class for all Apify API client errors.\n\nAll custom exceptions defined by this package inherit from this class, making it convenient\nto catch any client-related error with a single except clause." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/errors.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 12 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "ApifyApiError", + "target": "1654", + "type": "reference" + }, + { + "name": "InvalidResponseBodyError", + "target": "1660", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the API error from a failed response.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1655, + "module": "errors", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the API error from a failed response.\n", + "args": { + "response": "The failed HTTP response from the Apify API.", + "attempt": "The attempt number when the request failed (1-indexed).", + "method": "The HTTP method of the failed request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/errors.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 38 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the API error from a failed response.\n" + } + ] + }, + "flags": {}, + "id": 1656, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The failed HTTP response from the Apify API." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1657, + "kind": 32768, + "kindString": "Parameter", + "name": "response", + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attempt number when the request failed (1-indexed)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1658, + "kind": 32768, + "kindString": "Parameter", + "name": "attempt", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP method of the failed request." + } + ] + }, + "defaultValue": "'GET'", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1659, + "kind": 32768, + "kindString": "Parameter", + "name": "method", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error raised when the Apify API returns an error response.\n\nThis error is raised when an HTTP request to the Apify API succeeds at the transport level\nbut the server returns an error status code. Rate limit (HTTP 429) and server errors (HTTP 5xx)\nare retried automatically before this error is raised, while client errors (HTTP 4xx) are raised\nimmediately.\n" + } + ] + }, + "decorations": [ + { + "args": "('Errors')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1655 + ], + "title": "Methods" + } + ], + "id": 1654, + "module": "errors", + "name": "ApifyApiError", + "parsedDocstring": { + "text": "Error raised when the Apify API returns an error response.\n\nThis error is raised when an HTTP request to the Apify API succeeds at the transport level\nbut the server returns an error status code. Rate limit (HTTP 429) and server errors (HTTP 5xx)\nare retried automatically before this error is raised, while client errors (HTTP 4xx) are raised\nimmediately.\n" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/errors.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ApifyClientError", + "target": "1653", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the error from an unparsable response.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1661, + "module": "errors", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the error from an unparsable response.\n", + "args": { + "response": "The HTTP response whose body could not be parsed." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/errors.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 85 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the error from an unparsable response.\n" + } + ] + }, + "flags": {}, + "id": 1662, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The HTTP response whose body could not be parsed." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1663, + "kind": 32768, + "kindString": "Parameter", + "name": "response", + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error raised when a response body cannot be parsed.\n\nThis typically occurs when the API returns a partial or malformed JSON response, for example\ndue to a network interruption. The client retries such requests automatically, so this error\nis only raised after all retry attempts have been exhausted." + } + ] + }, + "decorations": [ + { + "args": "('Errors')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1661 + ], + "title": "Methods" + } + ], + "id": 1660, + "module": "errors", + "name": "InvalidResponseBodyError", + "parsedDocstring": { + "text": "Error raised when a response body cannot be parsed.\n\nThis typically occurs when the API returns a partial or malformed JSON response, for example\ndue to a network interruption. The client retries such requests automatically, so this error\nis only raised after all retry attempts have been exhausted." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/errors.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 77 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ApifyClientError", + "target": "1653", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code of the response." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 1665, + "module": "_http_clients._base", + "name": "status_code", + "parsedDocstring": { + "text": "HTTP status code of the response." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 42 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response body decoded as text." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 1666, + "module": "_http_clients._base", + "name": "text", + "parsedDocstring": { + "text": "Response body decoded as text." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 46 + } + ], + "type": { + "name": "str", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raw response body as bytes." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 1667, + "module": "_http_clients._base", + "name": "content", + "parsedDocstring": { + "text": "Raw response body as bytes." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 50 + } + ], + "type": { + "name": "bytes", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Response headers as a mapping." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 1668, + "module": "_http_clients._base", + "name": "headers", + "parsedDocstring": { + "text": "Response headers as a mapping." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 54 + } + ], + "type": { + "name": "Mapping", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Parse response body as JSON." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1669, + "module": "_http_clients._base", + "name": "json", + "parsedDocstring": { + "text": "Parse response body as JSON." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Parse response body as JSON." + } + ] + }, + "flags": {}, + "id": 1670, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "json", + "parameters": [], + "type": { + "name": "Any", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read the entire response body." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1671, + "module": "_http_clients._base", + "name": "read", + "parsedDocstring": { + "text": "Read the entire response body." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 60 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read the entire response body." + } + ] + }, + "flags": {}, + "id": 1672, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "read", + "parameters": [], + "type": { + "name": "bytes", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read the entire response body asynchronously." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1673, + "module": "_http_clients._base", + "name": "aread", + "parsedDocstring": { + "text": "Read the entire response body asynchronously." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 63 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read the entire response body asynchronously." + } + ] + }, + "flags": {}, + "id": 1674, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "aread", + "parameters": [], + "type": { + "name": "bytes", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close the response and release the connection." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1675, + "module": "_http_clients._base", + "name": "close", + "parsedDocstring": { + "text": "Close the response and release the connection." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 66 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close the response and release the connection." + } + ] + }, + "flags": {}, + "id": 1676, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "close", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close the response and release the connection asynchronously." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1677, + "module": "_http_clients._base", + "name": "aclose", + "parsedDocstring": { + "text": "Close the response and release the connection asynchronously." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 69 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close the response and release the connection asynchronously." + } + ] + }, + "flags": {}, + "id": 1678, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "aclose", + "parameters": [], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the response body in bytes chunks." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1679, + "module": "_http_clients._base", + "name": "iter_bytes", + "parsedDocstring": { + "text": "Iterate over the response body in bytes chunks." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the response body in bytes chunks." + } + ] + }, + "flags": {}, + "id": 1680, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "iter_bytes", + "parameters": [], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "bytes" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the response body in bytes chunks asynchronously." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1681, + "module": "_http_clients._base", + "name": "aiter_bytes", + "parsedDocstring": { + "text": "Iterate over the response body in bytes chunks asynchronously." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 75 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the response body in bytes chunks asynchronously." + } + ] + }, + "flags": {}, + "id": 1682, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "aiter_bytes", + "parameters": [], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "bytes" + } + ] + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Protocol for HTTP response objects returned by HTTP clients.\n\nAny object that has the required attributes and methods can be used as an HTTP response\n(e.g., `impit.Response`). This enables custom HTTP client implementations to return\ntheir own response types." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + }, + { + "name": "runtime_checkable" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1677, + 1681, + 1673, + 1675, + 1679, + 1669, + 1671 + ], + "title": "Methods" + }, + { + "children": [ + 1667, + 1668, + 1665, + 1666 + ], + "title": "Properties" + } + ], + "id": 1664, + "module": "_http_clients._base", + "name": "HttpResponse", + "parsedDocstring": { + "text": "Protocol for HTTP response objects returned by HTTP clients.\n\nAny object that has the required attributes and methods can be used as an HTTP response\n(e.g., `impit.Response`). This enables custom HTTP client implementations to return\ntheir own response types." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 33 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1684, + "module": "_http_clients._base", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the HTTP client base.\n", + "args": { + "token": "Apify API token for authentication.", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "max_retries": "Maximum number of retries for failed requests.", + "min_delay_between_retries": "Minimum delay between retries.", + "statistics": "Statistics tracker for API calls. Created automatically if not provided.", + "headers": "Additional HTTP headers to include in all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 91 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "flags": {}, + "id": 1685, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify API token for authentication." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1686, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1687, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1688, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1689, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1690, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of retries for failed requests." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1691, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum delay between retries." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1692, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics tracker for API calls. Created automatically if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1693, + "kind": 32768, + "kindString": "Parameter", + "name": "statistics", + "type": { + "name": "ClientStatistics | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ClientStatistics", + "target": "1497" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1694, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shared configuration and utilities for HTTP clients.\n\nProvides common functionality for both sync and async HTTP clients including:\nheader construction, parameter parsing, request body preparation, URL building,\nand timeout calculation.\n\nSubclasses should call `super().__init__()` to initialize shared configuration.\nThe helper methods are then available for use in the `call()` implementation." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1684 + ], + "title": "Methods" + } + ], + "id": 1683, + "module": "_http_clients._base", + "name": "HttpClientBase", + "parsedDocstring": { + "text": "Shared configuration and utilities for HTTP clients.\n\nProvides common functionality for both sync and async HTTP clients including:\nheader construction, parameter parsing, request body preparation, URL building,\nand timeout calculation.\n\nSubclasses should call `super().__init__()` to initialize shared configuration.\nThe helper methods are then available for use in the `call()` implementation." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 80 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "HttpClient", + "target": "1695", + "type": "reference" + }, + { + "name": "HttpClientAsync", + "target": "1706", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request.\n" + } + ] + }, + "decorations": [ + { + "name": "abstractmethod" + } + ], + "flags": {}, + "groups": [], + "id": 1696, + "module": "_http_clients._base", + "name": "call", + "parsedDocstring": { + "text": "Make an HTTP request.\n", + "args": { + "method": "HTTP method (GET, POST, PUT, DELETE, etc.).", + "url": "Full URL to make the request to.", + "headers": "Additional headers to include in this request.", + "params": "Query parameters to append to the URL.", + "data": "Raw request body data. Cannot be used together with json.", + "json": "JSON-serializable data for the request body. Cannot be used together with data.", + "stream": "Whether to stream the response body.", + "timeout": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + }, + "returns": "The HTTP response object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 250 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The HTTP response object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request.\n" + } + ] + }, + "flags": {}, + "id": 1697, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP method (GET, POST, PUT, DELETE, etc.)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1698, + "kind": 32768, + "kindString": "Parameter", + "name": "method", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Full URL to make the request to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1699, + "kind": 32768, + "kindString": "Parameter", + "name": "url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional headers to include in this request." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1700, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Query parameters to append to the URL." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1701, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raw request body data. Cannot be used together with json." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1702, + "kind": 32768, + "kindString": "Parameter", + "name": "data", + "type": { + "name": "str | bytes | bytearray | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "bytes" + } + ] + }, + { + "type": "reference", + "name": "bytearray" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "JSON-serializable data for the request body. Cannot be used together with data." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1703, + "kind": 32768, + "kindString": "Parameter", + "name": "json", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to stream the response body." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1704, + "kind": 32768, + "kindString": "Parameter", + "name": "stream", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1705, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3700, + "module": "_http_clients._base", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the HTTP client base.\n", + "args": { + "token": "Apify API token for authentication.", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "max_retries": "Maximum number of retries for failed requests.", + "min_delay_between_retries": "Minimum delay between retries.", + "statistics": "Statistics tracker for API calls. Created automatically if not provided.", + "headers": "Additional HTTP headers to include in all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 91 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "flags": {}, + "id": 1685, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify API token for authentication." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1686, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1687, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1688, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1689, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1690, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of retries for failed requests." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1691, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum delay between retries." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1692, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics tracker for API calls. Created automatically if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1693, + "kind": 32768, + "kindString": "Parameter", + "name": "statistics", + "type": { + "name": "ClientStatistics | None", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1694, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "reference" + }, + "inheritedFrom": { + "name": "HttpClientBase.__init__", + "target": 1684, + "type": "reference" + } + } + ], + "inheritedFrom": { + "name": "HttpClientBase.__init__", + "target": 1684, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abstract base class for synchronous HTTP clients used by `ApifyClient`.\n\nExtend this class to create a custom synchronous HTTP client. Override the `call` method\nwith your implementation. Helper methods from the base class are available for request\npreparation, URL building, and parameter parsing." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3700, + 1696 + ], + "title": "Methods" + } + ], + "id": 1695, + "module": "_http_clients._base", + "name": "HttpClient", + "parsedDocstring": { + "text": "Abstract base class for synchronous HTTP clients used by `ApifyClient`.\n\nExtend this class to create a custom synchronous HTTP client. Override the `call` method\nwith your implementation. Helper methods from the base class are available for request\npreparation, URL building, and parameter parsing." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 241 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "HttpClientBase", + "target": "1683", + "type": "reference" + } + ], + "extendedBy": [ + { + "name": "ImpitHttpClient", + "target": "1719", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request.\n" + } + ] + }, + "decorations": [ + { + "name": "abstractmethod" + } + ], + "flags": {}, + "groups": [], + "id": 1707, + "module": "_http_clients._base", + "name": "call", + "parsedDocstring": { + "text": "Make an HTTP request.\n", + "args": { + "method": "HTTP method (GET, POST, PUT, DELETE, etc.).", + "url": "Full URL to make the request to.", + "headers": "Additional headers to include in this request.", + "params": "Query parameters to append to the URL.", + "data": "Raw request body data. Cannot be used together with json.", + "json": "JSON-serializable data for the request body. Cannot be used together with data.", + "stream": "Whether to stream the response body.", + "timeout": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + }, + "returns": "The HTTP response object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 294 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The HTTP response object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request.\n" + } + ] + }, + "flags": {}, + "id": 1708, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP method (GET, POST, PUT, DELETE, etc.)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1709, + "kind": 32768, + "kindString": "Parameter", + "name": "method", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Full URL to make the request to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1710, + "kind": 32768, + "kindString": "Parameter", + "name": "url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional headers to include in this request." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1711, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Query parameters to append to the URL." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1712, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raw request body data. Cannot be used together with json." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1713, + "kind": 32768, + "kindString": "Parameter", + "name": "data", + "type": { + "name": "str | bytes | bytearray | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "bytes" + } + ] + }, + { + "type": "reference", + "name": "bytearray" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "JSON-serializable data for the request body. Cannot be used together with data." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1714, + "kind": 32768, + "kindString": "Parameter", + "name": "json", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to stream the response body." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1715, + "kind": 32768, + "kindString": "Parameter", + "name": "stream", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1716, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3701, + "module": "_http_clients._base", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the HTTP client base.\n", + "args": { + "token": "Apify API token for authentication.", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "max_retries": "Maximum number of retries for failed requests.", + "min_delay_between_retries": "Minimum delay between retries.", + "statistics": "Statistics tracker for API calls. Created automatically if not provided.", + "headers": "Additional HTTP headers to include in all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 91 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the HTTP client base.\n" + } + ] + }, + "flags": {}, + "id": 1685, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify API token for authentication." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1686, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1687, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1688, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1689, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1690, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of retries for failed requests." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1691, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum delay between retries." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1692, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics tracker for API calls. Created automatically if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1693, + "kind": 32768, + "kindString": "Parameter", + "name": "statistics", + "type": { + "name": "ClientStatistics | None", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1694, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "reference" + }, + "inheritedFrom": { + "name": "HttpClientBase.__init__", + "target": 1684, + "type": "reference" + } + } + ], + "inheritedFrom": { + "name": "HttpClientBase.__init__", + "target": 1684, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abstract base class for asynchronous HTTP clients used by `ApifyClientAsync`.\n\nExtend this class to create a custom asynchronous HTTP client. See `HttpClient`\nfor details on the expected behavior." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3701, + 1707 + ], + "title": "Methods" + } + ], + "id": 1706, + "module": "_http_clients._base", + "name": "HttpClientAsync", + "parsedDocstring": { + "text": "Abstract base class for asynchronous HTTP clients used by `ApifyClientAsync`.\n\nExtend this class to create a custom asynchronous HTTP client. See `HttpClient`\nfor details on the expected behavior." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_base.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 286 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "HttpClientBase", + "target": "1683", + "type": "reference" + } + ], + "extendedBy": [ + { + "name": "ImpitHttpClientAsync", + "target": "1741", + "type": "reference" + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1717, + "module": "_http_clients._impit", + "name": "T", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 1718, + "module": "_http_clients._impit", + "name": "logger", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Impit-based synchronous HTTP client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1720, + "module": "_http_clients._impit", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the Impit-based synchronous HTTP client.\n", + "args": { + "token": "Apify API token for authentication.", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "max_retries": "Maximum number of retry attempts for failed requests.", + "min_delay_between_retries": "Minimum delay between retries (increases exponentially with each attempt).", + "statistics": "Statistics tracker for API calls. Created automatically if not provided.", + "headers": "Additional HTTP headers to include in all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 64 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Impit-based synchronous HTTP client.\n" + } + ] + }, + "flags": {}, + "id": 1721, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify API token for authentication." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1722, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1723, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1724, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1725, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1726, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of retry attempts for failed requests." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1727, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum delay between retries (increases exponentially with each attempt)." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1728, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics tracker for API calls. Created automatically if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1729, + "kind": 32768, + "kindString": "Parameter", + "name": "statistics", + "type": { + "name": "ClientStatistics | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ClientStatistics", + "target": "1497" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1730, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "HttpClient.__init__", + "target": 3700, + "type": "reference" + } + } + ], + "overwrites": { + "name": "HttpClient.__init__", + "target": 3700, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request with automatic retry and exponential backoff.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1731, + "module": "_http_clients._impit", + "name": "call", + "parsedDocstring": { + "text": "Make an HTTP request with automatic retry and exponential backoff.\n", + "args": { + "method": "HTTP method (GET, POST, PUT, DELETE, etc.).", + "url": "Full URL to make the request to.", + "headers": "Additional headers to include.", + "params": "Query parameters to append to the URL.", + "data": "Raw request body data. Cannot be used together with json.", + "json": "JSON-serializable data for the request body. Cannot be used together with data.", + "stream": "Whether to stream the response body.", + "timeout": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + }, + "returns": "The HTTP response object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 107 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The HTTP response object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request with automatic retry and exponential backoff.\n" + } + ] + }, + "flags": {}, + "id": 1732, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP method (GET, POST, PUT, DELETE, etc.)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1733, + "kind": 32768, + "kindString": "Parameter", + "name": "method", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Full URL to make the request to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1734, + "kind": 32768, + "kindString": "Parameter", + "name": "url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional headers to include." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1735, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Query parameters to append to the URL." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1736, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raw request body data. Cannot be used together with json." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1737, + "kind": 32768, + "kindString": "Parameter", + "name": "data", + "type": { + "name": "str | bytes | bytearray | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "bytes" + } + ] + }, + { + "type": "reference", + "name": "bytearray" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "JSON-serializable data for the request body. Cannot be used together with data." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1738, + "kind": 32768, + "kindString": "Parameter", + "name": "json", + "type": { + "name": "JsonSerializable | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "JsonSerializable", + "target": "1583" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to stream the response body." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1739, + "kind": 32768, + "kindString": "Parameter", + "name": "stream", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1740, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + }, + "overwrites": { + "name": "HttpClient.call", + "target": 1696, + "type": "reference" + } + } + ], + "overwrites": { + "name": "HttpClient.call", + "target": 1696, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Synchronous HTTP client for the Apify API built on top of [Impit](https://github.com/apify/impit).\n\nImpit is a high-performance HTTP client written in Rust that provides browser-like TLS fingerprints,\nautomatic header ordering, and HTTP/2 support. This client wraps `impit.Client` and adds automatic retries\nwith exponential backoff for rate-limited (HTTP 429) and server error (HTTP 5xx) responses." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1720, + 1731 + ], + "title": "Methods" + } + ], + "id": 1719, + "module": "_http_clients._impit", + "name": "ImpitHttpClient", + "parsedDocstring": { + "text": "Synchronous HTTP client for the Apify API built on top of [Impit](https://github.com/apify/impit).\n\nImpit is a high-performance HTTP client written in Rust that provides browser-like TLS fingerprints,\nautomatic header ordering, and HTTP/2 support. This client wraps `impit.Client` and adds automatic retries\nwith exponential backoff for rate-limited (HTTP 429) and server error (HTTP 5xx) responses." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 56 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "HttpClient", + "target": "1695", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Impit-based asynchronous HTTP client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1742, + "module": "_http_clients._impit", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the Impit-based asynchronous HTTP client.\n", + "args": { + "token": "Apify API token for authentication.", + "timeout_short": "Default timeout for short-duration API operations (simple CRUD operations, ...).", + "timeout_medium": "Default timeout for medium-duration API operations (batch operations, listing, ...).", + "timeout_long": "Default timeout for long-duration API operations (long-polling, streaming, ...).", + "timeout_max": "Maximum timeout cap for exponential timeout growth across retries.", + "max_retries": "Maximum number of retry attempts for failed requests.", + "min_delay_between_retries": "Minimum delay between retries (increases exponentially with each attempt).", + "statistics": "Statistics tracker for API calls. Created automatically if not provided.", + "headers": "Additional HTTP headers to include in all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the Impit-based asynchronous HTTP client.\n" + } + ] + }, + "flags": {}, + "id": 1743, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Apify API token for authentication." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1744, + "kind": 32768, + "kindString": "Parameter", + "name": "token", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for short-duration API operations (simple CRUD operations, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_SHORT", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1745, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_short", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for medium-duration API operations (batch operations, listing, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MEDIUM", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1746, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_medium", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for long-duration API operations (long-polling, streaming, ...)." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_LONG", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1747, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_long", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum timeout cap for exponential timeout growth across retries." + } + ] + }, + "defaultValue": "DEFAULT_TIMEOUT_MAX", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1748, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout_max", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of retry attempts for failed requests." + } + ] + }, + "defaultValue": "DEFAULT_MAX_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1749, + "kind": 32768, + "kindString": "Parameter", + "name": "max_retries", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Minimum delay between retries (increases exponentially with each attempt)." + } + ] + }, + "defaultValue": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1750, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_retries", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Statistics tracker for API calls. Created automatically if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1751, + "kind": 32768, + "kindString": "Parameter", + "name": "statistics", + "type": { + "name": "ClientStatistics | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ClientStatistics", + "target": "1497" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional HTTP headers to include in all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1752, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "HttpClientAsync.__init__", + "target": 3701, + "type": "reference" + } + } + ], + "overwrites": { + "name": "HttpClientAsync.__init__", + "target": 3701, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request with automatic retry and exponential backoff.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1753, + "module": "_http_clients._impit", + "name": "call", + "parsedDocstring": { + "text": "Make an HTTP request with automatic retry and exponential backoff.\n", + "args": { + "method": "HTTP method (GET, POST, PUT, DELETE, etc.).", + "url": "Full URL to make the request to.", + "headers": "Additional headers to include.", + "params": "Query parameters to append to the URL.", + "data": "Raw request body data. Cannot be used together with json.", + "json": "JSON-serializable data for the request body. Cannot be used together with data.", + "stream": "Whether to stream the response body.", + "timeout": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + }, + "returns": "The HTTP response object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 349 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The HTTP response object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Make an HTTP request with automatic retry and exponential backoff.\n" + } + ] + }, + "flags": {}, + "id": 1754, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP method (GET, POST, PUT, DELETE, etc.)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1755, + "kind": 32768, + "kindString": "Parameter", + "name": "method", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Full URL to make the request to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1756, + "kind": 32768, + "kindString": "Parameter", + "name": "url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Additional headers to include." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1757, + "kind": 32768, + "kindString": "Parameter", + "name": "headers", + "type": { + "name": "dict[str, str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Query parameters to append to the URL." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1758, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict[str, Any] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raw request body data. Cannot be used together with json." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1759, + "kind": 32768, + "kindString": "Parameter", + "name": "data", + "type": { + "name": "str | bytes | bytearray | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "bytes" + } + ] + }, + { + "type": "reference", + "name": "bytearray" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "JSON-serializable data for the request body. Cannot be used together with data." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1760, + "kind": 32768, + "kindString": "Parameter", + "name": "json", + "type": { + "name": "JsonSerializable | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "JsonSerializable", + "target": "1583" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to stream the response body." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1761, + "kind": 32768, + "kindString": "Parameter", + "name": "stream", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request. Use `short`, `medium`, or `long` tier literals for\npreconfigured timeouts. A `timedelta` overrides it for this call, and `no_timeout` disables\nthe timeout entirely.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1762, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "HttpResponse", + "type": "reference", + "target": "1664" + }, + "overwrites": { + "name": "HttpClientAsync.call", + "target": 1707, + "type": "reference" + } + } + ], + "overwrites": { + "name": "HttpClientAsync.call", + "target": 1707, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Asynchronous HTTP client for the Apify API built on top of [Impit](https://github.com/apify/impit).\n\nImpit is a high-performance HTTP client written in Rust that provides browser-like TLS fingerprints,\nautomatic header ordering, and HTTP/2 support. This client wraps `impit.AsyncClient` and adds automatic retries\nwith exponential backoff for rate-limited (HTTP 429) and server error (HTTP 5xx) responses." + } + ] + }, + "decorations": [ + { + "args": "('HTTP clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1742, + 1753 + ], + "title": "Methods" + } + ], + "id": 1741, + "module": "_http_clients._impit", + "name": "ImpitHttpClientAsync", + "parsedDocstring": { + "text": "Asynchronous HTTP client for the Apify API built on top of [Impit](https://github.com/apify/impit).\n\nImpit is a high-performance HTTP client written in Rust that provides browser-like TLS fingerprints,\nautomatic header ordering, and HTTP/2 support. This client wraps `impit.AsyncClient` and adds automatic retries\nwith exponential backoff for rate-limited (HTTP 429) and server error (HTTP 5xx) responses." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_http_clients/_impit.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 298 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "HttpClientAsync", + "target": "1706", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1764, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1765, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1766, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1767, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1768, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1769, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1770, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1771, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1772, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 1773, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class with shared implementation for sync and async resource clients.\n\nProvides URL building, parameter handling, and client creation utilities." + } + ] + }, + "flags": {}, + "groups": [ + { + "children": [ + 1764 + ], + "title": "Methods" + }, + { + "children": [ + 1773 + ], + "title": "Properties" + } + ], + "id": 1763, + "module": "_resource_clients._resource_client", + "name": "ResourceClientBase", + "parsedDocstring": { + "text": "Base class with shared implementation for sync and async resource clients.\n\nProvides URL building, parameter handling, and client creation utilities." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 22 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedBy": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + }, + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1775, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 164 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientBase.__init__", + "target": 1764, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3644, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class for synchronous resource clients." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1775 + ], + "title": "Methods" + }, + { + "children": [ + 3644 + ], + "title": "Properties" + } + ], + "id": 1774, + "module": "_resource_clients._resource_client", + "name": "ResourceClient", + "parsedDocstring": { + "text": "Base class for synchronous resource clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 161 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientBase", + "target": "1763", + "type": "reference" + } + ], + "extendedBy": [ + { + "name": "ActorClient", + "target": "1794", + "type": "reference" + }, + { + "name": "ActorCollectionClient", + "target": "1998", + "type": "reference" + }, + { + "name": "ActorEnvVarClient", + "target": "2074", + "type": "reference" + }, + { + "name": "ActorEnvVarCollectionClient", + "target": "2110", + "type": "reference" + }, + { + "name": "ActorVersionClient", + "target": "2138", + "type": "reference" + }, + { + "name": "ActorVersionCollectionClient", + "target": "2194", + "type": "reference" + }, + { + "name": "BuildClient", + "target": "2234", + "type": "reference" + }, + { + "name": "BuildCollectionClient", + "target": "2282", + "type": "reference" + }, + { + "name": "DatasetClient", + "target": "2311", + "type": "reference" + }, + { + "name": "DatasetCollectionClient", + "target": "2543", + "type": "reference" + }, + { + "name": "KeyValueStoreClient", + "target": "2577", + "type": "reference" + }, + { + "name": "KeyValueStoreCollectionClient", + "target": "2723", + "type": "reference" + }, + { + "name": "LogClient", + "target": "2757", + "type": "reference" + }, + { + "name": "RequestQueueClient", + "target": "2792", + "type": "reference" + }, + { + "name": "RequestQueueCollectionClient", + "target": "2944", + "type": "reference" + }, + { + "name": "RunClient", + "target": "2976", + "type": "reference" + }, + { + "name": "RunCollectionClient", + "target": "3114", + "type": "reference" + }, + { + "name": "ScheduleClient", + "target": "3142", + "type": "reference" + }, + { + "name": "ScheduleCollectionClient", + "target": "3194", + "type": "reference" + }, + { + "name": "StoreCollectionClient", + "target": "3238", + "type": "reference" + }, + { + "name": "TaskClient", + "target": "3268", + "type": "reference" + }, + { + "name": "TaskCollectionClient", + "target": "3398", + "type": "reference" + }, + { + "name": "UserClient", + "target": "3454", + "type": "reference" + }, + { + "name": "WebhookClient", + "target": "3494", + "type": "reference" + }, + { + "name": "WebhookCollectionClient", + "target": "3554", + "type": "reference" + }, + { + "name": "WebhookDispatchClient", + "target": "3604", + "type": "reference" + }, + { + "name": "WebhookDispatchCollectionClient", + "target": "3622", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1785, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 344 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientBase.__init__", + "target": 1764, + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3645, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Base class for asynchronous resource clients." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1785 + ], + "title": "Methods" + }, + { + "children": [ + 3645 + ], + "title": "Properties" + } + ], + "id": 1784, + "module": "_resource_clients._resource_client", + "name": "ResourceClientAsync", + "parsedDocstring": { + "text": "Base class for asynchronous resource clients." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 341 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientBase", + "target": "1763", + "type": "reference" + } + ], + "extendedBy": [ + { + "name": "ActorClientAsync", + "target": "1896", + "type": "reference" + }, + { + "name": "ActorCollectionClientAsync", + "target": "2036", + "type": "reference" + }, + { + "name": "ActorEnvVarClientAsync", + "target": "2092", + "type": "reference" + }, + { + "name": "ActorEnvVarCollectionClientAsync", + "target": "2124", + "type": "reference" + }, + { + "name": "ActorVersionClientAsync", + "target": "2166", + "type": "reference" + }, + { + "name": "ActorVersionCollectionClientAsync", + "target": "2214", + "type": "reference" + }, + { + "name": "BuildClientAsync", + "target": "2258", + "type": "reference" + }, + { + "name": "BuildCollectionClientAsync", + "target": "2293", + "type": "reference" + }, + { + "name": "DatasetClientAsync", + "target": "2437", + "type": "reference" + }, + { + "name": "DatasetCollectionClientAsync", + "target": "2560", + "type": "reference" + }, + { + "name": "KeyValueStoreClientAsync", + "target": "2650", + "type": "reference" + }, + { + "name": "KeyValueStoreCollectionClientAsync", + "target": "2740", + "type": "reference" + }, + { + "name": "LogClientAsync", + "target": "2774", + "type": "reference" + }, + { + "name": "RequestQueueClientAsync", + "target": "2868", + "type": "reference" + }, + { + "name": "RequestQueueCollectionClientAsync", + "target": "2960", + "type": "reference" + }, + { + "name": "RunClientAsync", + "target": "3045", + "type": "reference" + }, + { + "name": "RunCollectionClientAsync", + "target": "3128", + "type": "reference" + }, + { + "name": "ScheduleClientAsync", + "target": "3168", + "type": "reference" + }, + { + "name": "ScheduleCollectionClientAsync", + "target": "3216", + "type": "reference" + }, + { + "name": "StoreCollectionClientAsync", + "target": "3253", + "type": "reference" + }, + { + "name": "TaskClientAsync", + "target": "3333", + "type": "reference" + }, + { + "name": "TaskCollectionClientAsync", + "target": "3426", + "type": "reference" + }, + { + "name": "UserClientAsync", + "target": "3474", + "type": "reference" + }, + { + "name": "WebhookClientAsync", + "target": "3524", + "type": "reference" + }, + { + "name": "WebhookCollectionClientAsync", + "target": "3579", + "type": "reference" + }, + { + "name": "WebhookDispatchClientAsync", + "target": "3613", + "type": "reference" + }, + { + "name": "WebhookDispatchCollectionClientAsync", + "target": "3633", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1795, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1800, + "module": "_resource_clients.actor", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 85 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n" + } + ] + }, + "flags": {}, + "id": 1801, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1802, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Actor", + "target": "418" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1803, + "module": "_resource_clients.actor", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n", + "args": { + "name": "The name of the Actor.", + "title": "The title of the Actor (human-readable).", + "description": "The description for the Actor.", + "seo_title": "The title of the Actor optimized for search engines.", + "seo_description": "The description of the Actor optimized for search engines.", + "versions": "The list of Actor versions.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "is_public": "Whether the Actor is public.", + "is_deprecated": "Whether the Actor is deprecated.", + "categories": "The categories to which the Actor belongs to.", + "default_run_build": "Tag or number of the build that you want to run by default.", + "default_run_max_items": "Default limit of the number of results that will be returned\nby runs of this Actor, if the Actor is charged per result.", + "default_run_memory_mbytes": "Default amount of memory allocated for the runs of this Actor, in megabytes.", + "default_run_timeout": "Default timeout for the runs of this Actor.", + "example_run_input_body": "Input to be prefilled as default input to new users of this Actor.", + "example_run_input_content_type": "The content type of the example run input.", + "actor_standby_is_enabled": "Whether the Actor Standby is enabled.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "pricing_infos": "A list of objects that describes the pricing of the Actor.", + "actor_permission_level": "The permission level of the Actor on Apify platform.", + "tagged_builds": "A dictionary mapping build tag names to their settings. Use it to create, update,\nor remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,\nset its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 101 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n" + } + ] + }, + "flags": {}, + "id": 1804, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1805, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor (human-readable)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1806, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1807, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1808, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1809, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of Actor versions." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1810, + "kind": 32768, + "kindString": "Parameter", + "name": "versions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1811, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is public." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1812, + "kind": 32768, + "kindString": "Parameter", + "name": "is_public", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is deprecated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1813, + "kind": 32768, + "kindString": "Parameter", + "name": "is_deprecated", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The categories to which the Actor belongs to." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1814, + "kind": 32768, + "kindString": "Parameter", + "name": "categories", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag or number of the build that you want to run by default." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1815, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default limit of the number of results that will be returned\nby runs of this Actor, if the Actor is charged per result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1816, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default amount of memory allocated for the runs of this Actor, in megabytes." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1817, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for the runs of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1818, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input to be prefilled as default input to new users of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1819, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_body", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the example run input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1820, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor Standby is enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1821, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1822, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1823, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1824, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1825, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1826, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of objects that describes the pricing of the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1827, + "kind": 32768, + "kindString": "Parameter", + "name": "pricing_infos", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The permission level of the Actor on Apify platform." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1828, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A dictionary mapping build tag names to their settings. Use it to create, update,\nor remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,\nset its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1829, + "kind": 32768, + "kindString": "Parameter", + "name": "tagged_builds", + "type": { + "name": "dict[str, None | dict[str, str]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + } + ] + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1830, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor", + "type": "reference", + "target": "418" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1831, + "module": "_resource_clients.actor", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 209 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n" + } + ] + }, + "flags": {}, + "id": 1832, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1833, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1834, + "module": "_resource_clients.actor", + "name": "start", + "parsedDocstring": { + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n", + "args": { + "run_input": "The input to pass to the Actor run.", + "content_type": "The content type of the input.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "max_total_charge_usd": "A limit on the total charged amount for pay-per-event Actors.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor.", + "force_permission_level": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings.", + "wait_for_finish": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60.", + "webhooks": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 219 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "flags": {}, + "id": 1835, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1836, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1837, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1838, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1839, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A limit on the total charged amount for pay-per-event Actors." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1840, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1841, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1842, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1843, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1844, + "kind": 32768, + "kindString": "Parameter", + "name": "force_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1845, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1846, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1847, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1848, + "module": "_resource_clients.actor", + "name": "call", + "parsedDocstring": { + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n", + "args": { + "run_input": "The input to pass to the Actor run.", + "content_type": "The content type of the input.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "max_total_charge_usd": "A limit on the total charged amount for pay-per-event Actors.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor.", + "force_permission_level": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings.", + "webhooks": "Optional webhooks (https://docs.apify.com/webhooks) associated with the Actor run, which can\nbe used to receive a notification, e.g. when the Actor finished or failed. If you already have\na webhook set up for the Actor, you do not have to add it again here.", + "wait_duration": "The maximum time the server waits for the run to finish. If not provided,\nwaits indefinitely.", + "logger": "Logger used to redirect logs from the Actor run. Using \"default\" literal means that a predefined\ndefault logger will be used. Setting `None` will disable any log propagation. Passing custom logger\nwill redirect logs to the provided logger. The logger is also used to capture status and status message\nof the other Actor run.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 295 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "flags": {}, + "id": 1849, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1850, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1851, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1852, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1853, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A limit on the total charged amount for pay-per-event Actors." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1854, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1855, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1856, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1857, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional webhooks (https://docs.apify.com/webhooks) associated with the Actor run, which can\nbe used to receive a notification, e.g. when the Actor finished or failed. If you already have\na webhook set up for the Actor, you do not have to add it again here." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1858, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1859, + "kind": 32768, + "kindString": "Parameter", + "name": "force_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum time the server waits for the run to finish. If not provided,\nwaits indefinitely." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1860, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Logger used to redirect logs from the Actor run. Using \"default\" literal means that a predefined\ndefault logger will be used. Setting `None` will disable any log propagation. Passing custom logger\nwill redirect logs to the provided logger. The logger is also used to capture status and status message\nof the other Actor run." + } + ] + }, + "defaultValue": "'default'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1861, + "kind": 32768, + "kindString": "Parameter", + "name": "logger", + "type": { + "name": "Logger | None | Literal['default']", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "Logger" + }, + { + "type": "literal", + "value": null + } + ] + }, + { + "type": "reference", + "name": "Literal", + "typeArguments": [ + { + "type": "literal", + "value": "default" + } + ] + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1862, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1863, + "module": "_resource_clients.actor", + "name": "build", + "parsedDocstring": { + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n", + "args": { + "version_number": "Actor version number to be built.", + "beta_packages": "If True, then the Actor is built with beta versions of Apify NPM packages. By default,\nthe build uses latest stable packages.", + "tag": "Tag to be applied to the build on success. By default, the tag is taken from the Actor version's\nbuild tag property.", + "use_cache": "If true, the Actor's Docker container will be rebuilt using layer cache\n(https://docs.docker.com/develop/develop-images/dockerfile_best-practices/`leverage`-build-cache).\nThis is to enable quick rebuild during development. By default, the cache is not used.", + "wait_for_finish": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The build object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 378 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The build object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n" + } + ] + }, + "flags": {}, + "id": 1864, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor version number to be built." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1865, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then the Actor is built with beta versions of Apify NPM packages. By default,\nthe build uses latest stable packages." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1866, + "kind": 32768, + "kindString": "Parameter", + "name": "beta_packages", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag to be applied to the build on success. By default, the tag is taken from the Actor version's\nbuild tag property." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1867, + "kind": 32768, + "kindString": "Parameter", + "name": "tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor's Docker container will be rebuilt using layer cache\n(https://docs.docker.com/develop/develop-images/dockerfile_best-practices/`leverage`-build-cache).\nThis is to enable quick rebuild during development. By default, the cache is not used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1868, + "kind": 32768, + "kindString": "Parameter", + "name": "use_cache", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1869, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1870, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build", + "type": "reference", + "target": "619" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the builds of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1871, + "module": "_resource_clients.actor", + "name": "builds", + "parsedDocstring": { + "text": "Retrieve a client for the builds of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 426 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the builds of this Actor." + } + ] + }, + "flags": {}, + "id": 1872, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "builds", + "parameters": [], + "type": { + "name": "BuildCollectionClient", + "type": "reference", + "target": "2282" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1873, + "module": "_resource_clients.actor", + "name": "runs", + "parsedDocstring": { + "text": "Retrieve a client for the runs of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 433 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this Actor." + } + ] + }, + "flags": {}, + "id": 1874, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClient", + "type": "reference", + "target": "3114" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1875, + "module": "_resource_clients.actor", + "name": "default_build", + "parsedDocstring": { + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n", + "args": { + "wait_for_finish": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The resource client for the default build of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 440 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the default build of this Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n" + } + ] + }, + "flags": {}, + "id": 1876, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "default_build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1877, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1878, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BuildClient", + "type": "reference", + "target": "2234" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1879, + "module": "_resource_clients.actor", + "name": "last_run", + "parsedDocstring": { + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n", + "args": { + "status": "Consider only runs with this status.", + "origin": "Consider only runs started with this origin.\n" + }, + "returns": "The resource client for the last run of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 478 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the last run of this Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "flags": {}, + "id": 1880, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "last_run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs with this status." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1881, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs started with this origin.\n" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1882, + "kind": 32768, + "kindString": "Parameter", + "name": "origin", + "type": { + "name": "RunOrigin | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunOrigin", + "target": "555" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RunClient", + "type": "reference", + "target": "2976" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the versions of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1883, + "module": "_resource_clients.actor", + "name": "versions", + "parsedDocstring": { + "text": "Retrieve a client for the versions of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 505 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the versions of this Actor." + } + ] + }, + "flags": {}, + "id": 1884, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "versions", + "parameters": [], + "type": { + "name": "ActorVersionCollectionClient", + "type": "reference", + "target": "2194" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified version of this Actor.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1885, + "module": "_resource_clients.actor", + "name": "version", + "parsedDocstring": { + "text": "Retrieve the client for the specified version of this Actor.\n", + "args": { + "version_number": "The version number for which to retrieve the resource client.\n" + }, + "returns": "The resource client for the specified Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 509 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the specified Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified version of this Actor.\n" + } + ] + }, + "flags": {}, + "id": 1886, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "version", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The version number for which to retrieve the resource client.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1887, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorVersionClient", + "type": "reference", + "target": "2138" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1888, + "module": "_resource_clients.actor", + "name": "webhooks", + "parsedDocstring": { + "text": "Retrieve a client for webhooks associated with this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 523 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this Actor." + } + ] + }, + "flags": {}, + "id": 1889, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClient", + "type": "reference", + "target": "3554" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Validate an input for the Actor that defines an input schema.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1890, + "module": "_resource_clients.actor", + "name": "validate_input", + "parsedDocstring": { + "text": "Validate an input for the Actor that defines an input schema.\n", + "args": { + "run_input": "The input to validate.", + "build_tag": "The Actor's build tag.", + "content_type": "The content type of the input.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "True if the input is valid, else raise an exception with validation error details." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 527 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "True if the input is valid, else raise an exception with validation error details." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Validate an input for the Actor that defines an input schema.\n" + } + ] + }, + "flags": {}, + "id": 1891, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "validate_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to validate." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1892, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Actor's build tag." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1893, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1894, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1895, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3673, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor.\n\nProvides methods to manage a specific Actor, e.g. update it, delete it, build it, or start runs. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1795, + 1863, + 1871, + 1848, + 1875, + 1831, + 1800, + 1879, + 1873, + 1834, + 1803, + 1890, + 1885, + 1883, + 1888 + ], + "title": "Methods" + }, + { + "children": [ + 3673 + ], + "title": "Properties" + } + ], + "id": 1794, + "module": "_resource_clients.actor", + "name": "ActorClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor.\n\nProvides methods to manage a specific Actor, e.g. update it, delete it, build it, or start runs. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 65 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1897, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 568 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1902, + "module": "_resource_clients.actor", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 581 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor\n" + } + ] + }, + "flags": {}, + "id": 1903, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1904, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Actor", + "target": "418" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1905, + "module": "_resource_clients.actor", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n", + "args": { + "name": "The name of the Actor.", + "title": "The title of the Actor (human-readable).", + "description": "The description for the Actor.", + "seo_title": "The title of the Actor optimized for search engines.", + "seo_description": "The description of the Actor optimized for search engines.", + "versions": "The list of Actor versions.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "is_public": "Whether the Actor is public.", + "is_deprecated": "Whether the Actor is deprecated.", + "categories": "The categories to which the Actor belongs to.", + "default_run_build": "Tag or number of the build that you want to run by default.", + "default_run_max_items": "Default limit of the number of results that will be returned\nby runs of this Actor, if the Actor is charged per result.", + "default_run_memory_mbytes": "Default amount of memory allocated for the runs of this Actor, in megabytes.", + "default_run_timeout": "Default timeout for the runs of this Actor.", + "example_run_input_body": "Input to be prefilled as default input to new users of this Actor.", + "example_run_input_content_type": "The content type of the example run input.", + "actor_standby_is_enabled": "Whether the Actor Standby is enabled.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "pricing_infos": "A list of objects that describes the pricing of the Actor.", + "actor_permission_level": "The permission level of the Actor on Apify platform.", + "tagged_builds": "A dictionary mapping build tag names to their settings. Use it to create, update,\nor remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,\nset its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 597 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/update-actor\n" + } + ] + }, + "flags": {}, + "id": 1906, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1907, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor (human-readable)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1908, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1909, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1910, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1911, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of Actor versions." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1912, + "kind": 32768, + "kindString": "Parameter", + "name": "versions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1913, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is public." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1914, + "kind": 32768, + "kindString": "Parameter", + "name": "is_public", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is deprecated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1915, + "kind": 32768, + "kindString": "Parameter", + "name": "is_deprecated", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The categories to which the Actor belongs to." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1916, + "kind": 32768, + "kindString": "Parameter", + "name": "categories", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag or number of the build that you want to run by default." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1917, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default limit of the number of results that will be returned\nby runs of this Actor, if the Actor is charged per result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1918, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default amount of memory allocated for the runs of this Actor, in megabytes." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1919, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for the runs of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1920, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input to be prefilled as default input to new users of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1921, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_body", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the example run input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1922, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor Standby is enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1923, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1924, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1925, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1926, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1927, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1928, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of objects that describes the pricing of the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1929, + "kind": 32768, + "kindString": "Parameter", + "name": "pricing_infos", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The permission level of the Actor on Apify platform." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1930, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A dictionary mapping build tag names to their settings. Use it to create, update,\nor remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,\nset its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1931, + "kind": 32768, + "kindString": "Parameter", + "name": "tagged_builds", + "type": { + "name": "dict[str, None | dict[str, str]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "str" + } + ] + } + ] + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1932, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor", + "type": "reference", + "target": "418" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1933, + "module": "_resource_clients.actor", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 705 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor\n" + } + ] + }, + "flags": {}, + "id": 1934, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1935, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1936, + "module": "_resource_clients.actor", + "name": "start", + "parsedDocstring": { + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n", + "args": { + "run_input": "The input to pass to the Actor run.", + "content_type": "The content type of the input.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "max_total_charge_usd": "A limit on the total charged amount for pay-per-event Actors.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor.", + "force_permission_level": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings.", + "wait_for_finish": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60.", + "webhooks": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 715 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the Actor and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "flags": {}, + "id": 1937, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "start", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1938, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1939, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1940, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1941, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A limit on the total charged amount for pay-per-event Actors." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1942, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1943, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1944, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1945, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1946, + "kind": 32768, + "kindString": "Parameter", + "name": "force_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1947, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1948, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1949, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1950, + "module": "_resource_clients.actor", + "name": "call", + "parsedDocstring": { + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n", + "args": { + "run_input": "The input to pass to the Actor run.", + "content_type": "The content type of the input.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "max_total_charge_usd": "A limit on the total charged amount for pay-per-event Actors.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor.", + "force_permission_level": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings.", + "webhooks": "Optional webhooks (https://docs.apify.com/webhooks) associated with the Actor run, which can\nbe used to receive a notification, e.g. when the Actor finished or failed. If you already have\na webhook set up for the Actor, you do not have to add it again here.", + "wait_duration": "The maximum time the server waits for the run to finish. If not provided,\nwaits indefinitely.", + "logger": "Logger used to redirect logs from the Actor run. Using \"default\" literal means that a predefined\ndefault logger will be used. Setting `None` will disable any log propagation. Passing custom logger\nwill redirect logs to the provided logger. The logger is also used to capture status and status message\nof the other Actor run.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 791 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the Actor and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/run-actor\n" + } + ] + }, + "flags": {}, + "id": 1951, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1952, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1953, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the default run configuration for the Actor (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1954, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1955, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A limit on the total charged amount for pay-per-event Actors." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1956, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1957, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit\nspecified in the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1958, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the default run configuration for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1959, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional webhooks (https://docs.apify.com/webhooks) associated with the Actor run, which can\nbe used to receive a notification, e.g. when the Actor finished or failed. If you already have\na webhook set up for the Actor, you do not have to add it again here." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1960, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the Actor's permissions for this run. If not set, the Actor will run\nwith permissions configured in the Actor settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1961, + "kind": 32768, + "kindString": "Parameter", + "name": "force_permission_level", + "type": { + "name": "ActorPermissionLevel | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorPermissionLevel", + "target": "372" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum time the server waits for the run to finish. If not provided,\nwaits indefinitely." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1962, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Logger used to redirect logs from the Actor run. Using \"default\" literal means that a predefined\ndefault logger will be used. Setting `None` will disable any log propagation. Passing custom logger\nwill redirect logs to the provided logger. The logger is also used to capture status and status message\nof the other Actor run." + } + ] + }, + "defaultValue": "'default'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1963, + "kind": 32768, + "kindString": "Parameter", + "name": "logger", + "type": { + "name": "Logger | None | Literal['default']", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "Logger" + }, + { + "type": "literal", + "value": null + } + ] + }, + { + "type": "reference", + "name": "Literal", + "typeArguments": [ + { + "type": "literal", + "value": "default" + } + ] + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1964, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1965, + "module": "_resource_clients.actor", + "name": "build", + "parsedDocstring": { + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n", + "args": { + "version_number": "Actor version number to be built.", + "beta_packages": "If True, then the Actor is built with beta versions of Apify NPM packages. By default,\nthe build uses latest stable packages.", + "tag": "Tag to be applied to the build on success. By default, the tag is taken from the Actor version's\nbuild tag property.", + "use_cache": "If true, the Actor's Docker container will be rebuilt using layer cache\n(https://docs.docker.com/develop/develop-images/dockerfile_best-practices/`leverage`-build-cache).\nThis is to enable quick rebuild during development. By default, the cache is not used.", + "wait_for_finish": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The build object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 878 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The build object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Build the Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/build-actor\n" + } + ] + }, + "flags": {}, + "id": 1966, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor version number to be built." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1967, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then the Actor is built with beta versions of Apify NPM packages. By default,\nthe build uses latest stable packages." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1968, + "kind": 32768, + "kindString": "Parameter", + "name": "beta_packages", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag to be applied to the build on success. By default, the tag is taken from the Actor version's\nbuild tag property." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1969, + "kind": 32768, + "kindString": "Parameter", + "name": "tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor's Docker container will be rebuilt using layer cache\n(https://docs.docker.com/develop/develop-images/dockerfile_best-practices/`leverage`-build-cache).\nThis is to enable quick rebuild during development. By default, the cache is not used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1970, + "kind": 32768, + "kindString": "Parameter", + "name": "use_cache", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1971, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1972, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build", + "type": "reference", + "target": "619" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the builds of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1973, + "module": "_resource_clients.actor", + "name": "builds", + "parsedDocstring": { + "text": "Retrieve a client for the builds of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 926 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the builds of this Actor." + } + ] + }, + "flags": {}, + "id": 1974, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "builds", + "parameters": [], + "type": { + "name": "BuildCollectionClientAsync", + "type": "reference", + "target": "2293" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1975, + "module": "_resource_clients.actor", + "name": "runs", + "parsedDocstring": { + "text": "Retrieve a client for the runs of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 933 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this Actor." + } + ] + }, + "flags": {}, + "id": 1976, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClientAsync", + "type": "reference", + "target": "3128" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1977, + "module": "_resource_clients.actor", + "name": "default_build", + "parsedDocstring": { + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n", + "args": { + "wait_for_finish": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The resource client for the default build of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 940 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the default build of this Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve Actor's default build.\n\nhttps://docs.apify.com/api/v2/act-build-default-get\n" + } + ] + }, + "flags": {}, + "id": 1978, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "default_build", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the build to finish before returning.\nBy default it is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1979, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1980, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BuildClientAsync", + "type": "reference", + "target": "2258" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1981, + "module": "_resource_clients.actor", + "name": "last_run", + "parsedDocstring": { + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n", + "args": { + "status": "Consider only runs with this status.", + "origin": "Consider only runs started with this origin.\n" + }, + "returns": "The resource client for the last run of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 978 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the last run of this Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this Actor.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "flags": {}, + "id": 1982, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "last_run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs with this status." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1983, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs started with this origin.\n" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1984, + "kind": 32768, + "kindString": "Parameter", + "name": "origin", + "type": { + "name": "RunOrigin | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunOrigin", + "target": "555" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RunClientAsync", + "type": "reference", + "target": "3045" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the versions of this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1985, + "module": "_resource_clients.actor", + "name": "versions", + "parsedDocstring": { + "text": "Retrieve a client for the versions of this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1005 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the versions of this Actor." + } + ] + }, + "flags": {}, + "id": 1986, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "versions", + "parameters": [], + "type": { + "name": "ActorVersionCollectionClientAsync", + "type": "reference", + "target": "2214" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified version of this Actor.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1987, + "module": "_resource_clients.actor", + "name": "version", + "parsedDocstring": { + "text": "Retrieve the client for the specified version of this Actor.\n", + "args": { + "version_number": "The version number for which to retrieve the resource client.\n" + }, + "returns": "The resource client for the specified Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1009 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the specified Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified version of this Actor.\n" + } + ] + }, + "flags": {}, + "id": 1988, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "version", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The version number for which to retrieve the resource client.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 1989, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorVersionClientAsync", + "type": "reference", + "target": "2166" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this Actor." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1990, + "module": "_resource_clients.actor", + "name": "webhooks", + "parsedDocstring": { + "text": "Retrieve a client for webhooks associated with this Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1023 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this Actor." + } + ] + }, + "flags": {}, + "id": 1991, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClientAsync", + "type": "reference", + "target": "3579" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Validate an input for the Actor that defines an input schema.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1992, + "module": "_resource_clients.actor", + "name": "validate_input", + "parsedDocstring": { + "text": "Validate an input for the Actor that defines an input schema.\n", + "args": { + "run_input": "The input to validate.", + "build_tag": "The Actor's build tag.", + "content_type": "The content type of the input.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "True if the input is valid, else raise an exception with validation error details." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1027 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "True if the input is valid, else raise an exception with validation error details." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Validate an input for the Actor that defines an input schema.\n" + } + ] + }, + "flags": {}, + "id": 1993, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "validate_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to validate." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 1994, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The Actor's build tag." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1995, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1996, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1997, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3646, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor.\n\nProvides methods to manage a specific Actor, e.g. update it, delete it, build it, or start runs. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1897, + 1965, + 1973, + 1950, + 1977, + 1933, + 1902, + 1981, + 1975, + 1936, + 1905, + 1992, + 1987, + 1985, + 1990 + ], + "title": "Methods" + }, + { + "children": [ + 3646 + ], + "title": "Properties" + } + ], + "id": 1896, + "module": "_resource_clients.actor", + "name": "ActorClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor.\n\nProvides methods to manage a specific Actor, e.g. update it, delete it, build it, or start runs. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 561 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 1999, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 33 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2003, + "module": "_resource_clients.actor_collection", + "name": "list", + "parsedDocstring": { + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n", + "args": { + "my": "If True, will return only Actors which the user has created themselves.", + "limit": "How many Actors to list.", + "offset": "What Actor to include as first when retrieving the list.", + "desc": "Whether to sort the Actors in descending order based on their creation date.", + "sort_by": "Field to sort the results by.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actors matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 44 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actors matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n" + } + ] + }, + "flags": {}, + "id": 2004, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, will return only Actors which the user has created themselves." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2005, + "kind": 32768, + "kindString": "Parameter", + "name": "my", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many Actors to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2006, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What Actor to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2007, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the Actors in descending order based on their creation date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2008, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Field to sort the results by." + } + ] + }, + "defaultValue": "'createdAt'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2009, + "kind": 32768, + "kindString": "Parameter", + "name": "sort_by", + "type": { + "name": "Literal['createdAt', 'stats.lastRunStartedAt'] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Literal", + "typeArguments": [ + { + "type": "literal", + "value": "createdAt" + }, + { + "type": "literal", + "value": "stats.lastRunStartedAt" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2010, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfActors", + "type": "reference", + "target": "287" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2011, + "module": "_resource_clients.actor_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n", + "args": { + "name": "The name of the Actor.", + "title": "The title of the Actor (human-readable).", + "description": "The description for the Actor.", + "seo_title": "The title of the Actor optimized for search engines.", + "seo_description": "The description of the Actor optimized for search engines.", + "versions": "The list of Actor versions.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "is_public": "Whether the Actor is public.", + "is_deprecated": "Whether the Actor is deprecated.", + "categories": "The categories to which the Actor belongs to.", + "default_run_build": "Tag or number of the build that you want to run by default.", + "default_run_max_items": "Default limit of the number of results that will be returned by runs\nof this Actor, if the Actor is charged per result.", + "default_run_memory_mbytes": "Default amount of memory allocated for the runs of this Actor, in megabytes.", + "default_run_timeout": "Default timeout for the runs of this Actor.", + "example_run_input_body": "Input to be prefilled as default input to new users of this Actor.", + "example_run_input_content_type": "The content type of the example run input.", + "actor_standby_is_enabled": "Whether the Actor Standby is enabled.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n" + } + ] + }, + "flags": {}, + "id": 2012, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the Actor." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2013, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor (human-readable)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2014, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2015, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2016, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2017, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of Actor versions." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2018, + "kind": 32768, + "kindString": "Parameter", + "name": "versions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2019, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is public." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2020, + "kind": 32768, + "kindString": "Parameter", + "name": "is_public", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is deprecated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2021, + "kind": 32768, + "kindString": "Parameter", + "name": "is_deprecated", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The categories to which the Actor belongs to." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2022, + "kind": 32768, + "kindString": "Parameter", + "name": "categories", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag or number of the build that you want to run by default." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2023, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default limit of the number of results that will be returned by runs\nof this Actor, if the Actor is charged per result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2024, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default amount of memory allocated for the runs of this Actor, in megabytes." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2025, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for the runs of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2026, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input to be prefilled as default input to new users of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2027, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_body", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the example run input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2028, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor Standby is enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2029, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2030, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2031, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2032, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2033, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2034, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2035, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor", + "type": "reference", + "target": "418" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3674, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor collection.\n\nProvides methods to manage the Actor collection, e.g. list or create Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 1999, + 2011, + 2003 + ], + "title": "Methods" + }, + { + "children": [ + 3674 + ], + "title": "Properties" + } + ], + "id": 1998, + "module": "_resource_clients.actor_collection", + "name": "ActorCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Actor collection.\n\nProvides methods to manage the Actor collection, e.g. list or create Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2037, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 178 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2041, + "module": "_resource_clients.actor_collection", + "name": "list", + "parsedDocstring": { + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n", + "args": { + "my": "If True, will return only Actors which the user has created themselves.", + "limit": "How many Actors to list.", + "offset": "What Actor to include as first when retrieving the list.", + "desc": "Whether to sort the Actors in descending order based on their creation date.", + "sort_by": "Field to sort the results by.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actors matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 189 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actors matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the Actors the user has created or used.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/get-list-of-actors\n" + } + ] + }, + "flags": {}, + "id": 2042, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, will return only Actors which the user has created themselves." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2043, + "kind": 32768, + "kindString": "Parameter", + "name": "my", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many Actors to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2044, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What Actor to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2045, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the Actors in descending order based on their creation date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2046, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Field to sort the results by." + } + ] + }, + "defaultValue": "'createdAt'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2047, + "kind": 32768, + "kindString": "Parameter", + "name": "sort_by", + "type": { + "name": "Literal['createdAt', 'stats.lastRunStartedAt'] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Literal", + "typeArguments": [ + { + "type": "literal", + "value": "createdAt" + }, + { + "type": "literal", + "value": "stats.lastRunStartedAt" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2048, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfActors", + "type": "reference", + "target": "287" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2049, + "module": "_resource_clients.actor_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n", + "args": { + "name": "The name of the Actor.", + "title": "The title of the Actor (human-readable).", + "description": "The description for the Actor.", + "seo_title": "The title of the Actor optimized for search engines.", + "seo_description": "The description of the Actor optimized for search engines.", + "versions": "The list of Actor versions.", + "restart_on_error": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code.", + "is_public": "Whether the Actor is public.", + "is_deprecated": "Whether the Actor is deprecated.", + "categories": "The categories to which the Actor belongs to.", + "default_run_build": "Tag or number of the build that you want to run by default.", + "default_run_max_items": "Default limit of the number of results that will be returned by runs\nof this Actor, if the Actor is charged per result.", + "default_run_memory_mbytes": "Default amount of memory allocated for the runs of this Actor, in megabytes.", + "default_run_timeout": "Default timeout for the runs of this Actor.", + "example_run_input_body": "Input to be prefilled as default input to new users of this Actor.", + "example_run_input_content_type": "The content type of the example run input.", + "actor_standby_is_enabled": "Whether the Actor Standby is enabled.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 217 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor.\n\nhttps://docs.apify.com/api/v2#/reference/actors/actor-collection/create-actor\n" + } + ] + }, + "flags": {}, + "id": 2050, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the Actor." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2051, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor (human-readable)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2052, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description for the Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2053, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2054, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The description of the Actor optimized for search engines." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2055, + "kind": 32768, + "kindString": "Parameter", + "name": "seo_description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of Actor versions." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2056, + "kind": 32768, + "kindString": "Parameter", + "name": "versions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Actor run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2057, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is public." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2058, + "kind": 32768, + "kindString": "Parameter", + "name": "is_public", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor is deprecated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2059, + "kind": 32768, + "kindString": "Parameter", + "name": "is_deprecated", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The categories to which the Actor belongs to." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2060, + "kind": 32768, + "kindString": "Parameter", + "name": "categories", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag or number of the build that you want to run by default." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2061, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default limit of the number of results that will be returned by runs\nof this Actor, if the Actor is charged per result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2062, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default amount of memory allocated for the runs of this Actor, in megabytes." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2063, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Default timeout for the runs of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2064, + "kind": 32768, + "kindString": "Parameter", + "name": "default_run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Input to be prefilled as default input to new users of this Actor." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2065, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_body", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the example run input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2066, + "kind": 32768, + "kindString": "Parameter", + "name": "example_run_input_content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the Actor Standby is enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2067, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2068, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2069, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2070, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2071, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2072, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2073, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Actor", + "type": "reference", + "target": "418" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3647, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor collection.\n\nProvides methods to manage the Actor collection, e.g. list or create Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2037, + 2049, + 2041 + ], + "title": "Methods" + }, + { + "children": [ + 3647 + ], + "title": "Properties" + } + ], + "id": 2036, + "module": "_resource_clients.actor_collection", + "name": "ActorCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Actor collection.\n\nProvides methods to manage the Actor collection, e.g. list or create Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 171 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2075, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2080, + "module": "_resource_clients.actor_env_var", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor environment variable data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor environment variable data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2081, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2082, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "EnvVar", + "target": "305" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2083, + "module": "_resource_clients.actor_env_var", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n", + "args": { + "is_secret": "Whether the environment variable is secret or not.", + "name": "The name of the environment variable.", + "value": "The value of the environment variable.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 50 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2084, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variable is secret or not." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2085, + "kind": 32768, + "kindString": "Parameter", + "name": "is_secret", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2086, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2087, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2088, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar", + "type": "reference", + "target": "305" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2089, + "module": "_resource_clients.actor_env_var", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 77 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2090, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2091, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3675, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor environment variable.\n\nProvides methods to manage a specific Actor environment variable, e.g. get, update, or delete it. Obtain an instance\nvia an appropriate method on the `ActorVersionClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2075, + 2089, + 2080, + 2083 + ], + "title": "Methods" + }, + { + "children": [ + 3675 + ], + "title": "Properties" + } + ], + "id": 2074, + "module": "_resource_clients.actor_env_var", + "name": "ActorEnvVarClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor environment variable.\n\nProvides methods to manage a specific Actor environment variable, e.g. get, update, or delete it. Obtain an instance\nvia an appropriate method on the `ActorVersionClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2093, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 96 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2098, + "module": "_resource_clients.actor_env_var", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor environment variable data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 109 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor environment variable data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/get-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2099, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2100, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "EnvVar", + "target": "305" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2101, + "module": "_resource_clients.actor_env_var", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n", + "args": { + "is_secret": "Whether the environment variable is secret or not.", + "name": "The name of the environment variable.", + "value": "The value of the environment variable.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 125 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor environment variable with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/update-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2102, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variable is secret or not." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2103, + "kind": 32768, + "kindString": "Parameter", + "name": "is_secret", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2104, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2105, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2106, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar", + "type": "reference", + "target": "305" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2107, + "module": "_resource_clients.actor_env_var", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 152 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-object/delete-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2108, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2109, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3648, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor environment variable.\n\nProvides methods to manage a specific Actor environment variable, e.g. get, update, or delete it. Obtain an instance\nvia an appropriate method on the `ActorVersionClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2093, + 2107, + 2098, + 2101 + ], + "title": "Methods" + }, + { + "children": [ + 3648 + ], + "title": "Properties" + } + ], + "id": 2092, + "module": "_resource_clients.actor_env_var", + "name": "ActorEnvVarClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor environment variable.\n\nProvides methods to manage a specific Actor environment variable, e.g. get, update, or delete it. Obtain an instance\nvia an appropriate method on the `ActorVersionClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 89 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2111, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2115, + "module": "_resource_clients.actor_env_var_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actor environment variables." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actor environment variables." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n" + } + ] + }, + "flags": {}, + "id": 2116, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2117, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfEnvVars", + "type": "reference", + "target": "486" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2118, + "module": "_resource_clients.actor_env_var_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n", + "args": { + "is_secret": "Whether the environment variable is secret or not.", + "name": "The name of the environment variable.", + "value": "The value of the environment variable.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 46 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2119, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variable is secret or not." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2120, + "kind": 32768, + "kindString": "Parameter", + "name": "is_secret", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2121, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2122, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2123, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar", + "type": "reference", + "target": "305" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3676, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor environment variable collection.\n\nProvides methods to manage Actor environment variables, e.g. list or create them. Obtain an instance via an\nappropriate method on the `ActorVersionClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2111, + 2118, + 2115 + ], + "title": "Methods" + }, + { + "children": [ + 3676 + ], + "title": "Properties" + } + ], + "id": 2110, + "module": "_resource_clients.actor_env_var_collection", + "name": "ActorEnvVarCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Actor environment variable collection.\n\nProvides methods to manage Actor environment variables, e.g. list or create them. Obtain an instance via an\nappropriate method on the `ActorVersionClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2125, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 82 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2129, + "module": "_resource_clients.actor_env_var_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actor environment variables." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 93 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actor environment variables." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available Actor environment variables.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/get-list-of-environment-variables\n" + } + ] + }, + "flags": {}, + "id": 2130, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2131, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfEnvVars", + "type": "reference", + "target": "486" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2132, + "module": "_resource_clients.actor_env_var_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n", + "args": { + "is_secret": "Whether the environment variable is secret or not.", + "name": "The name of the environment variable.", + "value": "The value of the environment variable.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 107 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor environment variable.\n\nhttps://docs.apify.com/api/v2#/reference/actors/environment-variable-collection/create-environment-variable\n" + } + ] + }, + "flags": {}, + "id": 2133, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variable is secret or not." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2134, + "kind": 32768, + "kindString": "Parameter", + "name": "is_secret", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2135, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value of the environment variable." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2136, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2137, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "EnvVar", + "type": "reference", + "target": "305" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3649, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor environment variable collection.\n\nProvides methods to manage Actor environment variables, e.g. list or create them. Obtain an instance via an\nappropriate method on the `ActorVersionClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2125, + 2132, + 2129 + ], + "title": "Methods" + }, + { + "children": [ + 3649 + ], + "title": "Properties" + } + ], + "id": 2124, + "module": "_resource_clients.actor_env_var_collection", + "name": "ActorEnvVarCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Actor environment variable collection.\n\nProvides methods to manage Actor environment variables, e.g. list or create them. Obtain an instance via an\nappropriate method on the `ActorVersionClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 75 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2139, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 39 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2144, + "module": "_resource_clients.actor_version", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor version data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 52 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor version data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n" + } + ] + }, + "flags": {}, + "id": 2145, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2146, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Version", + "target": "322" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2147, + "module": "_resource_clients.actor_version", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n", + "args": { + "build_tag": "Tag that is automatically set to the latest successful build of the current version.", + "env_vars": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure.", + "apply_env_vars_to_build": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process.", + "source_type": "What source type is the Actor version using.", + "source_files": "Source code comprised of multiple files, each an item of the array. Required when\n`source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure.", + "git_repo_url": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`.", + "tarball_url": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`.", + "github_gist_url": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 68 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n" + } + ] + }, + "flags": {}, + "id": 2148, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag that is automatically set to the latest successful build of the current version." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2149, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2150, + "kind": 32768, + "kindString": "Parameter", + "name": "env_vars", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2151, + "kind": 32768, + "kindString": "Parameter", + "name": "apply_env_vars_to_build", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What source type is the Actor version using." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2152, + "kind": 32768, + "kindString": "Parameter", + "name": "source_type", + "type": { + "name": "VersionSourceType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "VersionSourceType", + "target": "300" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Source code comprised of multiple files, each an item of the array. Required when\n`source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2153, + "kind": 32768, + "kindString": "Parameter", + "name": "source_files", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2154, + "kind": 32768, + "kindString": "Parameter", + "name": "git_repo_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2155, + "kind": 32768, + "kindString": "Parameter", + "name": "tarball_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2156, + "kind": 32768, + "kindString": "Parameter", + "name": "github_gist_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2157, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version", + "type": "reference", + "target": "322" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2158, + "module": "_resource_clients.actor_version", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 118 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n" + } + ] + }, + "flags": {}, + "id": 2159, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2160, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the environment variables of this Actor version." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2161, + "module": "_resource_clients.actor_version", + "name": "env_vars", + "parsedDocstring": { + "text": "Retrieve a client for the environment variables of this Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 128 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the environment variables of this Actor version." + } + ] + }, + "flags": {}, + "id": 2162, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "env_vars", + "parameters": [], + "type": { + "name": "ActorEnvVarCollectionClient", + "type": "reference", + "target": "2110" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified environment variable of this Actor version.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2163, + "module": "_resource_clients.actor_version", + "name": "env_var", + "parsedDocstring": { + "text": "Retrieve the client for the specified environment variable of this Actor version.\n", + "args": { + "env_var_name": "The name of the environment variable for which to retrieve the resource client.\n" + }, + "returns": "The resource client for the specified Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 132 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the specified Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified environment variable of this Actor version.\n" + } + ] + }, + "flags": {}, + "id": 2164, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "env_var", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable for which to retrieve the resource client.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2165, + "kind": 32768, + "kindString": "Parameter", + "name": "env_var_name", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorEnvVarClient", + "type": "reference", + "target": "2074" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3677, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor version.\n\nProvides methods to manage a specific Actor version, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ActorClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2139, + 2158, + 2163, + 2161, + 2144, + 2147 + ], + "title": "Methods" + }, + { + "children": [ + 3677 + ], + "title": "Properties" + } + ], + "id": 2138, + "module": "_resource_clients.actor_version", + "name": "ActorVersionClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor version.\n\nProvides methods to manage a specific Actor version, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ActorClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2167, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 155 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2172, + "module": "_resource_clients.actor_version", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor version data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 168 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor version data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/get-version\n" + } + ] + }, + "flags": {}, + "id": 2173, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2174, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Version", + "target": "322" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2175, + "module": "_resource_clients.actor_version", + "name": "update", + "parsedDocstring": { + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n", + "args": { + "build_tag": "Tag that is automatically set to the latest successful build of the current version.", + "env_vars": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure.", + "apply_env_vars_to_build": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process.", + "source_type": "What source type is the Actor version using.", + "source_files": "Source code comprised of multiple files, each an item of the array. Required when\n`source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure.", + "git_repo_url": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`.", + "tarball_url": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`.", + "github_gist_url": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 184 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the Actor version with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/update-version\n" + } + ] + }, + "flags": {}, + "id": 2176, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag that is automatically set to the latest successful build of the current version." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2177, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2178, + "kind": 32768, + "kindString": "Parameter", + "name": "env_vars", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2179, + "kind": 32768, + "kindString": "Parameter", + "name": "apply_env_vars_to_build", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What source type is the Actor version using." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2180, + "kind": 32768, + "kindString": "Parameter", + "name": "source_type", + "type": { + "name": "VersionSourceType | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "VersionSourceType", + "target": "300" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Source code comprised of multiple files, each an item of the array. Required when\n`source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2181, + "kind": 32768, + "kindString": "Parameter", + "name": "source_files", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2182, + "kind": 32768, + "kindString": "Parameter", + "name": "git_repo_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2183, + "kind": 32768, + "kindString": "Parameter", + "name": "tarball_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2184, + "kind": 32768, + "kindString": "Parameter", + "name": "github_gist_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2185, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version", + "type": "reference", + "target": "322" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2186, + "module": "_resource_clients.actor_version", + "name": "delete", + "parsedDocstring": { + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 234 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-object/delete-version\n" + } + ] + }, + "flags": {}, + "id": 2187, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2188, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the environment variables of this Actor version." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2189, + "module": "_resource_clients.actor_version", + "name": "env_vars", + "parsedDocstring": { + "text": "Retrieve a client for the environment variables of this Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 244 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the environment variables of this Actor version." + } + ] + }, + "flags": {}, + "id": 2190, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "env_vars", + "parameters": [], + "type": { + "name": "ActorEnvVarCollectionClientAsync", + "type": "reference", + "target": "2124" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified environment variable of this Actor version.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2191, + "module": "_resource_clients.actor_version", + "name": "env_var", + "parsedDocstring": { + "text": "Retrieve the client for the specified environment variable of this Actor version.\n", + "args": { + "env_var_name": "The name of the environment variable for which to retrieve the resource client.\n" + }, + "returns": "The resource client for the specified Actor environment variable." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 248 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the specified Actor environment variable." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the specified environment variable of this Actor version.\n" + } + ] + }, + "flags": {}, + "id": 2192, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "env_var", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the environment variable for which to retrieve the resource client.\n" + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2193, + "kind": 32768, + "kindString": "Parameter", + "name": "env_var_name", + "type": { + "name": "str", + "type": "reference" + } + } + ], + "type": { + "name": "ActorEnvVarClientAsync", + "type": "reference", + "target": "2092" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3650, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor version.\n\nProvides methods to manage a specific Actor version, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ActorClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2167, + 2186, + 2191, + 2189, + 2172, + 2175 + ], + "title": "Methods" + }, + { + "children": [ + 3650 + ], + "title": "Properties" + } + ], + "id": 2166, + "module": "_resource_clients.actor_version", + "name": "ActorVersionClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor version.\n\nProvides methods to manage a specific Actor version, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ActorClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 148 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2195, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 36 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2199, + "module": "_resource_clients.actor_version_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actor versions." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actor versions." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n" + } + ] + }, + "flags": {}, + "id": 2200, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2201, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfVersions", + "type": "reference", + "target": "476" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2202, + "module": "_resource_clients.actor_version_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n", + "args": { + "version_number": "Major and minor version of the Actor (e.g. `1.0`).", + "build_tag": "Tag that is automatically set to the latest successful build of the current version.", + "env_vars": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure.", + "apply_env_vars_to_build": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process.", + "source_type": "What source type is the Actor version using.", + "source_files": "Source code comprised of multiple files, each an item of the array. Required\nwhen `source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure.", + "git_repo_url": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`.", + "tarball_url": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`.", + "github_gist_url": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 61 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n" + } + ] + }, + "flags": {}, + "id": 2203, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Major and minor version of the Actor (e.g. `1.0`)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2204, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag that is automatically set to the latest successful build of the current version." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2205, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2206, + "kind": 32768, + "kindString": "Parameter", + "name": "env_vars", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2207, + "kind": 32768, + "kindString": "Parameter", + "name": "apply_env_vars_to_build", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What source type is the Actor version using." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2208, + "kind": 32768, + "kindString": "Parameter", + "name": "source_type", + "type": { + "name": "VersionSourceType", + "type": "reference", + "target": "300" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Source code comprised of multiple files, each an item of the array. Required\nwhen `source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2209, + "kind": 32768, + "kindString": "Parameter", + "name": "source_files", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2210, + "kind": 32768, + "kindString": "Parameter", + "name": "git_repo_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2211, + "kind": 32768, + "kindString": "Parameter", + "name": "tarball_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2212, + "kind": 32768, + "kindString": "Parameter", + "name": "github_gist_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2213, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version", + "type": "reference", + "target": "322" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3678, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor version collection.\n\nProvides methods to manage Actor versions, e.g. list or create them. Obtain an instance via an appropriate method\non the `ActorClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2195, + 2202, + 2199 + ], + "title": "Methods" + }, + { + "children": [ + 3678 + ], + "title": "Properties" + } + ], + "id": 2194, + "module": "_resource_clients.actor_version_collection", + "name": "ActorVersionCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Actor version collection.\n\nProvides methods to manage Actor versions, e.g. list or create them. Obtain an instance via an appropriate method\non the `ActorClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 29 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2215, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 123 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2219, + "module": "_resource_clients.actor_version_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actor versions." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 134 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actor versions." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available Actor versions.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions\n" + } + ] + }, + "flags": {}, + "id": 2220, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2221, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfVersions", + "type": "reference", + "target": "476" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2222, + "module": "_resource_clients.actor_version_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n", + "args": { + "version_number": "Major and minor version of the Actor (e.g. `1.0`).", + "build_tag": "Tag that is automatically set to the latest successful build of the current version.", + "env_vars": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure.", + "apply_env_vars_to_build": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process.", + "source_type": "What source type is the Actor version using.", + "source_files": "Source code comprised of multiple files, each an item of the array. Required\nwhen `source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure.", + "git_repo_url": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`.", + "tarball_url": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`.", + "github_gist_url": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created Actor version." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 148 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created Actor version." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new Actor version.\n\nhttps://docs.apify.com/api/v2#/reference/actors/version-collection/create-version\n" + } + ] + }, + "flags": {}, + "id": 2223, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Major and minor version of the Actor (e.g. `1.0`)." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2224, + "kind": 32768, + "kindString": "Parameter", + "name": "version_number", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag that is automatically set to the latest successful build of the current version." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2225, + "kind": 32768, + "kindString": "Parameter", + "name": "build_tag", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Environment variables that will be available to the Actor run process, and optionally\nalso to the build process. See the API docs for their exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2226, + "kind": 32768, + "kindString": "Parameter", + "name": "env_vars", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the environment variables specified for the Actor run will also\nbe set to the Actor build process." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2227, + "kind": 32768, + "kindString": "Parameter", + "name": "apply_env_vars_to_build", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What source type is the Actor version using." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2228, + "kind": 32768, + "kindString": "Parameter", + "name": "source_type", + "type": { + "name": "VersionSourceType", + "type": "reference", + "target": "300" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Source code comprised of multiple files, each an item of the array. Required\nwhen `source_type` is `VersionSourceType.SOURCE_FILES`. See the API docs for the exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2229, + "kind": 32768, + "kindString": "Parameter", + "name": "source_files", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a Git repository from which the source code will be cloned.\nRequired when `source_type` is `VersionSourceType.GIT_REPO`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2230, + "kind": 32768, + "kindString": "Parameter", + "name": "git_repo_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a tarball or a zip archive from which the source code will be downloaded.\nRequired when `source_type` is `VersionSourceType.TARBALL`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2231, + "kind": 32768, + "kindString": "Parameter", + "name": "tarball_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The URL of a GitHub Gist from which the source will be downloaded.\nRequired when `source_type` is `VersionSourceType.GITHUB_GIST`." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2232, + "kind": 32768, + "kindString": "Parameter", + "name": "github_gist_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2233, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Version", + "type": "reference", + "target": "322" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3651, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor version collection.\n\nProvides methods to manage Actor versions, e.g. list or create them. Obtain an instance via an appropriate method\non the `ActorClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2215, + 2222, + 2219 + ], + "title": "Methods" + }, + { + "children": [ + 3651 + ], + "title": "Properties" + } + ], + "id": 2214, + "module": "_resource_clients.actor_version_collection", + "name": "ActorVersionCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Actor version collection.\n\nProvides methods to manage Actor versions, e.g. list or create them. Obtain an instance via an appropriate method\non the `ActorClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/actor_version_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 116 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2235, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 25 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2240, + "module": "_resource_clients.build", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor build data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 38 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor build data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n" + } + ] + }, + "flags": {}, + "id": 2241, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2242, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Build", + "target": "619" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2243, + "module": "_resource_clients.build", + "name": "delete", + "parsedDocstring": { + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 54 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n" + } + ] + }, + "flags": {}, + "id": 2244, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2245, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2246, + "module": "_resource_clients.build", + "name": "abort", + "parsedDocstring": { + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The data of the aborted Actor build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 64 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The data of the aborted Actor build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n" + } + ] + }, + "flags": {}, + "id": 2247, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "abort", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2248, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build", + "type": "reference", + "target": "619" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2249, + "module": "_resource_clients.build", + "name": "get_open_api_definition", + "parsedDocstring": { + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "OpenAPI definition of the Actor's build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 84 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "OpenAPI definition of the Actor's build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n" + } + ] + }, + "flags": {}, + "id": 2250, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_open_api_definition", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2251, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wait synchronously until the build finishes or the server times out.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2252, + "module": "_resource_clients.build", + "name": "wait_for_finish", + "parsedDocstring": { + "text": "Wait synchronously until the build finishes or the server times out.\n", + "args": { + "wait_duration": "How long does the client wait for build to finish. None for indefinite.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor build data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the build has not yet finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 102 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor build data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the build has not yet finished." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Wait synchronously until the build finishes or the server times out.\n" + } + ] + }, + "flags": {}, + "id": 2253, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "wait_for_finish", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long does the client wait for build to finish. None for indefinite." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2254, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2255, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Build", + "target": "619" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2256, + "module": "_resource_clients.build", + "name": "log", + "parsedDocstring": { + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n", + "returns": "A client allowing access to the log of this Actor build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 123 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the log of this Actor build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2257, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [], + "type": { + "name": "LogClient", + "type": "reference", + "target": "2757" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3679, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor build.\n\nProvides methods to manage a specific Actor build, e.g. get it, abort it, or wait for it to finish. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2235, + 2246, + 2243, + 2240, + 2249, + 2256, + 2252 + ], + "title": "Methods" + }, + { + "children": [ + 3679 + ], + "title": "Properties" + } + ], + "id": 2234, + "module": "_resource_clients.build", + "name": "BuildClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor build.\n\nProvides methods to manage a specific Actor build, e.g. get it, abort it, or wait for it to finish. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 18 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2259, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 145 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2264, + "module": "_resource_clients.build", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor build data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 158 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor build data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-object/get-build\n" + } + ] + }, + "flags": {}, + "id": 2265, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2266, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Build", + "target": "619" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2267, + "module": "_resource_clients.build", + "name": "abort", + "parsedDocstring": { + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The data of the aborted Actor build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 174 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The data of the aborted Actor build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Abort the Actor build which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/abort-build/abort-build\n" + } + ] + }, + "flags": {}, + "id": 2268, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "abort", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2269, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build", + "type": "reference", + "target": "619" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2270, + "module": "_resource_clients.build", + "name": "delete", + "parsedDocstring": { + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 194 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the build.\n\nhttps://docs.apify.com/api/v2#/reference/actor-builds/delete-build/delete-build\n" + } + ] + }, + "flags": {}, + "id": 2271, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2272, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2273, + "module": "_resource_clients.build", + "name": "get_open_api_definition", + "parsedDocstring": { + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "OpenAPI definition of the Actor's build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 204 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "OpenAPI definition of the Actor's build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return OpenAPI definition of the Actor's build.\n\nhttps://docs.apify.com/api/v2/actor-build-openapi-json-get\n" + } + ] + }, + "flags": {}, + "id": 2274, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_open_api_definition", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2275, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wait asynchronously until the build finishes or the server times out.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2276, + "module": "_resource_clients.build", + "name": "wait_for_finish", + "parsedDocstring": { + "text": "Wait asynchronously until the build finishes or the server times out.\n", + "args": { + "wait_duration": "How long does the client wait for build to finish. None for indefinite.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor build data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the build has not yet finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 222 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor build data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the build has not yet finished." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Wait asynchronously until the build finishes or the server times out.\n" + } + ] + }, + "flags": {}, + "id": 2277, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "wait_for_finish", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long does the client wait for build to finish. None for indefinite." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2278, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2279, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Build | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Build", + "target": "619" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2280, + "module": "_resource_clients.build", + "name": "log", + "parsedDocstring": { + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n", + "returns": "A client allowing access to the log of this Actor build." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 243 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the log of this Actor build." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor build.\n\nhttps://docs.apify.com/api/v2/#/reference/actor-builds/build-log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2281, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [], + "type": { + "name": "LogClientAsync", + "type": "reference", + "target": "2774" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3652, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor build.\n\nProvides methods to manage a specific Actor build, e.g. get it, abort it, or wait for it to finish. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2259, + 2267, + 2270, + 2264, + 2273, + 2280, + 2276 + ], + "title": "Methods" + }, + { + "children": [ + 3652 + ], + "title": "Properties" + } + ], + "id": 2258, + "module": "_resource_clients.build", + "name": "BuildClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor build.\n\nProvides methods to manage a specific Actor build, e.g. get it, abort it, or wait for it to finish. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 138 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2283, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2287, + "module": "_resource_clients.build_collection", + "name": "list", + "parsedDocstring": { + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n", + "args": { + "limit": "How many builds to retrieve.", + "offset": "What build to include as first when retrieving the list.", + "desc": "Whether to sort the builds in descending order based on their start date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor builds." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor builds." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n" + } + ] + }, + "flags": {}, + "id": 2288, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many builds to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2289, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What build to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2290, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the builds in descending order based on their start date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2291, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2292, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfBuilds", + "type": "reference", + "target": "579" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3680, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor build collection.\n\nProvides methods to manage Actor builds, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2283, + 2287 + ], + "title": "Methods" + }, + { + "children": [ + 3680 + ], + "title": "Properties" + } + ], + "id": 2282, + "module": "_resource_clients.build_collection", + "name": "BuildCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Actor build collection.\n\nProvides methods to manage Actor builds, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2294, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 69 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2298, + "module": "_resource_clients.build_collection", + "name": "list", + "parsedDocstring": { + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n", + "args": { + "limit": "How many builds to retrieve.", + "offset": "What build to include as first when retrieving the list.", + "desc": "Whether to sort the builds in descending order based on their start date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor builds." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 80 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor builds." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all Actor builds.\n\nList all Actor builds, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/build-collection/get-list-of-builds\nhttps://docs.apify.com/api/v2#/reference/actor-builds/build-collection/get-user-builds-list\n" + } + ] + }, + "flags": {}, + "id": 2299, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many builds to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2300, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What build to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2301, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the builds in descending order based on their start date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2302, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2303, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfBuilds", + "type": "reference", + "target": "579" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3653, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor build collection.\n\nProvides methods to manage Actor builds, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2294, + 2298 + ], + "title": "Methods" + }, + { + "children": [ + 3653 + ], + "title": "Properties" + } + ], + "id": 2293, + "module": "_resource_clients.build_collection", + "name": "BuildCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Actor build collection.\n\nProvides methods to manage Actor builds, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/build_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of dataset items. Each item is a JSON object (dictionary)." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2305, + "module": "_resource_clients.dataset", + "name": "items", + "parsedDocstring": { + "text": "List of dataset items. Each item is a JSON object (dictionary)." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 39 + } + ], + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Total number of items in the dataset." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2306, + "module": "_resource_clients.dataset", + "name": "total", + "parsedDocstring": { + "text": "Total number of items in the dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 42 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The offset of the first item in this page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2307, + "module": "_resource_clients.dataset", + "name": "offset", + "parsedDocstring": { + "text": "The offset of the first item in this page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 45 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items in this page." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2308, + "module": "_resource_clients.dataset", + "name": "count", + "parsedDocstring": { + "text": "Number of items in this page." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 48 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "The limit that was used for this request." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2309, + "module": "_resource_clients.dataset", + "name": "limit", + "parsedDocstring": { + "text": "The limit that was used for this request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 51 + } + ], + "type": { + "name": "int", + "type": "reference" + } + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the items are sorted in descending order." + } + ] + }, + "flags": {}, + "groups": [], + "id": 2310, + "module": "_resource_clients.dataset", + "name": "desc", + "parsedDocstring": { + "text": "Whether the items are sorted in descending order." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 54 + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "A page of dataset items returned by the `list_items` method.\n\nDataset items are arbitrary JSON objects stored in the dataset, so they cannot be\nrepresented by a specific Pydantic model. This class provides pagination metadata\nalong with the raw items." + } + ] + }, + "decorations": [ + { + "args": "('Other')", + "name": "docs_group" + }, + { + "name": "dataclass" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2308, + 2310, + 2305, + 2309, + 2307, + 2306 + ], + "title": "Properties" + } + ], + "id": 2304, + "module": "_resource_clients.dataset", + "name": "DatasetItemsPage", + "parsedDocstring": { + "text": "A page of dataset items returned by the `list_items` method.\n\nDataset items are arbitrary JSON objects stored in the dataset, so they cannot be\nrepresented by a specific Pydantic model. This class provides pagination metadata\nalong with the raw items." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 31 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2312, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 66 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2317, + "module": "_resource_clients.dataset", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved dataset, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 79 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved dataset, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n" + } + ] + }, + "flags": {}, + "id": 2318, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2319, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Dataset", + "target": "941" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2320, + "module": "_resource_clients.dataset", + "name": "update", + "parsedDocstring": { + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n", + "args": { + "name": "The new name for the dataset.", + "general_access": "Determines how others can access the dataset.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 95 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated dataset." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n" + } + ] + }, + "flags": {}, + "id": 2321, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2322, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2323, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2324, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset", + "type": "reference", + "target": "941" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2325, + "module": "_resource_clients.dataset", + "name": "delete", + "parsedDocstring": { + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 121 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n" + } + ] + }, + "flags": {}, + "id": 2326, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2327, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2328, + "module": "_resource_clients.dataset", + "name": "list_items", + "parsedDocstring": { + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "flatten": "A list of fields that should be flattened.", + "view": "Name of the dataset view to be used.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "A page of the list of dataset items according to the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 131 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A page of the list of dataset items according to the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2329, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2330, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2331, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2332, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2333, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2334, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2335, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2336, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2337, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2338, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2339, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the dataset view to be used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2340, + "kind": 32768, + "kindString": "Parameter", + "name": "view", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2341, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2342, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "DatasetItemsPage", + "type": "reference", + "target": "2304" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2343, + "module": "_resource_clients.dataset", + "name": "iterate_items", + "parsedDocstring": { + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "fields": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 220 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2344, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "iterate_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "0", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2345, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2346, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2347, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2348, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2349, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2350, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2351, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2352, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2353, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2354, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2355, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nDeprecated: this function is a deprecated alias of `get_items_as_bytes`. It will be removed in\na future version.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2356, + "module": "_resource_clients.dataset", + "name": "download_items", + "parsedDocstring": { + "text": "Get the items in the dataset as raw bytes.\n\nDeprecated: this function is a deprecated alias of `get_items_as_bytes`. It will be removed in\na future version.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "item_format": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json.", + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "bom": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it.", + "delimiter": "A delimiter character for CSV files. The default delimiter is a simple comma (,).", + "fields": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix the\noutput format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_header_row": "If True, then header row in the csv format is skipped.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "xml_root": "Overrides default root element name of xml output. By default the root element is items.", + "xml_row": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item.", + "flatten": "A list of fields that should be flattened.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset items as raw bytes." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset items as raw bytes." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nDeprecated: this function is a deprecated alias of `get_items_as_bytes`. It will be removed in\na future version.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2357, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "download_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json." + } + ] + }, + "defaultValue": "'json'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2358, + "kind": 32768, + "kindString": "Parameter", + "name": "item_format", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2359, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2360, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2361, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2362, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2363, + "kind": 32768, + "kindString": "Parameter", + "name": "bom", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A delimiter character for CSV files. The default delimiter is a simple comma (,)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2364, + "kind": 32768, + "kindString": "Parameter", + "name": "delimiter", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix the\noutput format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2365, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2366, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2367, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2368, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then header row in the csv format is skipped." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2369, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_header_row", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2370, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default root element name of xml output. By default the root element is items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2371, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_root", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2372, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_row", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2373, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2374, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2375, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bytes", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2376, + "module": "_resource_clients.dataset", + "name": "get_items_as_bytes", + "parsedDocstring": { + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "item_format": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json.", + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "bom": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it.", + "delimiter": "A delimiter character for CSV files. The default delimiter is a simple comma (,).", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_header_row": "If True, then header row in the csv format is skipped.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "xml_root": "Overrides default root element name of xml output. By default the root element is items.", + "xml_row": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item.", + "flatten": "A list of fields that should be flattened.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset items as raw bytes." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 404 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset items as raw bytes." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2377, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_items_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json." + } + ] + }, + "defaultValue": "'json'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2378, + "kind": 32768, + "kindString": "Parameter", + "name": "item_format", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2379, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2380, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2381, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2382, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2383, + "kind": 32768, + "kindString": "Parameter", + "name": "bom", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A delimiter character for CSV files. The default delimiter is a simple comma (,)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2384, + "kind": 32768, + "kindString": "Parameter", + "name": "delimiter", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2385, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2386, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2387, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2388, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then header row in the csv format is skipped." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2389, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_header_row", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2390, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default root element name of xml output. By default the root element is items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2391, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_root", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2392, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_row", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2393, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2394, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2395, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bytes", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [ + { + "name": "contextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2396, + "module": "_resource_clients.dataset", + "name": "stream_items", + "parsedDocstring": { + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "item_format": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json.", + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "bom": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it.", + "delimiter": "A delimiter character for CSV files. The default delimiter is a simple comma (,).", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_header_row": "If True, then header row in the csv format is skipped.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "xml_root": "Overrides default root element name of xml output. By default the root element is items.", + "xml_row": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset items as a context-managed streaming `Response`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 503 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset items as a context-managed streaming `Response`." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2397, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "stream_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json." + } + ] + }, + "defaultValue": "'json'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2398, + "kind": 32768, + "kindString": "Parameter", + "name": "item_format", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2399, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2400, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2401, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2402, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2403, + "kind": 32768, + "kindString": "Parameter", + "name": "bom", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A delimiter character for CSV files. The default delimiter is a simple comma (,)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2404, + "kind": 32768, + "kindString": "Parameter", + "name": "delimiter", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2405, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2406, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2407, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2408, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then header row in the csv format is skipped." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2409, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_header_row", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2410, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default root element name of xml output. By default the root element is items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2411, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_root", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2412, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_row", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2413, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2414, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "HttpResponse", + "target": "1664" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2415, + "module": "_resource_clients.dataset", + "name": "push_items", + "parsedDocstring": { + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n", + "args": { + "items": "The items which to push in the dataset. Either a stringified JSON, a dictionary, or a list\nof strings or dictionaries.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 603 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n" + } + ] + }, + "flags": {}, + "id": 2416, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "push_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The items which to push in the dataset. Either a stringified JSON, a dictionary, or a list\nof strings or dictionaries." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2417, + "kind": 32768, + "kindString": "Parameter", + "name": "items", + "type": { + "name": "JsonSerializable", + "type": "reference", + "target": "1583" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2418, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2419, + "module": "_resource_clients.dataset", + "name": "get_statistics", + "parsedDocstring": { + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset statistics or None if the dataset does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 631 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset statistics or None if the dataset does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n" + } + ] + }, + "flags": {}, + "id": 2420, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_statistics", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2421, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "DatasetStatistics | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "DatasetStatistics", + "target": "997" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2422, + "module": "_resource_clients.dataset", + "name": "create_items_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "clean": "If True, returns only non-empty items and skips hidden fields.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "fields": "A list of fields which should be picked from the items.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed.", + "skip_empty": "If True, then empty items are skipped from the output.", + "skip_hidden": "If True, then hidden fields are skipped from the output.", + "flatten": "A list of fields that should be flattened.", + "view": "Name of the dataset view to be used.", + "expires_in": "How long the signed URL should be valid.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The public dataset items URL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 656 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The public dataset items URL." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n" + } + ] + }, + "flags": {}, + "id": 2423, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create_items_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2424, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2425, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2426, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2427, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2428, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2429, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2430, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2431, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2432, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2433, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the dataset view to be used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2434, + "kind": 32768, + "kindString": "Parameter", + "name": "view", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the signed URL should be valid." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2435, + "kind": 32768, + "kindString": "Parameter", + "name": "expires_in", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2436, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3681, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific dataset.\n\nProvides methods to manage a specific dataset, e.g. get it, update it, or download its items. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2312, + 2422, + 2325, + 2356, + 2317, + 2376, + 2419, + 2343, + 2328, + 2415, + 2396, + 2320 + ], + "title": "Methods" + }, + { + "children": [ + 3681 + ], + "title": "Properties" + } + ], + "id": 2311, + "module": "_resource_clients.dataset", + "name": "DatasetClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific dataset.\n\nProvides methods to manage a specific dataset, e.g. get it, update it, or download its items. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 59 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2438, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 743 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2443, + "module": "_resource_clients.dataset", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved dataset, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 756 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved dataset, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/get-dataset\n" + } + ] + }, + "flags": {}, + "id": 2444, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2445, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Dataset", + "target": "941" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2446, + "module": "_resource_clients.dataset", + "name": "update", + "parsedDocstring": { + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n", + "args": { + "name": "The new name for the dataset.", + "general_access": "Determines how others can access the dataset.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 772 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated dataset." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the dataset with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/update-dataset\n" + } + ] + }, + "flags": {}, + "id": 2447, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2448, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2449, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2450, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset", + "type": "reference", + "target": "941" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2451, + "module": "_resource_clients.dataset", + "name": "delete", + "parsedDocstring": { + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 798 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset/delete-dataset\n" + } + ] + }, + "flags": {}, + "id": 2452, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2453, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2454, + "module": "_resource_clients.dataset", + "name": "list_items", + "parsedDocstring": { + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "flatten": "A list of fields that should be flattened.", + "view": "Name of the dataset view to be used.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "A page of the list of dataset items according to the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 808 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A page of the list of dataset items according to the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the items of the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2455, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2456, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2457, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2458, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2459, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2460, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2461, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2462, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2463, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2464, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2465, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the dataset view to be used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2466, + "kind": 32768, + "kindString": "Parameter", + "name": "view", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2467, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2468, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "DatasetItemsPage", + "type": "reference", + "target": "2304" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2469, + "module": "_resource_clients.dataset", + "name": "iterate_items", + "parsedDocstring": { + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "fields": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 897 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the items in the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2470, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "iterate_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "0", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2471, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2472, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2473, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2474, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain in\nthe resulting record objects. Note that the fields in the outputted items are sorted the same way\nas they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2475, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2476, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2477, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2478, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2479, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2480, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2481, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2482, + "module": "_resource_clients.dataset", + "name": "get_items_as_bytes", + "parsedDocstring": { + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "item_format": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json.", + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "bom": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it.", + "delimiter": "A delimiter character for CSV files. The default delimiter is a simple comma (,).", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_header_row": "If True, then header row in the csv format is skipped.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "xml_root": "Overrides default root element name of xml output. By default the root element is items.", + "xml_row": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item.", + "flatten": "A list of fields that should be flattened.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset items as raw bytes." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 984 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset items as raw bytes." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the items in the dataset as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2483, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_items_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json." + } + ] + }, + "defaultValue": "'json'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2484, + "kind": 32768, + "kindString": "Parameter", + "name": "item_format", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2485, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2486, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2487, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2488, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2489, + "kind": 32768, + "kindString": "Parameter", + "name": "bom", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A delimiter character for CSV files. The default delimiter is a simple comma (,)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2490, + "kind": 32768, + "kindString": "Parameter", + "name": "delimiter", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2491, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2492, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2493, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2494, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then header row in the csv format is skipped." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2495, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_header_row", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2496, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default root element name of xml output. By default the root element is items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2497, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_root", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2498, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_row", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2499, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2500, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2501, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bytes", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "decorations": [ + { + "name": "asynccontextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2502, + "module": "_resource_clients.dataset", + "name": "stream_items", + "parsedDocstring": { + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n", + "args": { + "item_format": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json.", + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "clean": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value.", + "bom": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it.", + "delimiter": "A delimiter character for CSV files. The default delimiter is a simple comma (,).", + "fields": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter.", + "skip_empty": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value.", + "skip_header_row": "If True, then header row in the csv format is skipped.", + "skip_hidden": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character.", + "xml_root": "Overrides default root element name of xml output. By default the root element is items.", + "xml_row": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset items as a context-managed streaming `Response`." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1083 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset items as a context-managed streaming `Response`." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the items in the dataset as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\n" + } + ] + }, + "flags": {}, + "id": 2503, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "stream_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Format of the results, possible values are: json, jsonl, csv, html, xlsx, xml and rss.\nThe default value is json." + } + ] + }, + "defaultValue": "'json'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2504, + "kind": 32768, + "kindString": "Parameter", + "name": "item_format", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2505, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2506, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2507, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields (i.e. fields starting with\nthe # character). The clean parameter is just a shortcut for skip_hidden=True and skip_empty=True\nparameters. Note that since some objects might be skipped from the output, that the result might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2508, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All text responses are encoded in UTF-8 encoding. By default, csv files are prefixed with\nthe UTF-8 Byte Order Mark (BOM), while json, jsonl, xml, html and rss files are not. If you want\nto override this default behavior, specify bom=True query parameter to include the BOM or bom=False\nto skip it." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2509, + "kind": 32768, + "kindString": "Parameter", + "name": "bom", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A delimiter character for CSV files. The default delimiter is a simple comma (,)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2510, + "kind": 32768, + "kindString": "Parameter", + "name": "delimiter", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items, only these fields will remain\nin the resulting record objects. Note that the fields in the outputted items are sorted the same\nway as they are specified in the fields parameter. You can use this feature to effectively fix\nthe output format.\nYou can use this feature to effectively fix the output format." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2511, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2512, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed. Each field\nshould be either an array or an object. If the field is an array then every element of the array\nwill become a separate record and merged with parent object. If the unwound field is an object then\nit is merged with the parent object. If the unwound field is missing or its value is neither an array\nnor an object and therefore cannot be merged with a parent object, then the item gets preserved\nas it is. Note that the unwound items ignore the desc parameter." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2513, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output. Note that if used, the results might\ncontain less items than the limit value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2514, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then header row in the csv format is skipped." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2515, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_header_row", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output, i.e. fields starting with\nthe # character." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2516, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default root element name of xml output. By default the root element is items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2517, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_root", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overrides default element name that wraps each page or page function result object in xml output.\nBy default the element name is item." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2518, + "kind": 32768, + "kindString": "Parameter", + "name": "xml_row", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2519, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2520, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "HttpResponse", + "target": "1664" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2521, + "module": "_resource_clients.dataset", + "name": "push_items", + "parsedDocstring": { + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n", + "args": { + "items": "The items which to push in the dataset. Either a stringified JSON, a dictionary, or a list\nof strings or dictionaries.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1183 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Push items to the dataset.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/item-collection/put-items\n" + } + ] + }, + "flags": {}, + "id": 2522, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "push_items", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The items which to push in the dataset. Either a stringified JSON, a dictionary, or a list\nof strings or dictionaries." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2523, + "kind": 32768, + "kindString": "Parameter", + "name": "items", + "type": { + "name": "JsonSerializable", + "type": "reference", + "target": "1583" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2524, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2525, + "module": "_resource_clients.dataset", + "name": "get_statistics", + "parsedDocstring": { + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The dataset statistics or None if the dataset does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1211 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The dataset statistics or None if the dataset does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the dataset statistics.\n\nhttps://docs.apify.com/api/v2#tag/DatasetsStatistics/operation/dataset_statistics_get\n" + } + ] + }, + "flags": {}, + "id": 2526, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_statistics", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2527, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "DatasetStatistics | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "DatasetStatistics", + "target": "997" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2528, + "module": "_resource_clients.dataset", + "name": "create_items_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n", + "args": { + "offset": "Number of items that should be skipped at the start. The default value is 0.", + "limit": "Maximum number of items to return. By default there is no limit.", + "clean": "If True, returns only non-empty items and skips hidden fields.", + "desc": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True.", + "fields": "A list of fields which should be picked from the items.", + "omit": "A list of fields which should be omitted from the items.", + "unwind": "A list of fields which should be unwound, in order which they should be processed.", + "skip_empty": "If True, then empty items are skipped from the output.", + "skip_hidden": "If True, then hidden fields are skipped from the output.", + "flatten": "A list of fields that should be flattened.", + "view": "Name of the dataset view to be used.", + "expires_in": "How long the signed URL should be valid.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The public dataset items URL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1236 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The public dataset items URL." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access dataset items.\n\nIf the client has permission to access the dataset's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `offset`) will be included as query parameters in the URL.\n" + } + ] + }, + "flags": {}, + "id": 2529, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create_items_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of items that should be skipped at the start. The default value is 0." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2530, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2531, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, returns only non-empty items and skips hidden fields." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2532, + "kind": 32768, + "kindString": "Parameter", + "name": "clean", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By default, results are returned in the same order as they were stored. To reverse the order,\nset this parameter to True." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2533, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be picked from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2534, + "kind": 32768, + "kindString": "Parameter", + "name": "fields", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be omitted from the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2535, + "kind": 32768, + "kindString": "Parameter", + "name": "omit", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields which should be unwound, in order which they should be processed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2536, + "kind": 32768, + "kindString": "Parameter", + "name": "unwind", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then empty items are skipped from the output." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2537, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_empty", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, then hidden fields are skipped from the output." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2538, + "kind": 32768, + "kindString": "Parameter", + "name": "skip_hidden", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A list of fields that should be flattened." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2539, + "kind": 32768, + "kindString": "Parameter", + "name": "flatten", + "type": { + "name": "list[str] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "str" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the dataset view to be used." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2540, + "kind": 32768, + "kindString": "Parameter", + "name": "view", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the signed URL should be valid." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2541, + "kind": 32768, + "kindString": "Parameter", + "name": "expires_in", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2542, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3654, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific dataset.\n\nProvides methods to manage a specific dataset, e.g. get it, update it, or download its items. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2438, + 2528, + 2451, + 2443, + 2482, + 2525, + 2469, + 2454, + 2521, + 2502, + 2446 + ], + "title": "Methods" + }, + { + "children": [ + 3654 + ], + "title": "Properties" + } + ], + "id": 2437, + "module": "_resource_clients.dataset", + "name": "DatasetClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific dataset.\n\nProvides methods to manage a specific dataset, e.g. get it, update it, or download its items. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 736 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2544, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2548, + "module": "_resource_clients.dataset_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n", + "args": { + "unnamed": "Whether to include unnamed datasets in the list.", + "limit": "How many datasets to retrieve.", + "offset": "What dataset to include as first when retrieving the list.", + "desc": "Whether to sort the datasets in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available datasets matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available datasets matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n" + } + ] + }, + "flags": {}, + "id": 2549, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed datasets in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2550, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many datasets to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2551, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What dataset to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2552, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the datasets in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2553, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2554, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfDatasets", + "type": "reference", + "target": "930" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2555, + "module": "_resource_clients.dataset_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n", + "args": { + "name": "The name of the dataset to retrieve or create.", + "schema": "The schema of the dataset.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 58 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created dataset." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n" + } + ] + }, + "flags": {}, + "id": 2556, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the dataset to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2557, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The schema of the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2558, + "kind": 32768, + "kindString": "Parameter", + "name": "schema", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2559, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset", + "type": "reference", + "target": "941" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3682, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the dataset collection.\n\nProvides methods to manage the dataset collection, e.g. list or create datasets. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2544, + 2555, + 2548 + ], + "title": "Methods" + }, + { + "children": [ + 3682 + ], + "title": "Properties" + } + ], + "id": 2543, + "module": "_resource_clients.dataset_collection", + "name": "DatasetCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the dataset collection.\n\nProvides methods to manage the dataset collection, e.g. list or create datasets. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2561, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 89 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2565, + "module": "_resource_clients.dataset_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n", + "args": { + "unnamed": "Whether to include unnamed datasets in the list.", + "limit": "How many datasets to retrieve.", + "offset": "What dataset to include as first when retrieving the list.", + "desc": "Whether to sort the datasets in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available datasets matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 100 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available datasets matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available datasets.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets\n" + } + ] + }, + "flags": {}, + "id": 2566, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed datasets in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2567, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many datasets to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2568, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What dataset to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2569, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the datasets in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2570, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2571, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfDatasets", + "type": "reference", + "target": "930" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2572, + "module": "_resource_clients.dataset_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n", + "args": { + "name": "The name of the dataset to retrieve or create.", + "schema": "The schema of the dataset.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created dataset." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 126 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created dataset." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named dataset, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/datasets/dataset-collection/create-dataset\n" + } + ] + }, + "flags": {}, + "id": 2573, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the dataset to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2574, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The schema of the dataset." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2575, + "kind": 32768, + "kindString": "Parameter", + "name": "schema", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2576, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Dataset", + "type": "reference", + "target": "941" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3655, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the dataset collection.\n\nProvides methods to manage the dataset collection, e.g. list or create datasets. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2561, + 2572, + 2565 + ], + "title": "Methods" + }, + { + "children": [ + 3655 + ], + "title": "Properties" + } + ], + "id": 2560, + "module": "_resource_clients.dataset_collection", + "name": "DatasetCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the dataset collection.\n\nProvides methods to manage the dataset collection, e.g. list or create datasets. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/dataset_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 82 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2578, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 78 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2583, + "module": "_resource_clients.key_value_store", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved key-value store, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 91 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved key-value store, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n" + } + ] + }, + "flags": {}, + "id": 2584, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2585, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "KeyValueStore", + "target": "869" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2586, + "module": "_resource_clients.key_value_store", + "name": "update", + "parsedDocstring": { + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n", + "args": { + "name": "The new name for key-value store.", + "general_access": "Determines how others can access the key-value store.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 107 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated key-value store." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n" + } + ] + }, + "flags": {}, + "id": 2587, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2588, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2589, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2590, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore", + "type": "reference", + "target": "869" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2591, + "module": "_resource_clients.key_value_store", + "name": "delete", + "parsedDocstring": { + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 129 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n" + } + ] + }, + "flags": {}, + "id": 2592, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2593, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2594, + "module": "_resource_clients.key_value_store", + "name": "list_keys", + "parsedDocstring": { + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n", + "args": { + "limit": "Number of keys to be returned. Maximum value is 1000.", + "exclusive_start_key": "All keys up to this one (including) are skipped from the result.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of keys in the key-value store matching the given arguments." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 139 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of keys in the key-value store matching the given arguments." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "flags": {}, + "id": 2595, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list_keys", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of keys to be returned. Maximum value is 1000." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2596, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All keys up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2597, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2598, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2599, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2600, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2601, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfKeys", + "type": "reference", + "target": "903" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2602, + "module": "_resource_clients.key_value_store", + "name": "iterate_keys", + "parsedDocstring": { + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n", + "args": { + "limit": "Maximum number of keys to return. By default there is no limit.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 182 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "flags": {}, + "id": 2603, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "iterate_keys", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of keys to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2604, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2605, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2606, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2607, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2608, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreKey", + "target": "898" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2609, + "module": "_resource_clients.key_value_store", + "name": "get_record", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 234 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2610, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2611, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2612, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2613, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2614, + "module": "_resource_clients.key_value_store", + "name": "record_exists", + "parsedDocstring": { + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n", + "args": { + "key": "Key of the record to check.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "True if the record exists, False otherwise." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 266 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "True if the record exists, False otherwise." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n" + } + ] + }, + "flags": {}, + "id": 2615, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "record_exists", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to check." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2616, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2617, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2618, + "module": "_resource_clients.key_value_store", + "name": "get_record_as_bytes", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 293 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2619, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_record_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2620, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2621, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2622, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [ + { + "name": "contextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2623, + "module": "_resource_clients.key_value_store", + "name": "stream_record", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record as a context-managed streaming Response, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 326 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record as a context-managed streaming Response, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2624, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "stream_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2625, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2626, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2627, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2628, + "module": "_resource_clients.key_value_store", + "name": "set_record", + "parsedDocstring": { + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n", + "args": { + "key": "The key of the record to save the value to.", + "value": "The value to save into the record.", + "content_type": "The content type of the saved value.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 364 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n" + } + ] + }, + "flags": {}, + "id": 2629, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "set_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key of the record to save the value to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2630, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to save into the record." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2631, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the saved value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2632, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2633, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2634, + "module": "_resource_clients.key_value_store", + "name": "delete_record", + "parsedDocstring": { + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n", + "args": { + "key": "The key of the record which to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 395 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n" + } + ] + }, + "flags": {}, + "id": 2635, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key of the record which to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2636, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2637, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2638, + "module": "_resource_clients.key_value_store", + "name": "get_record_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n", + "args": { + "key": "The key for which the URL should be generated.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "A public URL that can be used to access the value of the given key in the KVS." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 411 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A public URL that can be used to access the value of the given key in the KVS." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n" + } + ] + }, + "flags": {}, + "id": 2639, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_record_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key for which the URL should be generated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2640, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2641, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2642, + "module": "_resource_clients.key_value_store", + "name": "create_keys_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n", + "args": { + "limit": "Number of keys to be returned. Maximum value is 1000.", + "exclusive_start_key": "All keys up to this one (including) are skipped from the result.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "expires_in": "How long the signed URL should be valid from the time it is generated.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The public key-value store keys URL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 442 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The public key-value store keys URL." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n" + } + ] + }, + "flags": {}, + "id": 2643, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create_keys_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of keys to be returned. Maximum value is 1000." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2644, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All keys up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2645, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2646, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2647, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the signed URL should be valid from the time it is generated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2648, + "kind": 32768, + "kindString": "Parameter", + "name": "expires_in", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2649, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3683, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific key-value store.\n\nProvides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2578, + 2642, + 2591, + 2634, + 2583, + 2609, + 2618, + 2638, + 2602, + 2594, + 2614, + 2628, + 2623, + 2586 + ], + "title": "Methods" + }, + { + "children": [ + 3683 + ], + "title": "Properties" + } + ], + "id": 2577, + "module": "_resource_clients.key_value_store", + "name": "KeyValueStoreClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific key-value store.\n\nProvides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 71 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2651, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 508 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2656, + "module": "_resource_clients.key_value_store", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved key-value store, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 521 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved key-value store, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store\n" + } + ] + }, + "flags": {}, + "id": 2657, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2658, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "KeyValueStore", + "target": "869" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2659, + "module": "_resource_clients.key_value_store", + "name": "update", + "parsedDocstring": { + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n", + "args": { + "name": "The new name for key-value store.", + "general_access": "Determines how others can access the key-value store.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 537 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated key-value store." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the key-value store with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store\n" + } + ] + }, + "flags": {}, + "id": 2660, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2661, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2662, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2663, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore", + "type": "reference", + "target": "869" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2664, + "module": "_resource_clients.key_value_store", + "name": "delete", + "parsedDocstring": { + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 559 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store\n" + } + ] + }, + "flags": {}, + "id": 2665, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2666, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2667, + "module": "_resource_clients.key_value_store", + "name": "list_keys", + "parsedDocstring": { + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n", + "args": { + "limit": "Number of keys to be returned. Maximum value is 1000.", + "exclusive_start_key": "All keys up to this one (including) are skipped from the result.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of keys in the key-value store matching the given arguments." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 569 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of keys in the key-value store matching the given arguments." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "flags": {}, + "id": 2668, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list_keys", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of keys to be returned. Maximum value is 1000." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2669, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All keys up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2670, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2671, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2672, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2673, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2674, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfKeys", + "type": "reference", + "target": "903" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2675, + "module": "_resource_clients.key_value_store", + "name": "iterate_keys", + "parsedDocstring": { + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n", + "args": { + "limit": "Maximum number of keys to return. By default there is no limit.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 612 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Iterate over the keys in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys\n" + } + ] + }, + "flags": {}, + "id": 2676, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "iterate_keys", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of keys to return. By default there is no limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2677, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2678, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2679, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2680, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2681, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "KeyValueStoreKey", + "target": "898" + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2682, + "module": "_resource_clients.key_value_store", + "name": "get_record", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 665 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2683, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2684, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2685, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2686, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2687, + "module": "_resource_clients.key_value_store", + "name": "record_exists", + "parsedDocstring": { + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n", + "args": { + "key": "Key of the record to check.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "True if the record exists, False otherwise." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 697 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "True if the record exists, False otherwise." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Check if given record is present in the key-value store.\n\nhttps://docs.apify.com/api/v2/key-value-store-record-head\n" + } + ] + }, + "flags": {}, + "id": 2688, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "record_exists", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to check." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2689, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2690, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bool", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2691, + "module": "_resource_clients.key_value_store", + "name": "get_record_as_bytes", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 724 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, without parsing it.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2692, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_record_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2693, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2694, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2695, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "decorations": [ + { + "name": "asynccontextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2696, + "module": "_resource_clients.key_value_store", + "name": "stream_record", + "parsedDocstring": { + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n", + "args": { + "key": "Key of the record to retrieve.", + "signature": "Signature used to access the items.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The requested record as a context-managed streaming Response, or None, if the record does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 759 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The requested record as a context-managed streaming Response, or None, if the record does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the given record from the key-value store, as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record\n" + } + ] + }, + "flags": {}, + "id": 2697, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "stream_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Key of the record to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2698, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Signature used to access the items." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2699, + "kind": 32768, + "kindString": "Parameter", + "name": "signature", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2700, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2701, + "module": "_resource_clients.key_value_store", + "name": "set_record", + "parsedDocstring": { + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n", + "args": { + "key": "The key of the record to save the value to.", + "value": "The value to save into the record.", + "content_type": "The content type of the saved value.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 797 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set a value to the given record in the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record\n" + } + ] + }, + "flags": {}, + "id": 2702, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "set_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key of the record to save the value to." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2703, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to save into the record." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2704, + "kind": 32768, + "kindString": "Parameter", + "name": "value", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the saved value." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 2705, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2706, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2707, + "module": "_resource_clients.key_value_store", + "name": "delete_record", + "parsedDocstring": { + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n", + "args": { + "key": "The key of the record which to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 828 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the specified record from the key-value store.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record\n" + } + ] + }, + "flags": {}, + "id": 2708, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete_record", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key of the record which to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2709, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2710, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2711, + "module": "_resource_clients.key_value_store", + "name": "get_record_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n", + "args": { + "key": "The key for which the URL should be generated.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "A public URL that can be used to access the value of the given key in the KVS." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 844 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A public URL that can be used to access the value of the given key in the KVS." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store record.\n\nIf the client has permission to access the key-value store's URL signing key, the URL will include a signature\nto verify its authenticity.\n" + } + ] + }, + "flags": {}, + "id": 2712, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_record_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The key for which the URL should be generated." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2713, + "kind": 32768, + "kindString": "Parameter", + "name": "key", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2714, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2715, + "module": "_resource_clients.key_value_store", + "name": "create_keys_public_url", + "parsedDocstring": { + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n", + "args": { + "limit": "Number of keys to be returned. Maximum value is 1000.", + "exclusive_start_key": "All keys up to this one (including) are skipped from the result.", + "collection": "The name of the collection in store schema to list keys from.", + "prefix": "The prefix of the keys to be listed.", + "expires_in": "How long the signed URL should be valid from the time it is generated.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The public key-value store keys URL." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 875 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The public key-value store keys URL." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Generate a URL that can be used to access key-value store keys.\n\nIf the client has permission to access the key-value store's URL signing key,\nthe URL will include a signature to verify its authenticity.\n\nYou can optionally control how long the signed URL should be valid using the `expires_in` option.\nThis value sets the expiration duration from the time the URL is generated.\nIf not provided, the URL will not expire.\n\nAny other options (like `limit` or `prefix`) will be included as query parameters in the URL.\n" + } + ] + }, + "flags": {}, + "id": 2716, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create_keys_public_url", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Number of keys to be returned. Maximum value is 1000." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2717, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All keys up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2718, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the collection in store schema to list keys from." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2719, + "kind": 32768, + "kindString": "Parameter", + "name": "collection", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prefix of the keys to be listed." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2720, + "kind": 32768, + "kindString": "Parameter", + "name": "prefix", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the signed URL should be valid from the time it is generated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2721, + "kind": 32768, + "kindString": "Parameter", + "name": "expires_in", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2722, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str", + "type": "reference" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3656, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific key-value store.\n\nProvides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2651, + 2715, + 2664, + 2707, + 2656, + 2682, + 2691, + 2711, + 2675, + 2667, + 2687, + 2701, + 2696, + 2659 + ], + "title": "Methods" + }, + { + "children": [ + 3656 + ], + "title": "Properties" + } + ], + "id": 2650, + "module": "_resource_clients.key_value_store", + "name": "KeyValueStoreClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific key-value store.\n\nProvides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 501 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2724, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2728, + "module": "_resource_clients.key_value_store_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n", + "args": { + "unnamed": "Whether to include unnamed key-value stores in the list.", + "limit": "How many key-value stores to retrieve.", + "offset": "What key-value store to include as first when retrieving the list.", + "desc": "Whether to sort the key-value stores in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available key-value stores matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 37 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available key-value stores matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n" + } + ] + }, + "flags": {}, + "id": 2729, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed key-value stores in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2730, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many key-value stores to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2731, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What key-value store to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2732, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the key-value stores in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2733, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2734, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfKeyValueStores", + "type": "reference", + "target": "885" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2735, + "module": "_resource_clients.key_value_store_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n", + "args": { + "name": "The name of the key-value store to retrieve or create.", + "schema": "The schema of the key-value store.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 63 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created key-value store." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n" + } + ] + }, + "flags": {}, + "id": 2736, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the key-value store to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2737, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The schema of the key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2738, + "kind": 32768, + "kindString": "Parameter", + "name": "schema", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2739, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore", + "type": "reference", + "target": "869" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3684, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the key-value store collection.\n\nProvides methods to manage the key-value store collection, e.g. list or create key-value stores. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2724, + 2735, + 2728 + ], + "title": "Methods" + }, + { + "children": [ + 3684 + ], + "title": "Properties" + } + ], + "id": 2723, + "module": "_resource_clients.key_value_store_collection", + "name": "KeyValueStoreCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the key-value store collection.\n\nProvides methods to manage the key-value store collection, e.g. list or create key-value stores. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2741, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 94 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2745, + "module": "_resource_clients.key_value_store_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n", + "args": { + "unnamed": "Whether to include unnamed key-value stores in the list.", + "limit": "How many key-value stores to retrieve.", + "offset": "What key-value store to include as first when retrieving the list.", + "desc": "Whether to sort the key-value stores in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available key-value stores matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 105 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available key-value stores matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available key-value stores.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/get-list-of-key-value-stores\n" + } + ] + }, + "flags": {}, + "id": 2746, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed key-value stores in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2747, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many key-value stores to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2748, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What key-value store to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2749, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the key-value stores in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2750, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2751, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfKeyValueStores", + "type": "reference", + "target": "885" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2752, + "module": "_resource_clients.key_value_store_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n", + "args": { + "name": "The name of the key-value store to retrieve or create.", + "schema": "The schema of the key-value store.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created key-value store." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 131 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created key-value store." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named key-value store, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/key-value-stores/store-collection/create-key-value-store\n" + } + ] + }, + "flags": {}, + "id": 2753, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the key-value store to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2754, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The schema of the key-value store." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2755, + "kind": 32768, + "kindString": "Parameter", + "name": "schema", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2756, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "KeyValueStore", + "type": "reference", + "target": "869" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3657, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the key-value store collection.\n\nProvides methods to manage the key-value store collection, e.g. list or create key-value stores. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2741, + 2752, + 2745 + ], + "title": "Methods" + }, + { + "children": [ + 3657 + ], + "title": "Properties" + } + ], + "id": 2740, + "module": "_resource_clients.key_value_store_collection", + "name": "KeyValueStoreCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the key-value store collection.\n\nProvides methods to manage the key-value store collection, e.g. list or create key-value stores. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/key_value_store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 87 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2758, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2762, + "module": "_resource_clients.log", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 37 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2763, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2764, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2765, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2766, + "module": "_resource_clients.log", + "name": "get_as_bytes", + "parsedDocstring": { + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log as raw bytes, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 64 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log as raw bytes, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2767, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2768, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2769, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bytes | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bytes" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [ + { + "name": "contextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2770, + "module": "_resource_clients.log", + "name": "stream", + "parsedDocstring": { + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log as a context-managed streaming `Response`, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 92 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log as a context-managed streaming `Response`, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2771, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "stream", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2772, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2773, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Iterator", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "HttpResponse", + "target": "1664" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3685, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific log.\n\nProvides methods to manage logs, e.g. get or stream them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2758, + 2762, + 2766, + 2770 + ], + "title": "Methods" + }, + { + "children": [ + 3685 + ], + "title": "Properties" + } + ], + "id": 2757, + "module": "_resource_clients.log", + "name": "LogClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific log.\n\nProvides methods to manage logs, e.g. get or stream them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2775, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 131 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2779, + "module": "_resource_clients.log", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 142 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as text.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2780, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2781, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2782, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2783, + "module": "_resource_clients.log", + "name": "get_as_bytes", + "parsedDocstring": { + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log as raw bytes, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 169 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log as raw bytes, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as raw bytes.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2784, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_as_bytes", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2785, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2786, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "bytes | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bytes" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "decorations": [ + { + "name": "asynccontextmanager" + } + ], + "flags": {}, + "groups": [], + "id": 2787, + "module": "_resource_clients.log", + "name": "stream", + "parsedDocstring": { + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n", + "args": { + "raw": "If true, the log will include formatting. For example, coloring character sequences.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved log as a context-managed streaming `Response`, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 197 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved log as a context-managed streaming `Response`, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the log as a stream.\n\nhttps://docs.apify.com/api/v2#/reference/logs/log/get-log\n" + } + ] + }, + "flags": {}, + "id": 2788, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "stream", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the log will include formatting. For example, coloring character sequences." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2789, + "kind": 32768, + "kindString": "Parameter", + "name": "raw", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2790, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AsyncIterator", + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "HttpResponse", + "target": "1664" + }, + { + "type": "literal", + "value": null + } + ] + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3658, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific log.\n\nProvides methods to manage logs, e.g. get or stream them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2775, + 2779, + 2783, + 2787 + ], + "title": "Methods" + }, + { + "children": [ + 3658 + ], + "title": "Properties" + } + ], + "id": 2774, + "module": "_resource_clients.log", + "name": "LogClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific log.\n\nProvides methods to manage logs, e.g. get or stream them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/log.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 124 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "" + } + ] + }, + "flags": {}, + "groups": [], + "id": 2791, + "module": "_resource_clients.request_queue", + "name": "logger", + "parsedDocstring": { + "text": "" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 49 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + } + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize a new instance.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2793, + "module": "_resource_clients.request_queue", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize a new instance.\n", + "args": { + "client_key": "A unique identifier of the client accessing the request queue." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 64 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize a new instance.\n" + } + ] + }, + "flags": {}, + "id": 2794, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2795, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "defaultValue": "'request-queues'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2796, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of the client accessing the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2797, + "kind": 32768, + "kindString": "Parameter", + "name": "client_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2798, + "kind": 32768, + "kindString": "Parameter", + "name": "kwargs", + "type": { + "name": "Any", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2799, + "module": "_resource_clients.request_queue", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request queue, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 84 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request queue, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2800, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2801, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestQueue", + "target": "1032" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2802, + "module": "_resource_clients.request_queue", + "name": "update", + "parsedDocstring": { + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n", + "args": { + "name": "The new name for the request queue.", + "general_access": "Determines how others can access the request queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 100 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated request queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2803, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2804, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2805, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2806, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue", + "type": "reference", + "target": "1032" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2807, + "module": "_resource_clients.request_queue", + "name": "delete", + "parsedDocstring": { + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 122 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2808, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2809, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2810, + "module": "_resource_clients.request_queue", + "name": "list_head", + "parsedDocstring": { + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n", + "args": { + "limit": "How many requests to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The desired number of requests from the beginning of the queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 132 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The desired number of requests from the beginning of the queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n" + } + ] + }, + "flags": {}, + "id": 2811, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list_head", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2812, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2813, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueueHead", + "type": "reference", + "target": "1138" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2814, + "module": "_resource_clients.request_queue", + "name": "list_and_lock_head", + "parsedDocstring": { + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n", + "args": { + "lock_duration": "How long the requests will be locked for.", + "limit": "How many requests to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The desired number of locked requests from the beginning of the queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 156 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The desired number of locked requests from the beginning of the queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n" + } + ] + }, + "flags": {}, + "id": 2815, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list_and_lock_head", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the requests will be locked for." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2816, + "kind": 32768, + "kindString": "Parameter", + "name": "lock_duration", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2817, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2818, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "LockedRequestQueueHead", + "type": "reference", + "target": "1155" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2819, + "module": "_resource_clients.request_queue", + "name": "add_request", + "parsedDocstring": { + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n", + "args": { + "request": "The request to add to the queue.", + "forefront": "Whether to add the request to the head or the end of the queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The added request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 191 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The added request." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n" + } + ] + }, + "flags": {}, + "id": 2820, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "add_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The request to add to the queue." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2821, + "kind": 32768, + "kindString": "Parameter", + "name": "request", + "type": { + "name": "dict | RequestInput", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "RequestInput", + "target": "1602" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to add the request to the head or the end of the queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2822, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2823, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2824, + "module": "_resource_clients.request_queue", + "name": "get_request", + "parsedDocstring": { + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n", + "args": { + "request_id": "ID of the request to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request, or None, if it did not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 226 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request, or None, if it did not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n" + } + ] + }, + "flags": {}, + "id": 2825, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2826, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2827, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Request | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Request", + "target": "1094" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2828, + "module": "_resource_clients.request_queue", + "name": "update_request", + "parsedDocstring": { + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n", + "args": { + "request": "The updated request.", + "forefront": "Whether to put the updated request in the beginning or the end of the queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 253 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated request." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n" + } + ] + }, + "flags": {}, + "id": 2829, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The updated request." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2830, + "kind": 32768, + "kindString": "Parameter", + "name": "request", + "type": { + "name": "dict | Request", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "Request", + "target": "1094" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the updated request in the beginning or the end of the queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2831, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2832, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2833, + "module": "_resource_clients.request_queue", + "name": "delete_request", + "parsedDocstring": { + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n", + "args": { + "request_id": "ID of the request to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 288 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n" + } + ] + }, + "flags": {}, + "id": 2834, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2835, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2836, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2837, + "module": "_resource_clients.request_queue", + "name": "prolong_request_lock", + "parsedDocstring": { + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n", + "args": { + "request_id": "ID of the request to prolong the lock.", + "forefront": "Whether to put the request in the beginning or the end of the queue after lock expires.", + "lock_duration": "By how much to prolong the lock.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 308 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n" + } + ] + }, + "flags": {}, + "id": 2838, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "prolong_request_lock", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to prolong the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2839, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the request in the beginning or the end of the queue after lock expires." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2840, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By how much to prolong the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2841, + "kind": 32768, + "kindString": "Parameter", + "name": "lock_duration", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2842, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestLockInfo | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestLockInfo", + "target": "1167" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2843, + "module": "_resource_clients.request_queue", + "name": "delete_request_lock", + "parsedDocstring": { + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n", + "args": { + "request_id": "ID of the request to delete the lock.", + "forefront": "Whether to put the request in the beginning or the end of the queue after the lock is deleted.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 342 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n" + } + ] + }, + "flags": {}, + "id": 2844, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete_request_lock", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to delete the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2845, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the request in the beginning or the end of the queue after the lock is deleted." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2846, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2847, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2848, + "module": "_resource_clients.request_queue", + "name": "batch_add_requests", + "parsedDocstring": { + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n", + "args": { + "requests": "List of requests to be added to the queue.", + "forefront": "Whether to add requests to the front of the queue.", + "max_parallel": "Specifies the maximum number of parallel tasks for API calls. This is only applicable\nto the async client. For the sync client, this value must be set to 1, as parallel execution\nis not supported.", + "max_unprocessed_requests_retries": "Deprecated argument. Will be removed in next major release.", + "min_delay_between_unprocessed_requests_retries": "Deprecated argument. Will be removed in next major release.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Result containing lists of processed and unprocessed requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 367 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Result containing lists of processed and unprocessed requests." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n" + } + ] + }, + "flags": {}, + "id": 2849, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "batch_add_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of requests to be added to the queue." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2850, + "kind": 32768, + "kindString": "Parameter", + "name": "requests", + "type": { + "name": "list[RequestInput] | list[dict]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "RequestInput", + "target": "1602" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to add requests to the front of the queue." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2851, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum number of parallel tasks for API calls. This is only applicable\nto the async client. For the sync client, this value must be set to 1, as parallel execution\nis not supported." + } + ] + }, + "defaultValue": "1", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2852, + "kind": 32768, + "kindString": "Parameter", + "name": "max_parallel", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Deprecated argument. Will be removed in next major release." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2853, + "kind": 32768, + "kindString": "Parameter", + "name": "max_unprocessed_requests_retries", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Deprecated argument. Will be removed in next major release." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2854, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_unprocessed_requests_retries", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2855, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BatchAddResult", + "type": "reference", + "target": "1066" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2856, + "module": "_resource_clients.request_queue", + "name": "batch_delete_requests", + "parsedDocstring": { + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n", + "args": { + "requests": "List of the requests to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 455 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n" + } + ] + }, + "flags": {}, + "id": 2857, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "batch_delete_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of the requests to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2858, + "kind": 32768, + "kindString": "Parameter", + "name": "requests", + "type": { + "name": "list[RequestDeleteInput] | list[dict]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "RequestDeleteInput", + "target": "1608" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2859, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BatchDeleteResult", + "type": "reference", + "target": "1077" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2860, + "module": "_resource_clients.request_queue", + "name": "list_requests", + "parsedDocstring": { + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n", + "args": { + "limit": "How many requests to retrieve.", + "exclusive_start_id": "All requests up to this one (including) are skipped from the result.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 489 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n" + } + ] + }, + "flags": {}, + "id": 2861, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2862, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All requests up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2863, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2864, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRequests", + "type": "reference", + "target": "1108" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2865, + "module": "_resource_clients.request_queue", + "name": "unlock_requests", + "parsedDocstring": { + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Result of the unlock operation containing the count of unlocked requests" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 517 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Result of the unlock operation containing the count of unlocked requests" + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n" + } + ] + }, + "flags": {}, + "id": 2866, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "unlock_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2867, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "UnlockRequestsResult", + "type": "reference", + "target": "1084" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3686, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific request queue.\n\nProvides methods to manage a specific request queue, e.g. update it, delete it, or manage its requests. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2793, + 2819, + 2848, + 2856, + 2807, + 2833, + 2843, + 2799, + 2824, + 2814, + 2810, + 2860, + 2837, + 2865, + 2802, + 2828 + ], + "title": "Methods" + }, + { + "children": [ + 3686 + ], + "title": "Properties" + } + ], + "id": 2792, + "module": "_resource_clients.request_queue", + "name": "RequestQueueClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific request queue.\n\nProvides methods to manage a specific request queue, e.g. update it, delete it, or manage its requests. Obtain an\ninstance via an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize a new instance.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2869, + "module": "_resource_clients.request_queue", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize a new instance.\n", + "args": { + "client_key": "A unique identifier of the client accessing the request queue." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 549 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize a new instance.\n" + } + ] + }, + "flags": {}, + "id": 2870, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2871, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "defaultValue": "'request-queues'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2872, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of the client accessing the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2873, + "kind": 32768, + "kindString": "Parameter", + "name": "client_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2874, + "kind": 32768, + "kindString": "Parameter", + "name": "kwargs", + "type": { + "name": "Any", + "type": "reference" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2875, + "module": "_resource_clients.request_queue", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request queue, or None, if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 569 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request queue, or None, if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/get-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2876, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2877, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestQueue", + "target": "1032" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2878, + "module": "_resource_clients.request_queue", + "name": "update", + "parsedDocstring": { + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n", + "args": { + "name": "The new name for the request queue.", + "general_access": "Determines how others can access the request queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 585 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated request queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the request queue with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/update-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2879, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new name for the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2880, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the request queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2881, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2882, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue", + "type": "reference", + "target": "1032" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2883, + "module": "_resource_clients.request_queue", + "name": "delete", + "parsedDocstring": { + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 607 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the request queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue/delete-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2884, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2885, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2886, + "module": "_resource_clients.request_queue", + "name": "list_head", + "parsedDocstring": { + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n", + "args": { + "limit": "How many requests to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The desired number of requests from the beginning of the queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 617 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The desired number of requests from the beginning of the queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of requests from the beginning of the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head/get-head\n" + } + ] + }, + "flags": {}, + "id": 2887, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list_head", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2888, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2889, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueueHead", + "type": "reference", + "target": "1138" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2890, + "module": "_resource_clients.request_queue", + "name": "list_and_lock_head", + "parsedDocstring": { + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n", + "args": { + "lock_duration": "How long the requests will be locked for.", + "limit": "How many requests to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The desired number of locked requests from the beginning of the queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 641 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The desired number of locked requests from the beginning of the queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a given number of unlocked requests from the beginning of the queue and lock them for a given time.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-head-with-locks/get-head-and-lock\n" + } + ] + }, + "flags": {}, + "id": 2891, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list_and_lock_head", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long the requests will be locked for." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2892, + "kind": 32768, + "kindString": "Parameter", + "name": "lock_duration", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2893, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2894, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "LockedRequestQueueHead", + "type": "reference", + "target": "1155" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2895, + "module": "_resource_clients.request_queue", + "name": "add_request", + "parsedDocstring": { + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n", + "args": { + "request": "The request to add to the queue.", + "forefront": "Whether to add the request to the head or the end of the queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The added request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 676 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The added request." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Add a request to the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/add-request\n" + } + ] + }, + "flags": {}, + "id": 2896, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "add_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The request to add to the queue." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2897, + "kind": 32768, + "kindString": "Parameter", + "name": "request", + "type": { + "name": "dict | RequestInput", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "RequestInput", + "target": "1602" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to add the request to the head or the end of the queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2898, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2899, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2900, + "module": "_resource_clients.request_queue", + "name": "get_request", + "parsedDocstring": { + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n", + "args": { + "request_id": "ID of the request to retrieve.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request, or None, if it did not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 711 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request, or None, if it did not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/get-request\n" + } + ] + }, + "flags": {}, + "id": 2901, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to retrieve." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2902, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2903, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Request | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Request", + "target": "1094" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2904, + "module": "_resource_clients.request_queue", + "name": "update_request", + "parsedDocstring": { + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n", + "args": { + "request": "The updated request.", + "forefront": "Whether to put the updated request in the beginning or the end of the queue.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated request." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 736 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated request." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update a request in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/update-request\n" + } + ] + }, + "flags": {}, + "id": 2905, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The updated request." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2906, + "kind": 32768, + "kindString": "Parameter", + "name": "request", + "type": { + "name": "dict | Request", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "Request", + "target": "1094" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the updated request in the beginning or the end of the queue." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2907, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2908, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestRegistration", + "type": "reference", + "target": "1117" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2909, + "module": "_resource_clients.request_queue", + "name": "delete_request", + "parsedDocstring": { + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n", + "args": { + "request_id": "ID of the request to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 771 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete a request from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request/delete-request\n" + } + ] + }, + "flags": {}, + "id": 2910, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete_request", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2911, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2912, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2913, + "module": "_resource_clients.request_queue", + "name": "prolong_request_lock", + "parsedDocstring": { + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n", + "args": { + "request_id": "ID of the request to prolong the lock.", + "forefront": "Whether to put the request in the beginning or the end of the queue after lock expires.", + "lock_duration": "By how much to prolong the lock.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 789 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prolong the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock\n" + } + ] + }, + "flags": {}, + "id": 2914, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "prolong_request_lock", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to prolong the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2915, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the request in the beginning or the end of the queue after lock expires." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2916, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "By how much to prolong the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 2917, + "kind": 32768, + "kindString": "Parameter", + "name": "lock_duration", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2918, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestLockInfo | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RequestLockInfo", + "target": "1167" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2919, + "module": "_resource_clients.request_queue", + "name": "delete_request_lock", + "parsedDocstring": { + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n", + "args": { + "request_id": "ID of the request to delete the lock.", + "forefront": "Whether to put the request in the beginning or the end of the queue after the lock is deleted.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 823 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the lock on a request.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock\n" + } + ] + }, + "flags": {}, + "id": 2920, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete_request_lock", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the request to delete the lock." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2921, + "kind": 32768, + "kindString": "Parameter", + "name": "request_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to put the request in the beginning or the end of the queue after the lock is deleted." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2922, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2923, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2924, + "module": "_resource_clients.request_queue", + "name": "batch_add_requests", + "parsedDocstring": { + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n", + "args": { + "requests": "List of requests to be added to the queue.", + "forefront": "Whether to add requests to the front of the queue.", + "max_parallel": "Specifies the maximum number of parallel tasks for API calls. This is only applicable\nto the async client. For the sync client, this value must be set to 1, as parallel execution\nis not supported.", + "max_unprocessed_requests_retries": "Deprecated argument. Will be removed in next major release.", + "min_delay_between_unprocessed_requests_retries": "Deprecated argument. Will be removed in next major release.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Result containing lists of processed and unprocessed requests." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 896 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Result containing lists of processed and unprocessed requests." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Add requests to the request queue in batches.\n\nRequests are split into batches based on size and processed in parallel.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/add-requests\n" + } + ] + }, + "flags": {}, + "id": 2925, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "batch_add_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of requests to be added to the queue." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2926, + "kind": 32768, + "kindString": "Parameter", + "name": "requests", + "type": { + "name": "list[RequestInput] | list[dict]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "RequestInput", + "target": "1602" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to add requests to the front of the queue." + } + ] + }, + "defaultValue": "False", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2927, + "kind": 32768, + "kindString": "Parameter", + "name": "forefront", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the maximum number of parallel tasks for API calls. This is only applicable\nto the async client. For the sync client, this value must be set to 1, as parallel execution\nis not supported." + } + ] + }, + "defaultValue": "5", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2928, + "kind": 32768, + "kindString": "Parameter", + "name": "max_parallel", + "type": { + "name": "int", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Deprecated argument. Will be removed in next major release." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2929, + "kind": 32768, + "kindString": "Parameter", + "name": "max_unprocessed_requests_retries", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Deprecated argument. Will be removed in next major release." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2930, + "kind": 32768, + "kindString": "Parameter", + "name": "min_delay_between_unprocessed_requests_retries", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2931, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BatchAddResult", + "type": "reference", + "target": "1066" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2932, + "module": "_resource_clients.request_queue", + "name": "batch_delete_requests", + "parsedDocstring": { + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n", + "args": { + "requests": "List of the requests to delete.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 986 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete given requests from the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/batch-request-operations/delete-requests\n" + } + ] + }, + "flags": {}, + "id": 2933, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "batch_delete_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of the requests to delete." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 2934, + "kind": 32768, + "kindString": "Parameter", + "name": "requests", + "type": { + "name": "list[RequestDeleteInput] | list[dict]", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "RequestDeleteInput", + "target": "1608" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2935, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "BatchDeleteResult", + "type": "reference", + "target": "1077" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2936, + "module": "_resource_clients.request_queue", + "name": "list_requests", + "parsedDocstring": { + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n", + "args": { + "limit": "How many requests to retrieve.", + "exclusive_start_id": "All requests up to this one (including) are skipped from the result.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1019 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List requests in the queue.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/list-requests\n" + } + ] + }, + "flags": {}, + "id": 2937, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many requests to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2938, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "All requests up to this one (including) are skipped from the result." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2939, + "kind": 32768, + "kindString": "Parameter", + "name": "exclusive_start_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2940, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRequests", + "type": "reference", + "target": "1108" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2941, + "module": "_resource_clients.request_queue", + "name": "unlock_requests", + "parsedDocstring": { + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Result of the unlock operation containing the count of unlocked requests" + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 1047 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Result of the unlock operation containing the count of unlocked requests" + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Unlock all requests in the queue, which were locked by the same clientKey or from the same Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/request-collection/unlock-requests\n" + } + ] + }, + "flags": {}, + "id": 2942, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "unlock_requests", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2943, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "UnlockRequestsResult", + "type": "reference", + "target": "1084" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3659, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific request queue.\n\nProvides methods to manage a specific request queue, e.g. update it, delete it, or manage its requests. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2869, + 2895, + 2924, + 2932, + 2883, + 2909, + 2919, + 2875, + 2900, + 2890, + 2886, + 2936, + 2913, + 2941, + 2878, + 2904 + ], + "title": "Methods" + }, + { + "children": [ + 3659 + ], + "title": "Properties" + } + ], + "id": 2868, + "module": "_resource_clients.request_queue", + "name": "RequestQueueClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific request queue.\n\nProvides methods to manage a specific request queue, e.g. update it, delete it, or manage its requests. Obtain an\ninstance via an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 542 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2945, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2949, + "module": "_resource_clients.request_queue_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n", + "args": { + "unnamed": "Whether to include unnamed request queues in the list.", + "limit": "How many request queues to retrieve.", + "offset": "What request queue to include as first when retrieving the list.", + "desc": "Whether to sort therequest queues in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available request queues matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 37 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available request queues matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n" + } + ] + }, + "flags": {}, + "id": 2950, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed request queues in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2951, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many request queues to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2952, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What request queue to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2953, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort therequest queues in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2954, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2955, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRequestQueues", + "type": "reference", + "target": "1019" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2956, + "module": "_resource_clients.request_queue_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n", + "args": { + "name": "The name of the request queue to retrieve or create.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 63 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created request queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2957, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the request queue to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2958, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2959, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue", + "type": "reference", + "target": "1032" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3687, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the request queue collection.\n\nProvides methods to manage the request queue collection, e.g. list or create request queues. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2945, + 2956, + 2949 + ], + "title": "Methods" + }, + { + "children": [ + 3687 + ], + "title": "Properties" + } + ], + "id": 2944, + "module": "_resource_clients.request_queue_collection", + "name": "RequestQueueCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the request queue collection.\n\nProvides methods to manage the request queue collection, e.g. list or create request queues. Obtain an instance\nvia an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 19 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2961, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 92 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2965, + "module": "_resource_clients.request_queue_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n", + "args": { + "unnamed": "Whether to include unnamed request queues in the list.", + "limit": "How many request queues to retrieve.", + "offset": "What request queue to include as first when retrieving the list.", + "desc": "Whether to sort therequest queues in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available request queues matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 103 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available request queues matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available request queues.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/get-list-of-request-queues\n" + } + ] + }, + "flags": {}, + "id": 2966, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to include unnamed request queues in the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2967, + "kind": 32768, + "kindString": "Parameter", + "name": "unnamed", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many request queues to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2968, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What request queue to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2969, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort therequest queues in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2970, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2971, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRequestQueues", + "type": "reference", + "target": "1019" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2972, + "module": "_resource_clients.request_queue_collection", + "name": "get_or_create", + "parsedDocstring": { + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n", + "args": { + "name": "The name of the request queue to retrieve or create.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved or newly-created request queue." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 129 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved or newly-created request queue." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve a named request queue, or create a new one when it doesn't exist.\n\nhttps://docs.apify.com/api/v2#/reference/request-queues/queue-collection/create-request-queue\n" + } + ] + }, + "flags": {}, + "id": 2973, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_or_create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the request queue to retrieve or create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2974, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2975, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "RequestQueue", + "type": "reference", + "target": "1032" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3660, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the request queue collection.\n\nProvides methods to manage the request queue collection, e.g. list or create request queues. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2961, + 2972, + 2965 + ], + "title": "Methods" + }, + { + "children": [ + 3660 + ], + "title": "Properties" + } + ], + "id": 2960, + "module": "_resource_clients.request_queue_collection", + "name": "RequestQueueCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the request queue collection.\n\nProvides methods to manage the request queue collection, e.g. list or create request queues. Obtain an instance\nvia an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/request_queue_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 85 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2977, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 44 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2982, + "module": "_resource_clients.run", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 57 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n" + } + ] + }, + "flags": {}, + "id": 2983, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2984, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2985, + "module": "_resource_clients.run", + "name": "update", + "parsedDocstring": { + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n", + "args": { + "status_message": "The new status message for the run.", + "is_status_message_terminal": "Set this flag to True if this is the final status message of the Actor run.", + "general_access": "Determines how others can access the run and its storages.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 73 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n" + } + ] + }, + "flags": {}, + "id": 2986, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new status message for the run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2987, + "kind": 32768, + "kindString": "Parameter", + "name": "status_message", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set this flag to True if this is the final status message of the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2988, + "kind": 32768, + "kindString": "Parameter", + "name": "is_status_message_terminal", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the run and its storages." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2989, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2990, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2991, + "module": "_resource_clients.run", + "name": "delete", + "parsedDocstring": { + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 102 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n" + } + ] + }, + "flags": {}, + "id": 2992, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2993, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2994, + "module": "_resource_clients.run", + "name": "abort", + "parsedDocstring": { + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n", + "args": { + "gracefully": "If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`\nevents into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan\nto resurrect the run later.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The data of the aborted Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 112 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The data of the aborted Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n" + } + ] + }, + "flags": {}, + "id": 2995, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "abort", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`\nevents into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan\nto resurrect the run later." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2996, + "kind": 32768, + "kindString": "Parameter", + "name": "gracefully", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 2997, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wait synchronously until the run finishes or the server times out.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 2998, + "module": "_resource_clients.run", + "name": "wait_for_finish", + "parsedDocstring": { + "text": "Wait synchronously until the run finishes or the server times out.\n", + "args": { + "wait_duration": "How long does the client wait for run to finish. None for indefinite.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the run has not yet finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 135 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the run has not yet finished." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Wait synchronously until the run finishes or the server times out.\n" + } + ] + }, + "flags": {}, + "id": 2999, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "wait_for_finish", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long does the client wait for run to finish. None for indefinite." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3000, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3001, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3002, + "module": "_resource_clients.run", + "name": "metamorph", + "parsedDocstring": { + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n", + "args": { + "target_actor_id": "ID of the target Actor that the run should be transformed into.", + "target_actor_build": "The build of the target Actor. It can be either a build tag or build number.\nBy default, the run uses the build specified in the default run configuration for the target Actor\n(typically the latest build).", + "run_input": "The input to pass to the new run.", + "content_type": "The content type of the input.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 163 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n" + } + ] + }, + "flags": {}, + "id": 3003, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "metamorph", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the target Actor that the run should be transformed into." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3004, + "kind": 32768, + "kindString": "Parameter", + "name": "target_actor_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build of the target Actor. It can be either a build tag or build number.\nBy default, the run uses the build specified in the default run configuration for the target Actor\n(typically the latest build)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3005, + "kind": 32768, + "kindString": "Parameter", + "name": "target_actor_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the new run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3006, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3007, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3008, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3009, + "module": "_resource_clients.run", + "name": "resurrect", + "parsedDocstring": { + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n", + "args": { + "build": "Which Actor build the resurrected run should use. It can be either a build tag or build number.\nBy default, the resurrected run uses the same build as before.", + "memory_mbytes": "New memory limit for the resurrected run, in megabytes. By default, the resurrected run\nuses the same memory limit as before.", + "run_timeout": "New timeout for the resurrected run. By default, the resurrected run uses the\nsame timeout as before.", + "max_items": "Maximum number of items that the resurrected pay-per-result run will return. By default, the\nresurrected run uses the same limit as before. Limit can be only increased.", + "max_total_charge_usd": "Maximum cost for the resurrected pay-per-event run in USD. By default, the\nresurrected run uses the same limit as before. Limit can be only increased.", + "restart_on_error": "Determines whether the resurrected run will be restarted if it fails.\nBy default, the resurrected run uses the same setting as before.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 206 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n" + } + ] + }, + "flags": {}, + "id": 3010, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "resurrect", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Which Actor build the resurrected run should use. It can be either a build tag or build number.\nBy default, the resurrected run uses the same build as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3011, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "New memory limit for the resurrected run, in megabytes. By default, the resurrected run\nuses the same memory limit as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3012, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "New timeout for the resurrected run. By default, the resurrected run uses the\nsame timeout as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3013, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items that the resurrected pay-per-result run will return. By default, the\nresurrected run uses the same limit as before. Limit can be only increased." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3014, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum cost for the resurrected pay-per-event run in USD. By default, the\nresurrected run uses the same limit as before. Limit can be only increased." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3015, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines whether the resurrected run will be restarted if it fails.\nBy default, the resurrected run uses the same setting as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3016, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3017, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3018, + "module": "_resource_clients.run", + "name": "reboot", + "parsedDocstring": { + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 261 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n" + } + ] + }, + "flags": {}, + "id": 3019, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "reboot", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3020, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3021, + "module": "_resource_clients.run", + "name": "dataset", + "parsedDocstring": { + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default dataset of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 280 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default dataset of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3022, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dataset", + "parameters": [], + "type": { + "name": "DatasetClient", + "type": "reference", + "target": "2311" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3023, + "module": "_resource_clients.run", + "name": "key_value_store", + "parsedDocstring": { + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default key-value store of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 293 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default key-value store of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3024, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_store", + "parameters": [], + "type": { + "name": "KeyValueStoreClient", + "type": "reference", + "target": "2577" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3025, + "module": "_resource_clients.run", + "name": "request_queue", + "parsedDocstring": { + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default request_queue of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default request_queue of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3026, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queue", + "parameters": [], + "type": { + "name": "RequestQueueClient", + "type": "reference", + "target": "2792" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3027, + "module": "_resource_clients.run", + "name": "log", + "parsedDocstring": { + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the log of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 319 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the log of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3028, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [], + "type": { + "name": "LogClient", + "type": "reference", + "target": "2757" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3029, + "module": "_resource_clients.run", + "name": "get_streamed_log", + "parsedDocstring": { + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n", + "args": { + "to_logger": "`Logger` used for logging the redirected messages. If not provided, a new logger is created", + "from_start": "If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly\narrived logs will be redirected. This can be useful for redirecting only a small portion of relevant\nlogs for long-running Actors in stand-by.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "`StreamedLog` instance for redirected logs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 332 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "`StreamedLog` instance for redirected logs." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "flags": {}, + "id": 3030, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_streamed_log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "`Logger` used for logging the redirected messages. If not provided, a new logger is created" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3031, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "logging.Logger" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly\narrived logs will be redirected. This can be useful for redirecting only a small portion of relevant\nlogs for long-running Actors in stand-by." + } + ] + }, + "defaultValue": "True", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3032, + "kind": 32768, + "kindString": "Parameter", + "name": "from_start", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3033, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "StreamedLog", + "type": "reference", + "target": "1548" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3034, + "module": "_resource_clients.run", + "name": "charge", + "parsedDocstring": { + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n", + "args": { + "event_name": "The name of the event to charge for.", + "count": "The number of events to charge. Defaults to 1 if not provided.", + "idempotency_key": "A unique key to ensure idempotent charging. If not provided,\none will be auto-generated.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 375 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n" + } + ] + }, + "flags": {}, + "id": 3035, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "charge", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event to charge for." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 3036, + "kind": 32768, + "kindString": "Parameter", + "name": "event_name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of events to charge. Defaults to 1 if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3037, + "kind": 32768, + "kindString": "Parameter", + "name": "count", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key to ensure idempotent charging. If not provided,\none will be auto-generated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3038, + "kind": 32768, + "kindString": "Parameter", + "name": "idempotency_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3039, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3040, + "module": "_resource_clients.run", + "name": "get_status_message_watcher", + "parsedDocstring": { + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n", + "args": { + "to_logger": "`Logger` used for logging the status and status messages. If not provided, a new logger is\ncreated.", + "check_period": "The period with which the status message will be polled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "`StatusMessageWatcher` instance." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 420 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "`StatusMessageWatcher` instance." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "flags": {}, + "id": 3041, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_status_message_watcher", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "`Logger` used for logging the status and status messages. If not provided, a new logger is\ncreated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3042, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "logging.Logger" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The period with which the status message will be polled." + } + ] + }, + "defaultValue": "timedelta(seconds=1)", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3043, + "kind": 32768, + "kindString": "Parameter", + "name": "check_period", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3044, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "StatusMessageWatcher", + "type": "reference", + "target": "1526" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3688, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor run.\n\nProvides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.\nObtain an instance via an appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2977, + 2994, + 3034, + 3021, + 2991, + 2982, + 3040, + 3029, + 3023, + 3027, + 3002, + 3018, + 3025, + 3009, + 2985, + 2998 + ], + "title": "Methods" + }, + { + "children": [ + 3688 + ], + "title": "Properties" + } + ], + "id": 2976, + "module": "_resource_clients.run", + "name": "RunClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor run.\n\nProvides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.\nObtain an instance via an appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 37 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3046, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 471 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3051, + "module": "_resource_clients.run", + "name": "get", + "parsedDocstring": { + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 484 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run\n" + } + ] + }, + "flags": {}, + "id": 3052, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3053, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3054, + "module": "_resource_clients.run", + "name": "update", + "parsedDocstring": { + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n", + "args": { + "status_message": "The new status message for the run.", + "is_status_message_terminal": "Set this flag to True if this is the final status message of the Actor run.", + "general_access": "Determines how others can access the run and its storages.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 500 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the run with the specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run\n" + } + ] + }, + "flags": {}, + "id": 3055, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new status message for the run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3056, + "kind": 32768, + "kindString": "Parameter", + "name": "status_message", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set this flag to True if this is the final status message of the Actor run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3057, + "kind": 32768, + "kindString": "Parameter", + "name": "is_status_message_terminal", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines how others can access the run and its storages." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3058, + "kind": 32768, + "kindString": "Parameter", + "name": "general_access", + "type": { + "name": "GeneralAccess | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "GeneralAccess", + "target": "695" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3059, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3060, + "module": "_resource_clients.run", + "name": "abort", + "parsedDocstring": { + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n", + "args": { + "gracefully": "If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`\nevents into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan\nto resurrect the run later.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The data of the aborted Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 529 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The data of the aborted Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Abort the Actor run which is starting or currently running and return its details.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run\n" + } + ] + }, + "flags": {}, + "id": 3061, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "abort", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`\nevents into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan\nto resurrect the run later." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3062, + "kind": 32768, + "kindString": "Parameter", + "name": "gracefully", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3063, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Wait asynchronously until the run finishes or the server times out.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3064, + "module": "_resource_clients.run", + "name": "wait_for_finish", + "parsedDocstring": { + "text": "Wait asynchronously until the run finishes or the server times out.\n", + "args": { + "wait_duration": "How long does the client wait for run to finish. None for indefinite.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the run has not yet finished." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 552 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,\nTIMED_OUT, ABORTED), then the run has not yet finished." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Wait asynchronously until the run finishes or the server times out.\n" + } + ] + }, + "flags": {}, + "id": 3065, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "wait_for_finish", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How long does the client wait for run to finish. None for indefinite." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3066, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3067, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3068, + "module": "_resource_clients.run", + "name": "delete", + "parsedDocstring": { + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 576 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run\n" + } + ] + }, + "flags": {}, + "id": 3069, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3070, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3071, + "module": "_resource_clients.run", + "name": "metamorph", + "parsedDocstring": { + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n", + "args": { + "target_actor_id": "ID of the target Actor that the run should be transformed into.", + "target_actor_build": "The build of the target Actor. It can be either a build tag or build number.\nBy default, the run uses the build specified in the default run configuration for the target Actor\n(typically the latest build).", + "run_input": "The input to pass to the new run.", + "content_type": "The content type of the input.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 586 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Transform an Actor run into a run of another Actor with a new input.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run\n" + } + ] + }, + "flags": {}, + "id": 3072, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "metamorph", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "ID of the target Actor that the run should be transformed into." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3073, + "kind": 32768, + "kindString": "Parameter", + "name": "target_actor_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build of the target Actor. It can be either a build tag or build number.\nBy default, the run uses the build specified in the default run configuration for the target Actor\n(typically the latest build)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3074, + "kind": 32768, + "kindString": "Parameter", + "name": "target_actor_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The input to pass to the new run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3075, + "kind": 32768, + "kindString": "Parameter", + "name": "run_input", + "type": { + "name": "Any", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The content type of the input." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3076, + "kind": 32768, + "kindString": "Parameter", + "name": "content_type", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3077, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3078, + "module": "_resource_clients.run", + "name": "resurrect", + "parsedDocstring": { + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n", + "args": { + "build": "Which Actor build the resurrected run should use. It can be either a build tag or build number.\nBy default, the resurrected run uses the same build as before.", + "memory_mbytes": "New memory limit for the resurrected run, in megabytes. By default, the resurrected run\nuses the same memory limit as before.", + "run_timeout": "New timeout for the resurrected run. By default, the resurrected run uses the\nsame timeout as before.", + "max_items": "Maximum number of items that the resurrected pay-per-result run will return. By default, the\nresurrected run uses the same limit as before. Limit can be only increased.", + "max_total_charge_usd": "Maximum cost for the resurrected pay-per-event run in USD. By default, the\nresurrected run uses the same limit as before. Limit can be only increased.", + "restart_on_error": "Determines whether the resurrected run will be restarted if it fails.\nBy default, the resurrected run uses the same setting as before.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 632 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Resurrect a finished Actor run.\n\nOnly finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.\nRun status will be updated to RUNNING and its container will be restarted with the same default storages.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run\n" + } + ] + }, + "flags": {}, + "id": 3079, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "resurrect", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Which Actor build the resurrected run should use. It can be either a build tag or build number.\nBy default, the resurrected run uses the same build as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3080, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "New memory limit for the resurrected run, in megabytes. By default, the resurrected run\nuses the same memory limit as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3081, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "New timeout for the resurrected run. By default, the resurrected run uses the\nsame timeout as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3082, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of items that the resurrected pay-per-result run will return. By default, the\nresurrected run uses the same limit as before. Limit can be only increased." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3083, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum cost for the resurrected pay-per-event run in USD. By default, the\nresurrected run uses the same limit as before. Limit can be only increased." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3084, + "kind": 32768, + "kindString": "Parameter", + "name": "max_total_charge_usd", + "type": { + "name": "Decimal | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Decimal" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Determines whether the resurrected run will be restarted if it fails.\nBy default, the resurrected run uses the same setting as before." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3085, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3086, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3087, + "module": "_resource_clients.run", + "name": "reboot", + "parsedDocstring": { + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The Actor run data." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 687 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The Actor run data." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run\n" + } + ] + }, + "flags": {}, + "id": 3088, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "reboot", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3089, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3090, + "module": "_resource_clients.run", + "name": "dataset", + "parsedDocstring": { + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default dataset of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 706 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default dataset of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default dataset of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3091, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dataset", + "parameters": [], + "type": { + "name": "DatasetClientAsync", + "type": "reference", + "target": "2437" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3092, + "module": "_resource_clients.run", + "name": "key_value_store", + "parsedDocstring": { + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default key-value store of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 719 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default key-value store of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default key-value store of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3093, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "key_value_store", + "parameters": [], + "type": { + "name": "KeyValueStoreClientAsync", + "type": "reference", + "target": "2650" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3094, + "module": "_resource_clients.run", + "name": "request_queue", + "parsedDocstring": { + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the default request_queue of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 732 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the default request_queue of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the default request queue of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3095, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "request_queue", + "parameters": [], + "type": { + "name": "RequestQueueClientAsync", + "type": "reference", + "target": "2868" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3096, + "module": "_resource_clients.run", + "name": "log", + "parsedDocstring": { + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n", + "returns": "A client allowing access to the log of this Actor run." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 745 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to the log of this Actor run." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get the client for the log of the Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages\n" + } + ] + }, + "flags": {}, + "id": 3097, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "log", + "parameters": [], + "type": { + "name": "LogClientAsync", + "type": "reference", + "target": "2774" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3098, + "module": "_resource_clients.run", + "name": "get_streamed_log", + "parsedDocstring": { + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n", + "args": { + "to_logger": "`Logger` used for logging the redirected messages. If not provided, a new logger is created", + "from_start": "If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly\narrived logs will be redirected. This can be useful for redirecting only a small portion of relevant\nlogs for long-running Actors in stand-by.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "`StreamedLog` instance for redirected logs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 758 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "`StreamedLog` instance for redirected logs." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get `StreamedLog` instance that can be used to redirect logs.\n\n`StreamedLog` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "flags": {}, + "id": 3099, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_streamed_log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "`Logger` used for logging the redirected messages. If not provided, a new logger is created" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3100, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "logging.Logger" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly\narrived logs will be redirected. This can be useful for redirecting only a small portion of relevant\nlogs for long-running Actors in stand-by." + } + ] + }, + "defaultValue": "True", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3101, + "kind": 32768, + "kindString": "Parameter", + "name": "from_start", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3102, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "StreamedLogAsync", + "type": "reference", + "target": "1565" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3103, + "module": "_resource_clients.run", + "name": "charge", + "parsedDocstring": { + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n", + "args": { + "event_name": "The name of the event to charge for.", + "count": "The number of events to charge. Defaults to 1 if not provided.", + "idempotency_key": "A unique key to ensure idempotent charging. If not provided,\none will be auto-generated.", + "timeout": "Timeout for the API HTTP request.\n" + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 801 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Charge for an event of a Pay-Per-Event Actor run.\n\nhttps://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run\n" + } + ] + }, + "flags": {}, + "id": 3104, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "charge", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the event to charge for." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": false + }, + "id": 3105, + "kind": 32768, + "kindString": "Parameter", + "name": "event_name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The number of events to charge. Defaults to 1 if not provided." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3106, + "kind": 32768, + "kindString": "Parameter", + "name": "count", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique key to ensure idempotent charging. If not provided,\none will be auto-generated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3107, + "kind": 32768, + "kindString": "Parameter", + "name": "idempotency_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3108, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3109, + "module": "_resource_clients.run", + "name": "get_status_message_watcher", + "parsedDocstring": { + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n", + "args": { + "to_logger": "`Logger` used for logging the status and status messages. If not provided, a new logger is\ncreated.", + "check_period": "The period with which the status message will be polled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "`StatusMessageWatcher` instance." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 846 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "`StatusMessageWatcher` instance." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.\n\n`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.\n" + } + ] + }, + "flags": {}, + "id": 3110, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_status_message_watcher", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "`Logger` used for logging the status and status messages. If not provided, a new logger is\ncreated." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3111, + "kind": 32768, + "kindString": "Parameter", + "name": "to_logger", + "type": { + "name": "logging.Logger | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "logging.Logger" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The period with which the status message will be polled." + } + ] + }, + "defaultValue": "timedelta(seconds=1)", + "flags": { + "isOptional": true, + "keyword-only": false + }, + "id": 3112, + "kind": 32768, + "kindString": "Parameter", + "name": "check_period", + "type": { + "name": "timedelta", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'long'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3113, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "StatusMessageWatcherAsync", + "type": "reference", + "target": "1509" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3661, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific Actor run.\n\nProvides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.\nObtain an instance via an appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3046, + 3060, + 3103, + 3090, + 3068, + 3051, + 3109, + 3098, + 3092, + 3096, + 3071, + 3087, + 3094, + 3078, + 3054, + 3064 + ], + "title": "Methods" + }, + { + "children": [ + 3661 + ], + "title": "Properties" + } + ], + "id": 3045, + "module": "_resource_clients.run", + "name": "RunClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific Actor run.\n\nProvides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.\nObtain an instance via an appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 464 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3115, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 23 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3119, + "module": "_resource_clients.run_collection", + "name": "list", + "parsedDocstring": { + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n", + "args": { + "limit": "How many runs to retrieve.", + "offset": "What run to include as first when retrieving the list.", + "desc": "Whether to sort the runs in descending order based on their start date.", + "status": "Retrieve only runs with the provided statuses.", + "started_before": "Only return runs started before this date (inclusive).", + "started_after": "Only return runs started after this date (inclusive).", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor runs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor runs." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n" + } + ] + }, + "flags": {}, + "id": 3120, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many runs to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3121, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What run to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3122, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the runs in descending order based on their start date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3123, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve only runs with the provided statuses." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3124, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | list[ActorJobStatus] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only return runs started before this date (inclusive)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3125, + "kind": 32768, + "kindString": "Parameter", + "name": "started_before", + "type": { + "name": "str | datetime | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "datetime" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only return runs started after this date (inclusive)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3126, + "kind": 32768, + "kindString": "Parameter", + "name": "started_after", + "type": { + "name": "str | datetime | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "datetime" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3127, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRuns", + "type": "reference", + "target": "662" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3689, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor run collection.\n\nProvides methods to manage Actor runs, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3115, + 3119 + ], + "title": "Methods" + }, + { + "children": [ + 3689 + ], + "title": "Properties" + } + ], + "id": 3114, + "module": "_resource_clients.run_collection", + "name": "RunCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Actor run collection.\n\nProvides methods to manage Actor runs, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 16 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3129, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 87 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3133, + "module": "_resource_clients.run_collection", + "name": "list", + "parsedDocstring": { + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n", + "args": { + "limit": "How many runs to retrieve.", + "offset": "What run to include as first when retrieving the list.", + "desc": "Whether to sort the runs in descending order based on their start date.", + "status": "Retrieve only runs with the provided statuses.", + "started_before": "Only return runs started before this date (inclusive).", + "started_after": "Only return runs started after this date (inclusive).", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved Actor runs." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 98 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved Actor runs." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all Actor runs.\n\nList all Actor runs, either of a single Actor, or all user's Actors, depending on where this client\nwas initialized from.\n\nhttps://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs\nhttps://docs.apify.com/api/v2#/reference/actor-runs/run-collection/get-user-runs-list\n" + } + ] + }, + "flags": {}, + "id": 3134, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many runs to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3135, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What run to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3136, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the runs in descending order based on their start date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3137, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve only runs with the provided statuses." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3138, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | list[ActorJobStatus] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only return runs started before this date (inclusive)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3139, + "kind": 32768, + "kindString": "Parameter", + "name": "started_before", + "type": { + "name": "str | datetime | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "datetime" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only return runs started after this date (inclusive)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3140, + "kind": 32768, + "kindString": "Parameter", + "name": "started_after", + "type": { + "name": "str | datetime | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "datetime" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3141, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfRuns", + "type": "reference", + "target": "662" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3662, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Actor run collection.\n\nProvides methods to manage Actor runs, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3129, + 3133 + ], + "title": "Methods" + }, + { + "children": [ + 3662 + ], + "title": "Properties" + } + ], + "id": 3128, + "module": "_resource_clients.run_collection", + "name": "RunCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Actor run collection.\n\nProvides methods to manage Actor runs, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/run_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 80 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3143, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 30 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3148, + "module": "_resource_clients.schedule", + "name": "get", + "parsedDocstring": { + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 43 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n" + } + ] + }, + "flags": {}, + "id": 3149, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3150, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Schedule", + "target": "1295" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3151, + "module": "_resource_clients.schedule", + "name": "update", + "parsedDocstring": { + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n", + "args": { + "cron_expression": "The cron expression used by this schedule.", + "is_enabled": "True if the schedule should be enabled.", + "is_exclusive": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule.", + "name": "The name of the schedule to create.", + "actions": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure.", + "description": "Description of this schedule.", + "timezone": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones).", + "title": "A human-friendly equivalent of the name.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 59 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n" + } + ] + }, + "flags": {}, + "id": 3152, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cron expression used by this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3153, + "kind": 32768, + "kindString": "Parameter", + "name": "cron_expression", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "True if the schedule should be enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3154, + "kind": 32768, + "kindString": "Parameter", + "name": "is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3155, + "kind": 32768, + "kindString": "Parameter", + "name": "is_exclusive", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the schedule to create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3156, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3157, + "kind": 32768, + "kindString": "Parameter", + "name": "actions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Description of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3158, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3159, + "kind": 32768, + "kindString": "Parameter", + "name": "timezone", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3160, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3161, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule", + "type": "reference", + "target": "1295" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3162, + "module": "_resource_clients.schedule", + "name": "delete", + "parsedDocstring": { + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 105 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n" + } + ] + }, + "flags": {}, + "id": 3163, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3164, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3165, + "module": "_resource_clients.schedule", + "name": "get_log", + "parsedDocstring": { + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Retrieved log of the given schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 115 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Retrieved log of the given schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n" + } + ] + }, + "flags": {}, + "id": 3166, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3167, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "list[ScheduleInvoked] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleInvoked", + "target": "1314" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3690, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific schedule.\n\nProvides methods to manage a specific schedule, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3143, + 3162, + 3148, + 3165, + 3151 + ], + "title": "Methods" + }, + { + "children": [ + 3690 + ], + "title": "Properties" + } + ], + "id": 3142, + "module": "_resource_clients.schedule", + "name": "ScheduleClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific schedule.\n\nProvides methods to manage a specific schedule, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 23 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3169, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 149 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3174, + "module": "_resource_clients.schedule", + "name": "get", + "parsedDocstring": { + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 162 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/get-schedule\n" + } + ] + }, + "flags": {}, + "id": 3175, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3176, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Schedule", + "target": "1295" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3177, + "module": "_resource_clients.schedule", + "name": "update", + "parsedDocstring": { + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n", + "args": { + "cron_expression": "The cron expression used by this schedule.", + "is_enabled": "True if the schedule should be enabled.", + "is_exclusive": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule.", + "name": "The name of the schedule to create.", + "actions": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure.", + "description": "Description of this schedule.", + "timezone": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones).", + "title": "A human-friendly equivalent of the name.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 178 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the schedule with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/update-schedule\n" + } + ] + }, + "flags": {}, + "id": 3178, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cron expression used by this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3179, + "kind": 32768, + "kindString": "Parameter", + "name": "cron_expression", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "True if the schedule should be enabled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3180, + "kind": 32768, + "kindString": "Parameter", + "name": "is_enabled", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3181, + "kind": 32768, + "kindString": "Parameter", + "name": "is_exclusive", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the schedule to create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3182, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3183, + "kind": 32768, + "kindString": "Parameter", + "name": "actions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Description of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3184, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3185, + "kind": 32768, + "kindString": "Parameter", + "name": "timezone", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3186, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3187, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule", + "type": "reference", + "target": "1295" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3188, + "module": "_resource_clients.schedule", + "name": "delete", + "parsedDocstring": { + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 224 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-object/delete-schedule\n" + } + ] + }, + "flags": {}, + "id": 3189, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3190, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3191, + "module": "_resource_clients.schedule", + "name": "get_log", + "parsedDocstring": { + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Retrieved log of the given schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 234 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Retrieved log of the given schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return log for the given schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedule-log/get-schedule-log\n" + } + ] + }, + "flags": {}, + "id": 3192, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_log", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3193, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "list[ScheduleInvoked] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "ScheduleInvoked", + "target": "1314" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3663, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific schedule.\n\nProvides methods to manage a specific schedule, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3169, + 3188, + 3174, + 3191, + 3177 + ], + "title": "Methods" + }, + { + "children": [ + 3663 + ], + "title": "Properties" + } + ], + "id": 3168, + "module": "_resource_clients.schedule", + "name": "ScheduleClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific schedule.\n\nProvides methods to manage a specific schedule, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 142 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3195, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 28 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3199, + "module": "_resource_clients.schedule_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n", + "args": { + "limit": "How many schedules to retrieve.", + "offset": "What schedules to include as first when retrieving the list.", + "desc": "Whether to sort the schedules in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available schedules matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 39 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available schedules matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n" + } + ] + }, + "flags": {}, + "id": 3200, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many schedules to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3201, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What schedules to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3202, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the schedules in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3203, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3204, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfSchedules", + "type": "reference", + "target": "1256" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3205, + "module": "_resource_clients.schedule_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n", + "args": { + "cron_expression": "The cron expression used by this schedule.", + "is_enabled": "True if the schedule should be enabled.", + "is_exclusive": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule.", + "name": "The name of the schedule to create.", + "actions": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure.", + "description": "Description of this schedule.", + "timezone": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones).", + "title": "Title of this schedule.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 63 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n" + } + ] + }, + "flags": {}, + "id": 3206, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cron expression used by this schedule." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3207, + "kind": 32768, + "kindString": "Parameter", + "name": "cron_expression", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "True if the schedule should be enabled." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3208, + "kind": 32768, + "kindString": "Parameter", + "name": "is_enabled", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3209, + "kind": 32768, + "kindString": "Parameter", + "name": "is_exclusive", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the schedule to create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3210, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3211, + "kind": 32768, + "kindString": "Parameter", + "name": "actions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Description of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3212, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3213, + "kind": 32768, + "kindString": "Parameter", + "name": "timezone", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Title of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3214, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3215, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule", + "type": "reference", + "target": "1295" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3691, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the schedule collection.\n\nProvides methods to manage the schedule collection, e.g. list or create schedules. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3195, + 3205, + 3199 + ], + "title": "Methods" + }, + { + "children": [ + 3691 + ], + "title": "Properties" + } + ], + "id": 3194, + "module": "_resource_clients.schedule_collection", + "name": "ScheduleCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the schedule collection.\n\nProvides methods to manage the schedule collection, e.g. list or create schedules. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3217, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 121 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3221, + "module": "_resource_clients.schedule_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n", + "args": { + "limit": "How many schedules to retrieve.", + "offset": "What schedules to include as first when retrieving the list.", + "desc": "Whether to sort the schedules in descending order based on their modification date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available schedules matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 132 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available schedules matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available schedules.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/get-list-of-schedules\n" + } + ] + }, + "flags": {}, + "id": 3222, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many schedules to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3223, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What schedules to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3224, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the schedules in descending order based on their modification date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3225, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3226, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfSchedules", + "type": "reference", + "target": "1256" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3227, + "module": "_resource_clients.schedule_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n", + "args": { + "cron_expression": "The cron expression used by this schedule.", + "is_enabled": "True if the schedule should be enabled.", + "is_exclusive": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule.", + "name": "The name of the schedule to create.", + "actions": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure.", + "description": "Description of this schedule.", + "timezone": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones).", + "title": "Title of this schedule.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created schedule." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 156 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created schedule." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new schedule.\n\nhttps://docs.apify.com/api/v2#/reference/schedules/schedules-collection/create-schedule\n" + } + ] + }, + "flags": {}, + "id": 3228, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cron expression used by this schedule." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3229, + "kind": 32768, + "kindString": "Parameter", + "name": "cron_expression", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "True if the schedule should be enabled." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3230, + "kind": 32768, + "kindString": "Parameter", + "name": "is_enabled", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "When set to true, don't start Actor or Actor task if it's still running from the previous\nschedule." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3231, + "kind": 32768, + "kindString": "Parameter", + "name": "is_exclusive", + "type": { + "name": "bool", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The name of the schedule to create." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3232, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actors or tasks that should be run on this schedule. See the API documentation for exact structure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3233, + "kind": 32768, + "kindString": "Parameter", + "name": "actions", + "type": { + "name": "list[dict[str, Any]] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict", + "typeArguments": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "reference", + "name": "Any" + } + ] + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Description of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3234, + "kind": 32768, + "kindString": "Parameter", + "name": "description", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timezone in which your cron expression runs (TZ database name from\nhttps://en.wikipedia.org/wiki/List_of_tz_database_time_zones)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3235, + "kind": 32768, + "kindString": "Parameter", + "name": "timezone", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Title of this schedule." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3236, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3237, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Schedule", + "type": "reference", + "target": "1295" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3664, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the schedule collection.\n\nProvides methods to manage the schedule collection, e.g. list or create schedules. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3217, + 3227, + 3221 + ], + "title": "Methods" + }, + { + "children": [ + 3664 + ], + "title": "Properties" + } + ], + "id": 3216, + "module": "_resource_clients.schedule_collection", + "name": "ScheduleCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the schedule collection.\n\nProvides methods to manage the schedule collection, e.g. list or create schedules. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/schedule_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 114 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3239, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3243, + "module": "_resource_clients.store_collection", + "name": "list", + "parsedDocstring": { + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n", + "args": { + "limit": "How many Actors to list.", + "offset": "What Actor to include as first when retrieving the list.", + "search": "String to search by. The search runs on the following fields: title, name, description, username,\nreadme.", + "sort_by": "Specifies the field by which to sort the results.", + "category": "Filter by this category.", + "username": "Filter by this username.", + "pricing_model": "Filter by this pricing model.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actors matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actors matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n" + } + ] + }, + "flags": {}, + "id": 3244, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many Actors to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3245, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What Actor to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3246, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "String to search by. The search runs on the following fields: title, name, description, username,\nreadme." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3247, + "kind": 32768, + "kindString": "Parameter", + "name": "search", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the field by which to sort the results." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3248, + "kind": 32768, + "kindString": "Parameter", + "name": "sort_by", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this category." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3249, + "kind": 32768, + "kindString": "Parameter", + "name": "category", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this username." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3250, + "kind": 32768, + "kindString": "Parameter", + "name": "username", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this pricing model." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3251, + "kind": 32768, + "kindString": "Parameter", + "name": "pricing_model", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3252, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfStoreActors", + "type": "reference", + "target": "1342" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3692, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Apify store collection.\n\nProvides methods to browse the Apify store, e.g. list available Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3239, + 3243 + ], + "title": "Methods" + }, + { + "children": [ + 3692 + ], + "title": "Properties" + } + ], + "id": 3238, + "module": "_resource_clients.store_collection", + "name": "StoreCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the Apify store collection.\n\nProvides methods to browse the Apify store, e.g. list available Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3254, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 83 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3258, + "module": "_resource_clients.store_collection", + "name": "list", + "parsedDocstring": { + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n", + "args": { + "limit": "How many Actors to list.", + "offset": "What Actor to include as first when retrieving the list.", + "search": "String to search by. The search runs on the following fields: title, name, description, username,\nreadme.", + "sort_by": "Specifies the field by which to sort the results.", + "category": "Filter by this category.", + "username": "Filter by this username.", + "pricing_model": "Filter by this pricing model.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available Actors matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 94 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available Actors matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List Actors in Apify store.\n\nhttps://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store\n" + } + ] + }, + "flags": {}, + "id": 3259, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many Actors to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3260, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What Actor to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3261, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "String to search by. The search runs on the following fields: title, name, description, username,\nreadme." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3262, + "kind": 32768, + "kindString": "Parameter", + "name": "search", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the field by which to sort the results." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3263, + "kind": 32768, + "kindString": "Parameter", + "name": "sort_by", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this category." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3264, + "kind": 32768, + "kindString": "Parameter", + "name": "category", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this username." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3265, + "kind": 32768, + "kindString": "Parameter", + "name": "username", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filter by this pricing model." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3266, + "kind": 32768, + "kindString": "Parameter", + "name": "pricing_model", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3267, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfStoreActors", + "type": "reference", + "target": "1342" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3665, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the Apify store collection.\n\nProvides methods to browse the Apify store, e.g. list available Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3254, + 3258 + ], + "title": "Methods" + }, + { + "children": [ + 3665 + ], + "title": "Properties" + } + ], + "id": 3253, + "module": "_resource_clients.store_collection", + "name": "StoreCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the Apify store collection.\n\nProvides methods to browse the Apify store, e.g. list available Actors. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/store_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 76 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3269, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 45 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3274, + "module": "_resource_clients.task", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 54 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n" + } + ] + }, + "flags": {}, + "id": 3275, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3276, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Task", + "target": "805" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3277, + "module": "_resource_clients.task", + "name": "update", + "parsedDocstring": { + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n", + "args": { + "name": "Name of the task.", + "build": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "task_input": "Task input dictionary.", + "title": "A human-friendly equivalent of the name.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 70 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n" + } + ] + }, + "flags": {}, + "id": 3278, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the task." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3279, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3280, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3281, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3282, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3283, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3284, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3285, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3286, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3287, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3288, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3289, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3290, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3291, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3292, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3293, + "module": "_resource_clients.task", + "name": "delete", + "parsedDocstring": { + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 144 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n" + } + ] + }, + "flags": {}, + "id": 3294, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3295, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3296, + "module": "_resource_clients.task", + "name": "start", + "parsedDocstring": { + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n", + "args": { + "task_input": "Task input dictionary.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "wait_for_finish": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60.", + "webhooks": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 154 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "flags": {}, + "id": 3297, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "start", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3298, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3299, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3300, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3301, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3302, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3303, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3304, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3305, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3306, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3307, + "module": "_resource_clients.task", + "name": "call", + "parsedDocstring": { + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n", + "args": { + "task_input": "Task input dictionary.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "webhooks": "Specifies optional webhooks associated with the Actor run, which can be used to receive\na notification e.g. when the Actor finished or failed. Note: if you already have a webhook set up for\nthe Actor or task, you do not have to add it again here.", + "wait_duration": "The maximum time the server waits for the task run to finish. If not provided,\nwaits indefinitely.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 222 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "flags": {}, + "id": 3308, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3309, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3310, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3311, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3312, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3313, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3314, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies optional webhooks associated with the Actor run, which can be used to receive\na notification e.g. when the Actor finished or failed. Note: if you already have a webhook set up for\nthe Actor or task, you do not have to add it again here." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3315, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum time the server waits for the task run to finish. If not provided,\nwaits indefinitely." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3316, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3317, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3318, + "module": "_resource_clients.task", + "name": "get_input", + "parsedDocstring": { + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Retrieved task input." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 283 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Retrieved task input." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n" + } + ] + }, + "flags": {}, + "id": 3319, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3320, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3321, + "module": "_resource_clients.task", + "name": "update_input", + "parsedDocstring": { + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n", + "args": { + "task_input": "The new default input for this task.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated task input." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 306 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated task input." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n" + } + ] + }, + "flags": {}, + "id": 3322, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new default input for this task." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3323, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3324, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3325, + "module": "_resource_clients.task", + "name": "runs", + "parsedDocstring": { + "text": "Retrieve a client for the runs of this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 330 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this task." + } + ] + }, + "flags": {}, + "id": 3326, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClient", + "type": "reference", + "target": "3114" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3327, + "module": "_resource_clients.task", + "name": "last_run", + "parsedDocstring": { + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n", + "args": { + "status": "Consider only runs with this status.", + "origin": "Consider only runs started with this origin.\n" + }, + "returns": "The resource client for the last run of this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 337 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the last run of this task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "flags": {}, + "id": 3328, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "last_run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs with this status." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3329, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs started with this origin.\n" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3330, + "kind": 32768, + "kindString": "Parameter", + "name": "origin", + "type": { + "name": "RunOrigin | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunOrigin", + "target": "555" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RunClient", + "type": "reference", + "target": "2976" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3331, + "module": "_resource_clients.task", + "name": "webhooks", + "parsedDocstring": { + "text": "Retrieve a client for webhooks associated with this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 356 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this task." + } + ] + }, + "flags": {}, + "id": 3332, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClient", + "type": "reference", + "target": "3554" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3693, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific task.\n\nProvides methods to manage a specific task, e.g. update it, delete it, or start runs. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3269, + 3307, + 3293, + 3274, + 3318, + 3327, + 3325, + 3296, + 3277, + 3321, + 3331 + ], + "title": "Methods" + }, + { + "children": [ + 3693 + ], + "title": "Properties" + } + ], + "id": 3268, + "module": "_resource_clients.task", + "name": "TaskClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific task.\n\nProvides methods to manage a specific task, e.g. update it, delete it, or start runs. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 38 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3334, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 369 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3339, + "module": "_resource_clients.task", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 378 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/get-task\n" + } + ] + }, + "flags": {}, + "id": 3340, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3341, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Task", + "target": "805" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3342, + "module": "_resource_clients.task", + "name": "update", + "parsedDocstring": { + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n", + "args": { + "name": "Name of the task.", + "build": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "task_input": "Task input dictionary.", + "title": "A human-friendly equivalent of the name.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 394 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the task with specified fields.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/update-task\n" + } + ] + }, + "flags": {}, + "id": 3343, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the task." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3344, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3345, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3346, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3347, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3348, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3349, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3350, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3351, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3352, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3353, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3354, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3355, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3356, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3357, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3358, + "module": "_resource_clients.task", + "name": "delete", + "parsedDocstring": { + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 468 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-object/delete-task\n" + } + ] + }, + "flags": {}, + "id": 3359, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3360, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3361, + "module": "_resource_clients.task", + "name": "start", + "parsedDocstring": { + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n", + "args": { + "task_input": "Task input dictionary.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "wait_for_finish": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60.", + "webhooks": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 478 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start the task and immediately return the Run object.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "flags": {}, + "id": 3362, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "start", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3363, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3364, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged\nper result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3365, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3366, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3367, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3368, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of seconds the server waits for the run to finish. By default,\nit is 0, the maximum value is 60." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3369, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_for_finish", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with\nthe Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.\nIf you already have a webhook set up for the Actor or task, you do not have to add it again here.\nEach webhook is represented by a dictionary containing these items:\n* `event_types`: List of `WebhookEventType` values which trigger the webhook.\n* `request_url`: URL to which to send the webhook HTTP request.\n* `payload_template`: Optional template for the request payload." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3370, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3371, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run", + "type": "reference", + "target": "734" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3372, + "module": "_resource_clients.task", + "name": "call", + "parsedDocstring": { + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n", + "args": { + "task_input": "Task input dictionary.", + "build": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest).", + "max_items": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit.", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "webhooks": "Specifies optional webhooks associated with the Actor run, which can be used to receive\na notification e.g. when the Actor finished or failed. Note: if you already have a webhook set up for\nthe Actor or task, you do not have to add it again here.", + "wait_duration": "The maximum time the server waits for the task run to finish. If not provided,\nwaits indefinitely.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The run object." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 546 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The run object." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Start a task and wait for it to finish before returning the Run object.\n\nIt waits indefinitely, unless the wait_duration argument is provided.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task\n" + } + ] + }, + "flags": {}, + "id": 3373, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "call", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input dictionary." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3374, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies the Actor build to run. It can be either a build tag or build number. By default,\nthe run uses the build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3375, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by this run. If the Actor is charged per result,\nyou will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3376, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3377, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3378, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3379, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specifies optional webhooks associated with the Actor run, which can be used to receive\na notification e.g. when the Actor finished or failed. Note: if you already have a webhook set up for\nthe Actor or task, you do not have to add it again here." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3380, + "kind": 32768, + "kindString": "Parameter", + "name": "webhooks", + "type": { + "name": "list[WebhookCreate] | list[dict] | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookCreate", + "target": "1173" + } + ], + "target": "2003" + }, + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "dict" + } + ], + "target": "2003" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum time the server waits for the task run to finish. If not provided,\nwaits indefinitely." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3381, + "kind": 32768, + "kindString": "Parameter", + "name": "wait_duration", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'no_timeout'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3382, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Run | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Run", + "target": "734" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3383, + "module": "_resource_clients.task", + "name": "get_input", + "parsedDocstring": { + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "Retrieved task input." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 606 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "Retrieved task input." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/get-task-input\n" + } + ] + }, + "flags": {}, + "id": 3384, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3385, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3386, + "module": "_resource_clients.task", + "name": "update_input", + "parsedDocstring": { + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n", + "args": { + "task_input": "The new default input for this task.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated task input." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 629 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated task input." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the default input for this task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input\n" + } + ] + }, + "flags": {}, + "id": 3387, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update_input", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new default input for this task." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3388, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3389, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "dict", + "type": "reference" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3390, + "module": "_resource_clients.task", + "name": "runs", + "parsedDocstring": { + "text": "Retrieve a client for the runs of this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 653 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for the runs of this task." + } + ] + }, + "flags": {}, + "id": 3391, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "runs", + "parameters": [], + "type": { + "name": "RunCollectionClientAsync", + "type": "reference", + "target": "3128" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3392, + "module": "_resource_clients.task", + "name": "last_run", + "parsedDocstring": { + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n", + "args": { + "status": "Consider only runs with this status.", + "origin": "Consider only runs started with this origin.\n" + }, + "returns": "The resource client for the last run of this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 660 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The resource client for the last run of this task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the client for the last run of this task.\n\nLast run is retrieved based on the start time of the runs.\n" + } + ] + }, + "flags": {}, + "id": 3393, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "last_run", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs with this status." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3394, + "kind": 32768, + "kindString": "Parameter", + "name": "status", + "type": { + "name": "ActorJobStatus | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ActorJobStatus", + "target": "546" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Consider only runs started with this origin.\n" + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3395, + "kind": 32768, + "kindString": "Parameter", + "name": "origin", + "type": { + "name": "RunOrigin | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "RunOrigin", + "target": "555" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "RunClientAsync", + "type": "reference", + "target": "3045" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this task." + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3396, + "module": "_resource_clients.task", + "name": "webhooks", + "parsedDocstring": { + "text": "Retrieve a client for webhooks associated with this task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 679 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve a client for webhooks associated with this task." + } + ] + }, + "flags": {}, + "id": 3397, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "webhooks", + "parameters": [], + "type": { + "name": "WebhookCollectionClientAsync", + "type": "reference", + "target": "3579" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3666, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific task.\n\nProvides methods to manage a specific task, e.g. update it, delete it, or start runs. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3334, + 3372, + 3358, + 3339, + 3383, + 3392, + 3390, + 3361, + 3342, + 3386, + 3396 + ], + "title": "Methods" + }, + { + "children": [ + 3666 + ], + "title": "Properties" + } + ], + "id": 3333, + "module": "_resource_clients.task", + "name": "TaskClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific task.\n\nProvides methods to manage a specific task, e.g. update it, delete it, or start runs. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 362 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3399, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 33 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3403, + "module": "_resource_clients.task_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n", + "args": { + "limit": "How many tasks to list.", + "offset": "What task to include as first when retrieving the list.", + "desc": "Whether to sort the tasks in descending order based on their creation date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available tasks matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 44 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available tasks matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n" + } + ] + }, + "flags": {}, + "id": 3404, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many tasks to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3405, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What task to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3406, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the tasks in descending order based on their creation date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3407, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3408, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfTasks", + "type": "reference", + "target": "782" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3409, + "module": "_resource_clients.task_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n", + "args": { + "actor_id": "Id of the Actor that should be run.", + "name": "Name of the task.", + "build": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest).", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "max_items": "Maximum number of results that will be returned by runs of this task. If the Actor of this task\nis charged per result, you will not be charged for more results than the given limit.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "task_input": "Task input object.", + "title": "A human-friendly equivalent of the name.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 68 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n" + } + ] + }, + "flags": {}, + "id": 3410, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor that should be run." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3411, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the task." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3412, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3413, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3414, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3415, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by runs of this task. If the Actor of this task\nis charged per result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3416, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3417, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input object." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3418, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3419, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3420, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3421, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3422, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3423, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3424, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3425, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3694, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the task collection.\n\nProvides methods to manage the task collection, e.g. list or create tasks. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3399, + 3409, + 3403 + ], + "title": "Methods" + }, + { + "children": [ + 3694 + ], + "title": "Properties" + } + ], + "id": 3398, + "module": "_resource_clients.task_collection", + "name": "TaskCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the task collection.\n\nProvides methods to manage the task collection, e.g. list or create tasks. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 26 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3427, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 154 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3431, + "module": "_resource_clients.task_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n", + "args": { + "limit": "How many tasks to list.", + "offset": "What task to include as first when retrieving the list.", + "desc": "Whether to sort the tasks in descending order based on their creation date.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available tasks matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 165 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available tasks matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available tasks.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/get-list-of-tasks\n" + } + ] + }, + "flags": {}, + "id": 3432, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many tasks to list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3433, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What task to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3434, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the tasks in descending order based on their creation date." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3435, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3436, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfTasks", + "type": "reference", + "target": "782" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3437, + "module": "_resource_clients.task_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n", + "args": { + "actor_id": "Id of the Actor that should be run.", + "name": "Name of the task.", + "build": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest).", + "memory_mbytes": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings.", + "max_items": "Maximum number of results that will be returned by runs of this task. If the Actor of this task\nis charged per result, you will not be charged for more results than the given limit.", + "run_timeout": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings.", + "restart_on_error": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code.", + "task_input": "Task input object.", + "title": "A human-friendly equivalent of the name.", + "actor_standby_desired_requests_per_actor_run": "The desired number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_max_requests_per_actor_run": "The maximum number of concurrent HTTP requests for\na single Actor Standby run.", + "actor_standby_idle_timeout": "If the Actor run does not receive any requests for this time,\nit will be shut down.", + "actor_standby_build": "The build tag or number to run when the Actor is in Standby mode.", + "actor_standby_memory_mbytes": "The memory in megabytes to use when the Actor is in Standby mode.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created task." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 189 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created task." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new task.\n\nhttps://docs.apify.com/api/v2#/reference/actor-tasks/task-collection/create-task\n" + } + ] + }, + "flags": {}, + "id": 3438, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor that should be run." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3439, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the task." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3440, + "kind": 32768, + "kindString": "Parameter", + "name": "name", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Actor build to run. It can be either a build tag or build number. By default, the run uses\nthe build specified in the task settings (typically latest)." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3441, + "kind": 32768, + "kindString": "Parameter", + "name": "build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional timeout for the run. By default, the run uses timeout specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3442, + "kind": 32768, + "kindString": "Parameter", + "name": "run_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Memory limit for the run, in megabytes. By default, the run uses a memory limit specified\nin the task settings." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3443, + "kind": 32768, + "kindString": "Parameter", + "name": "memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum number of results that will be returned by runs of this task. If the Actor of this task\nis charged per result, you will not be charged for more results than the given limit." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3444, + "kind": 32768, + "kindString": "Parameter", + "name": "max_items", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If true, the Task run process will be restarted whenever it exits with\na non-zero status code." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3445, + "kind": 32768, + "kindString": "Parameter", + "name": "restart_on_error", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Task input object." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3446, + "kind": 32768, + "kindString": "Parameter", + "name": "task_input", + "type": { + "name": "dict | TaskInput | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "reference", + "name": "TaskInput", + "target": "795" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A human-friendly equivalent of the name." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3447, + "kind": 32768, + "kindString": "Parameter", + "name": "title", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The desired number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3448, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_desired_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum number of concurrent HTTP requests for\na single Actor Standby run." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3449, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_max_requests_per_actor_run", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "If the Actor run does not receive any requests for this time,\nit will be shut down." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3450, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_idle_timeout", + "type": { + "name": "timedelta | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "timedelta" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The build tag or number to run when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3451, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_build", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "The memory in megabytes to use when the Actor is in Standby mode." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3452, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_standby_memory_mbytes", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3453, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Task", + "type": "reference", + "target": "805" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3667, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the task collection.\n\nProvides methods to manage the task collection, e.g. list or create tasks. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3427, + 3437, + 3431 + ], + "title": "Methods" + }, + { + "children": [ + 3667 + ], + "title": "Properties" + } + ], + "id": 3426, + "module": "_resource_clients.task_collection", + "name": "TaskCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the task collection.\n\nProvides methods to manage the task collection, e.g. list or create tasks. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/task_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 147 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3455, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3460, + "module": "_resource_clients.user", + "name": "get", + "parsedDocstring": { + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved user data, or None if the user does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved user data, or None if the user does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n" + } + ] + }, + "flags": {}, + "id": 3461, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3462, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "UserPublicInfo | UserPrivateInfo | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "UserPublicInfo", + "target": "1356" + }, + { + "type": "reference", + "name": "UserPrivateInfo", + "target": "1413" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3463, + "module": "_resource_clients.user", + "name": "monthly_usage", + "parsedDocstring": { + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request, or None, if it did not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 68 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request, or None, if it did not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n" + } + ] + }, + "flags": {}, + "id": 3464, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "monthly_usage", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3465, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "MonthlyUsage | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "MonthlyUsage", + "target": "1450" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3466, + "module": "_resource_clients.user", + "name": "limits", + "parsedDocstring": { + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The account limits, or None, if they could not be retrieved." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 98 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The account limits, or None, if they could not be retrieved." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n" + } + ] + }, + "flags": {}, + "id": 3467, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "limits", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3468, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AccountLimits | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AccountLimits", + "target": "1485" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the account's limits manageable on your account's Limits page.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3469, + "module": "_resource_clients.user", + "name": "update_limits", + "parsedDocstring": { + "text": "Update the account's limits manageable on your account's Limits page.\n", + "args": { + "max_monthly_usage_usd": "Maximum monthly usage in USD.", + "data_retention_days": "Data retention period in days.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 127 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the account's limits manageable on your account's Limits page.\n" + } + ] + }, + "flags": {}, + "id": 3470, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update_limits", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum monthly usage in USD." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3471, + "kind": 32768, + "kindString": "Parameter", + "name": "max_monthly_usage_usd", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Data retention period in days." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3472, + "kind": 32768, + "kindString": "Parameter", + "name": "data_retention_days", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3473, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3695, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing user account information.\n\nProvides methods to manage user account information, e.g. get user data or monthly usage. Obtain an instance via\nan appropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3455, + 3460, + 3466, + 3463, + 3469 + ], + "title": "Methods" + }, + { + "children": [ + 3695 + ], + "title": "Properties" + } + ], + "id": 3454, + "module": "_resource_clients.user", + "name": "UserClient", + "parsedDocstring": { + "text": "Sub-client for managing user account information.\n\nProvides methods to manage user account information, e.g. get user data or monthly usage. Obtain an instance via\nan appropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 27 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3475, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 163 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3480, + "module": "_resource_clients.user", + "name": "get", + "parsedDocstring": { + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved user data, or None if the user does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 176 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved user data, or None if the user does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return information about user account.\n\nYou receive all or only public info based on your token permissions.\n\nhttps://docs.apify.com/api/v2#/reference/users\n" + } + ] + }, + "flags": {}, + "id": 3481, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3482, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "UserPublicInfo | UserPrivateInfo | None", + "type": "union", + "types": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "name": "UserPublicInfo", + "target": "1356" + }, + { + "type": "reference", + "name": "UserPrivateInfo", + "target": "1413" + } + ] + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3483, + "module": "_resource_clients.user", + "name": "monthly_usage", + "parsedDocstring": { + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved request, or None, if it did not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 197 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved request, or None, if it did not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return monthly usage of the user account.\n\nThis includes a complete usage summary for the current usage cycle, an overall sum, as well as a daily breakdown\nof usage. It is the same information which is available on the account's Billing page. The information includes\nuse of storage, data transfer, and request queue usage.\n\nhttps://docs.apify.com/api/v2/#/reference/users/monthly-usage\n" + } + ] + }, + "flags": {}, + "id": 3484, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "monthly_usage", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3485, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "MonthlyUsage | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "MonthlyUsage", + "target": "1450" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3486, + "module": "_resource_clients.user", + "name": "limits", + "parsedDocstring": { + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The account limits, or None, if they could not be retrieved." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 227 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The account limits, or None, if they could not be retrieved." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Return a complete summary of the user account's limits.\n\nIt is the same information which is available on the account's Limits page. The returned data includes\nthe current usage cycle, a summary of the account's limits, and the current usage.\n\nhttps://docs.apify.com/api/v2#/reference/users/account-limits/get-account-limits\n" + } + ] + }, + "flags": {}, + "id": 3487, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "limits", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3488, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "AccountLimits | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "AccountLimits", + "target": "1485" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the account's limits manageable on your account's Limits page.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3489, + "module": "_resource_clients.user", + "name": "update_limits", + "parsedDocstring": { + "text": "Update the account's limits manageable on your account's Limits page.\n", + "args": { + "max_monthly_usage_usd": "Maximum monthly usage in USD.", + "data_retention_days": "Data retention period in days.", + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 256 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the account's limits manageable on your account's Limits page.\n" + } + ] + }, + "flags": {}, + "id": 3490, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update_limits", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Maximum monthly usage in USD." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3491, + "kind": 32768, + "kindString": "Parameter", + "name": "max_monthly_usage_usd", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Data retention period in days." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3492, + "kind": 32768, + "kindString": "Parameter", + "name": "data_retention_days", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3493, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3668, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing user account information.\n\nProvides methods to manage user account information, e.g. get user data or monthly usage. Obtain an instance via\nan appropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3475, + 3480, + 3486, + 3483, + 3489 + ], + "title": "Methods" + }, + { + "children": [ + 3668 + ], + "title": "Properties" + } + ], + "id": 3474, + "module": "_resource_clients.user", + "name": "UserClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing user account information.\n\nProvides methods to manage user account information, e.g. get user data or monthly usage. Obtain an instance via\nan appropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/user.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 156 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3495, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3500, + "module": "_resource_clients.webhook", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 47 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n" + } + ] + }, + "flags": {}, + "id": 3501, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3502, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Webhook", + "target": "831" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3503, + "module": "_resource_clients.webhook", + "name": "update", + "parsedDocstring": { + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n", + "args": { + "event_types": "List of event types that should trigger the webhook. At least one is required.", + "request_url": "URL that will be invoked once the webhook is triggered.", + "payload_template": "Specification of the payload that will be sent to request_url.", + "headers_template": "Headers that will be sent to the request_url.", + "actor_id": "Id of the Actor whose runs should trigger the webhook.", + "actor_task_id": "Id of the Actor task whose runs should trigger the webhook.", + "actor_run_id": "Id of the Actor run which should trigger the webhook.", + "ignore_ssl_errors": "Whether the webhook should ignore SSL errors returned by request_url.", + "do_not_retry": "Whether the webhook should retry sending the payload to request_url upon failure.", + "is_ad_hoc": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated webhook." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 63 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated webhook." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n" + } + ] + }, + "flags": {}, + "id": 3504, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of event types that should trigger the webhook. At least one is required." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3505, + "kind": 32768, + "kindString": "Parameter", + "name": "event_types", + "type": { + "name": "list[WebhookEventType] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL that will be invoked once the webhook is triggered." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3506, + "kind": 32768, + "kindString": "Parameter", + "name": "request_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specification of the payload that will be sent to request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3507, + "kind": 32768, + "kindString": "Parameter", + "name": "payload_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Headers that will be sent to the request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3508, + "kind": 32768, + "kindString": "Parameter", + "name": "headers_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3509, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor task whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3510, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_task_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor run which should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3511, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_run_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should ignore SSL errors returned by request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3512, + "kind": 32768, + "kindString": "Parameter", + "name": "ignore_ssl_errors", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should retry sending the payload to request_url upon failure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3513, + "kind": 32768, + "kindString": "Parameter", + "name": "do_not_retry", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3514, + "kind": 32768, + "kindString": "Parameter", + "name": "is_ad_hoc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3515, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook", + "type": "reference", + "target": "831" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3516, + "module": "_resource_clients.webhook", + "name": "delete", + "parsedDocstring": { + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 116 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n" + } + ] + }, + "flags": {}, + "id": 3517, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3518, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3519, + "module": "_resource_clients.webhook", + "name": "test", + "parsedDocstring": { + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The webhook dispatch created by the test." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 126 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The webhook dispatch created by the test." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n" + } + ] + }, + "flags": {}, + "id": 3520, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "test", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3521, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "WebhookDispatch | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookDispatch", + "target": "1212" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3522, + "module": "_resource_clients.webhook", + "name": "dispatches", + "parsedDocstring": { + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n", + "returns": "A client allowing access to dispatches of this webhook using its list method." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 155 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to dispatches of this webhook using its list method." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n" + } + ] + }, + "flags": {}, + "id": 3523, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dispatches", + "parameters": [], + "type": { + "name": "WebhookDispatchCollectionClient", + "type": "reference", + "target": "3622" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3696, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific webhook.\n\nProvides methods to manage a specific webhook, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3495, + 3516, + 3522, + 3500, + 3519, + 3503 + ], + "title": "Methods" + }, + { + "children": [ + 3696 + ], + "title": "Properties" + } + ], + "id": 3494, + "module": "_resource_clients.webhook", + "name": "WebhookClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific webhook.\n\nProvides methods to manage a specific webhook, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 27 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3525, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 177 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3530, + "module": "_resource_clients.webhook", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 190 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/get-webhook\n" + } + ] + }, + "flags": {}, + "id": 3531, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3532, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "Webhook", + "target": "831" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3533, + "module": "_resource_clients.webhook", + "name": "update", + "parsedDocstring": { + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n", + "args": { + "event_types": "List of event types that should trigger the webhook. At least one is required.", + "request_url": "URL that will be invoked once the webhook is triggered.", + "payload_template": "Specification of the payload that will be sent to request_url.", + "headers_template": "Headers that will be sent to the request_url.", + "actor_id": "Id of the Actor whose runs should trigger the webhook.", + "actor_task_id": "Id of the Actor task whose runs should trigger the webhook.", + "actor_run_id": "Id of the Actor run which should trigger the webhook.", + "ignore_ssl_errors": "Whether the webhook should ignore SSL errors returned by request_url.", + "do_not_retry": "Whether the webhook should retry sending the payload to request_url upon failure.", + "is_ad_hoc": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The updated webhook." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 206 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The updated webhook." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Update the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/update-webhook\n" + } + ] + }, + "flags": {}, + "id": 3534, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "update", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of event types that should trigger the webhook. At least one is required." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3535, + "kind": 32768, + "kindString": "Parameter", + "name": "event_types", + "type": { + "name": "list[WebhookEventType] | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "list", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL that will be invoked once the webhook is triggered." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3536, + "kind": 32768, + "kindString": "Parameter", + "name": "request_url", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specification of the payload that will be sent to request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3537, + "kind": 32768, + "kindString": "Parameter", + "name": "payload_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Headers that will be sent to the request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3538, + "kind": 32768, + "kindString": "Parameter", + "name": "headers_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3539, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor task whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3540, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_task_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor run which should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3541, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_run_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should ignore SSL errors returned by request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3542, + "kind": 32768, + "kindString": "Parameter", + "name": "ignore_ssl_errors", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should retry sending the payload to request_url upon failure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3543, + "kind": 32768, + "kindString": "Parameter", + "name": "do_not_retry", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3544, + "kind": 32768, + "kindString": "Parameter", + "name": "is_ad_hoc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3545, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook", + "type": "reference", + "target": "831" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3546, + "module": "_resource_clients.webhook", + "name": "delete", + "parsedDocstring": { + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 259 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Delete the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-object/delete-webhook\n" + } + ] + }, + "flags": {}, + "id": 3547, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "delete", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request." + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3548, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3549, + "module": "_resource_clients.webhook", + "name": "test", + "parsedDocstring": { + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The webhook dispatch created by the test." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 269 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The webhook dispatch created by the test." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Test a webhook.\n\nCreates a webhook dispatch with a dummy payload.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-test/test-webhook\n" + } + ] + }, + "flags": {}, + "id": 3550, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "test", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3551, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "WebhookDispatch | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookDispatch", + "target": "1212" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3552, + "module": "_resource_clients.webhook", + "name": "dispatches", + "parsedDocstring": { + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n", + "returns": "A client allowing access to dispatches of this webhook using its list method." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 298 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "A client allowing access to dispatches of this webhook using its list method." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Get dispatches of the webhook.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/dispatches-collection/get-collection\n" + } + ] + }, + "flags": {}, + "id": 3553, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "dispatches", + "parameters": [], + "type": { + "name": "WebhookDispatchCollectionClientAsync", + "type": "reference", + "target": "3633" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3669, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific webhook.\n\nProvides methods to manage a specific webhook, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3525, + 3546, + 3552, + 3530, + 3549, + 3533 + ], + "title": "Methods" + }, + { + "children": [ + 3669 + ], + "title": "Properties" + } + ], + "id": 3524, + "module": "_resource_clients.webhook", + "name": "WebhookClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific webhook.\n\nProvides methods to manage a specific webhook, e.g. get, update, or delete it. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 170 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3555, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 30 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3559, + "module": "_resource_clients.webhook_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n", + "args": { + "limit": "How many webhooks to retrieve.", + "offset": "What webhook to include as first when retrieving the list.", + "desc": "Whether to sort the webhooks in descending order based on their date of creation.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available webhooks matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 41 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available webhooks matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n" + } + ] + }, + "flags": {}, + "id": 3560, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many webhooks to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3561, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What webhook to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3562, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the webhooks in descending order based on their date of creation." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3563, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3564, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfWebhooks", + "type": "reference", + "target": "540" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3565, + "module": "_resource_clients.webhook_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n", + "args": { + "event_types": "List of event types that should trigger the webhook. At least one is required.", + "request_url": "URL that will be invoked once the webhook is triggered.", + "payload_template": "Specification of the payload that will be sent to request_url.", + "headers_template": "Headers that will be sent to the request_url.", + "actor_id": "Id of the Actor whose runs should trigger the webhook.", + "actor_task_id": "Id of the Actor task whose runs should trigger the webhook.", + "actor_run_id": "Id of the Actor run which should trigger the webhook.", + "ignore_ssl_errors": "Whether the webhook should ignore SSL errors returned by request_url.", + "do_not_retry": "Whether the webhook should retry sending the payload to request_url upon failure.", + "idempotency_key": "A unique identifier of a webhook. You can use it to ensure that you won't create\nthe same webhook multiple times.", + "is_ad_hoc": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created webhook." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 65 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created webhook." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n" + } + ] + }, + "flags": {}, + "id": 3566, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of event types that should trigger the webhook. At least one is required." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3567, + "kind": 32768, + "kindString": "Parameter", + "name": "event_types", + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL that will be invoked once the webhook is triggered." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3568, + "kind": 32768, + "kindString": "Parameter", + "name": "request_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specification of the payload that will be sent to request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3569, + "kind": 32768, + "kindString": "Parameter", + "name": "payload_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Headers that will be sent to the request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3570, + "kind": 32768, + "kindString": "Parameter", + "name": "headers_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3571, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor task whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3572, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_task_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor run which should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3573, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_run_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should ignore SSL errors returned by request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3574, + "kind": 32768, + "kindString": "Parameter", + "name": "ignore_ssl_errors", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should retry sending the payload to request_url upon failure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3575, + "kind": 32768, + "kindString": "Parameter", + "name": "do_not_retry", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of a webhook. You can use it to ensure that you won't create\nthe same webhook multiple times." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3576, + "kind": 32768, + "kindString": "Parameter", + "name": "idempotency_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3577, + "kind": 32768, + "kindString": "Parameter", + "name": "is_ad_hoc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3578, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook", + "type": "reference", + "target": "831" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3697, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the webhook collection.\n\nProvides methods to manage the webhook collection, e.g. list or create webhooks. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3555, + 3565, + 3559 + ], + "title": "Methods" + }, + { + "children": [ + 3697 + ], + "title": "Properties" + } + ], + "id": 3554, + "module": "_resource_clients.webhook_collection", + "name": "WebhookCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the webhook collection.\n\nProvides methods to manage the webhook collection, e.g. list or create webhooks. Obtain an instance via an\nappropriate method on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 23 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3580, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 133 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3584, + "module": "_resource_clients.webhook_collection", + "name": "list", + "parsedDocstring": { + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n", + "args": { + "limit": "How many webhooks to retrieve.", + "offset": "What webhook to include as first when retrieving the list.", + "desc": "Whether to sort the webhooks in descending order based on their date of creation.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The list of available webhooks matching the specified filters." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 144 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The list of available webhooks matching the specified filters." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List the available webhooks.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks\n" + } + ] + }, + "flags": {}, + "id": 3585, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many webhooks to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3586, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What webhook to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3587, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the webhooks in descending order based on their date of creation." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3588, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3589, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfWebhooks", + "type": "reference", + "target": "540" + } + } + ] + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3590, + "module": "_resource_clients.webhook_collection", + "name": "create", + "parsedDocstring": { + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n", + "args": { + "event_types": "List of event types that should trigger the webhook. At least one is required.", + "request_url": "URL that will be invoked once the webhook is triggered.", + "payload_template": "Specification of the payload that will be sent to request_url.", + "headers_template": "Headers that will be sent to the request_url.", + "actor_id": "Id of the Actor whose runs should trigger the webhook.", + "actor_task_id": "Id of the Actor task whose runs should trigger the webhook.", + "actor_run_id": "Id of the Actor run which should trigger the webhook.", + "ignore_ssl_errors": "Whether the webhook should ignore SSL errors returned by request_url.", + "do_not_retry": "Whether the webhook should retry sending the payload to request_url upon failure.", + "idempotency_key": "A unique identifier of a webhook. You can use it to ensure that you won't create\nthe same webhook multiple times.", + "is_ad_hoc": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The created webhook." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 168 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The created webhook." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Create a new webhook.\n\nYou have to specify exactly one out of actor_id, actor_task_id or actor_run_id.\n\nhttps://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook\n" + } + ] + }, + "flags": {}, + "id": 3591, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "create", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "List of event types that should trigger the webhook. At least one is required." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3592, + "kind": 32768, + "kindString": "Parameter", + "name": "event_types", + "type": { + "name": "list", + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "WebhookEventType", + "target": "496" + } + ], + "target": "2003" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "URL that will be invoked once the webhook is triggered." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 3593, + "kind": 32768, + "kindString": "Parameter", + "name": "request_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Specification of the payload that will be sent to request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3594, + "kind": 32768, + "kindString": "Parameter", + "name": "payload_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Headers that will be sent to the request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3595, + "kind": 32768, + "kindString": "Parameter", + "name": "headers_template", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3596, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor task whose runs should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3597, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_task_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Id of the Actor run which should trigger the webhook." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3598, + "kind": 32768, + "kindString": "Parameter", + "name": "actor_run_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should ignore SSL errors returned by request_url." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3599, + "kind": 32768, + "kindString": "Parameter", + "name": "ignore_ssl_errors", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the webhook should retry sending the payload to request_url upon failure." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3600, + "kind": 32768, + "kindString": "Parameter", + "name": "do_not_retry", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "A unique identifier of a webhook. You can use it to ensure that you won't create\nthe same webhook multiple times." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3601, + "kind": 32768, + "kindString": "Parameter", + "name": "idempotency_key", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Set to True if you want the webhook to be triggered only the first time the condition\nis fulfilled. Only applicable when actor_run_id is filled." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3602, + "kind": 32768, + "kindString": "Parameter", + "name": "is_ad_hoc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3603, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "Webhook", + "type": "reference", + "target": "831" + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3670, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the webhook collection.\n\nProvides methods to manage the webhook collection, e.g. list or create webhooks. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3580, + 3590, + 3584 + ], + "title": "Methods" + }, + { + "children": [ + 3670 + ], + "title": "Properties" + } + ], + "id": 3579, + "module": "_resource_clients.webhook_collection", + "name": "WebhookCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the webhook collection.\n\nProvides methods to manage the webhook collection, e.g. list or create webhooks. Obtain an instance via an\nappropriate method on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 126 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3605, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3610, + "module": "_resource_clients.webhook_dispatch", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook dispatch, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 34 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook dispatch, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n" + } + ] + }, + "flags": {}, + "id": 3611, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3612, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "WebhookDispatch | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookDispatch", + "target": "1212" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3698, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific webhook dispatch.\n\nProvides methods to manage a specific webhook dispatch, e.g. get its details. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3605, + 3610 + ], + "title": "Methods" + }, + { + "children": [ + 3698 + ], + "title": "Properties" + } + ], + "id": 3604, + "module": "_resource_clients.webhook_dispatch", + "name": "WebhookDispatchClient", + "parsedDocstring": { + "text": "Sub-client for managing a specific webhook dispatch.\n\nProvides methods to manage a specific webhook dispatch, e.g. get its details. Obtain an instance via an appropriate\nmethod on the `ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3614, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 59 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3619, + "module": "_resource_clients.webhook_dispatch", + "name": "get", + "parsedDocstring": { + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n", + "args": { + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook dispatch, or None if it does not exist." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 72 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook dispatch, or None if it does not exist." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "Retrieve the webhook dispatch.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatch-object/get-webhook-dispatch\n" + } + ] + }, + "flags": {}, + "id": 3620, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "get", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'short'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3621, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "WebhookDispatch | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "WebhookDispatch", + "target": "1212" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3671, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for managing a specific webhook dispatch.\n\nProvides methods to manage a specific webhook dispatch, e.g. get its details. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3614, + 3619 + ], + "title": "Methods" + }, + { + "children": [ + 3671 + ], + "title": "Properties" + } + ], + "id": 3613, + "module": "_resource_clients.webhook_dispatch", + "name": "WebhookDispatchClientAsync", + "parsedDocstring": { + "text": "Sub-client for managing a specific webhook dispatch.\n\nProvides methods to manage a specific webhook dispatch, e.g. get its details. Obtain an instance via an appropriate\nmethod on the `ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 52 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3623, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 21 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1776, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1777, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1778, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1779, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClient", + "type": "reference", + "target": "1695" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1780, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1781, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistry", + "type": "reference", + "target": "162" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1782, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1783, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClient.__init__", + "target": 1775, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3627, + "module": "_resource_clients.webhook_dispatch_collection", + "name": "list", + "parsedDocstring": { + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n", + "args": { + "limit": "How many webhook dispatches to retrieve.", + "offset": "What webhook dispatch to include as first when retrieving the list.", + "desc": "Whether to sort the webhook dispatches in descending order based on the date of their creation.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook dispatches of a user." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 32 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook dispatches of a user." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n" + } + ] + }, + "flags": {}, + "id": 3628, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many webhook dispatches to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3629, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What webhook dispatch to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3630, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the webhook dispatches in descending order based on the date of their creation." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3631, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3632, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfWebhookDispatches | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ListOfWebhookDispatches", + "target": "1225" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3699, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the webhook dispatch collection.\n\nProvides methods to manage webhook dispatches, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3623, + 3627 + ], + "title": "Methods" + }, + { + "children": [ + 3699 + ], + "title": "Properties" + } + ], + "id": 3622, + "module": "_resource_clients.webhook_dispatch_collection", + "name": "WebhookDispatchCollectionClient", + "parsedDocstring": { + "text": "Sub-client for the webhook dispatch collection.\n\nProvides methods to manage webhook dispatches, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClient` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 14 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClient", + "target": "1774", + "type": "reference" + } + ] + }, + { + "kind": 128, + "kindString": "Class", + "children": [ + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3634, + "module": "_resource_clients._resource_client", + "name": "__init__", + "parsedDocstring": { + "text": "Initialize the resource client.\n", + "args": { + "base_url": "API base URL.", + "public_base_url": "Public CDN base URL.", + "http_client": "HTTP client for making requests.", + "resource_path": "Resource endpoint path (e.g., 'actors', 'datasets').", + "client_registry": "Bundle of client classes for dependency injection.", + "resource_id": "Optional resource ID for single-resource clients.", + "params": "Optional default parameters for all requests." + } + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 65 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Initialize the resource client.\n" + } + ] + }, + "flags": {}, + "id": 1786, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [], + "name": "__init__", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "API base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1787, + "kind": 32768, + "kindString": "Parameter", + "name": "base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Public CDN base URL." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1788, + "kind": 32768, + "kindString": "Parameter", + "name": "public_base_url", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP client for making requests." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1789, + "kind": 32768, + "kindString": "Parameter", + "name": "http_client", + "type": { + "name": "HttpClientAsync", + "type": "reference", + "target": "1706" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Resource endpoint path (e.g., 'actors', 'datasets')." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1790, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_path", + "type": { + "name": "str", + "type": "reference" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bundle of client classes for dependency injection." + } + ] + }, + "flags": { + "isOptional": false, + "keyword-only": true + }, + "id": 1791, + "kind": 32768, + "kindString": "Parameter", + "name": "client_registry", + "type": { + "name": "ClientRegistryAsync", + "type": "reference", + "target": "190" + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional resource ID for single-resource clients." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1792, + "kind": 32768, + "kindString": "Parameter", + "name": "resource_id", + "type": { + "name": "str | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "str" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Optional default parameters for all requests." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 1793, + "kind": 32768, + "kindString": "Parameter", + "name": "params", + "type": { + "name": "dict | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "dict" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ], + "type": { + "name": "None", + "type": "literal", + "value": null + }, + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + } + ], + "overwrites": { + "name": "ResourceClientAsync.__init__", + "target": 1785, + "type": "reference" + } + }, + { + "kind": 2048, + "kindString": "Method", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n" + } + ] + }, + "decorations": [], + "flags": {}, + "groups": [], + "id": 3638, + "module": "_resource_clients.webhook_dispatch_collection", + "name": "list", + "parsedDocstring": { + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n", + "args": { + "limit": "How many webhook dispatches to retrieve.", + "offset": "What webhook dispatch to include as first when retrieving the list.", + "desc": "Whether to sort the webhook dispatches in descending order based on the date of their creation.", + "timeout": "Timeout for the API HTTP request.\n" + }, + "returns": "The retrieved webhook dispatches of a user." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 76 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "signatures": [ + { + "comment": { + "blockTags": [ + { + "content": [ + { + "kind": "text", + "text": "The retrieved webhook dispatches of a user." + } + ], + "tag": "@returns" + } + ], + "summary": [ + { + "kind": "text", + "text": "List all webhook dispatches of a user.\n\nhttps://docs.apify.com/api/v2#/reference/webhook-dispatches/webhook-dispatches-collection/get-list-of-webhook-dispatches\n" + } + ] + }, + "flags": {}, + "id": 3639, + "kind": 4096, + "kindString": "Call signature", + "modifiers": [ + "async" + ], + "name": "list", + "parameters": [ + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "How many webhook dispatches to retrieve." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3640, + "kind": 32768, + "kindString": "Parameter", + "name": "limit", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "What webhook dispatch to include as first when retrieving the list." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3641, + "kind": 32768, + "kindString": "Parameter", + "name": "offset", + "type": { + "name": "int | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "int" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether to sort the webhook dispatches in descending order based on the date of their creation." + } + ] + }, + "defaultValue": "None", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3642, + "kind": 32768, + "kindString": "Parameter", + "name": "desc", + "type": { + "name": "bool | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "bool" + }, + { + "type": "literal", + "value": null + } + ] + } + }, + { + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeout for the API HTTP request.\n" + } + ] + }, + "defaultValue": "'medium'", + "flags": { + "isOptional": true, + "keyword-only": true + }, + "id": 3643, + "kind": 32768, + "kindString": "Parameter", + "name": "timeout", + "type": { + "name": "Timeout", + "type": "reference", + "target": "1582" + } + } + ], + "type": { + "name": "ListOfWebhookDispatches | None", + "type": "union", + "types": [ + { + "type": "reference", + "name": "ListOfWebhookDispatches", + "target": "1225" + }, + { + "type": "literal", + "value": null + } + ] + } + } + ] + }, + { + "kind": 1024, + "kindString": "Property", + "children": [], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Get the resource ID." + } + ] + }, + "decorations": [ + { + "name": "property" + } + ], + "flags": {}, + "groups": [], + "id": 3672, + "module": "_resource_clients._resource_client", + "name": "resource_id", + "parsedDocstring": { + "text": "Get the resource ID." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/_resource_client.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 62 + } + ], + "type": { + "name": "str | None", + "type": "reference" + }, + "inheritedFrom": { + "name": "ResourceClientBase.resource_id", + "target": 1773, + "type": "reference" + } + } + ], + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sub-client for the webhook dispatch collection.\n\nProvides methods to manage webhook dispatches, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + } + ] + }, + "decorations": [ + { + "args": "('Resource clients')", + "name": "docs_group" + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 3634, + 3638 + ], + "title": "Methods" + }, + { + "children": [ + 3672 + ], + "title": "Properties" + } + ], + "id": 3633, + "module": "_resource_clients.webhook_dispatch_collection", + "name": "WebhookDispatchCollectionClientAsync", + "parsedDocstring": { + "text": "Sub-client for the webhook dispatch collection.\n\nProvides methods to manage webhook dispatches, e.g. list them. Obtain an instance via an appropriate method on the\n`ApifyClientAsync` class." + }, + "sources": [ + { + "character": 1, + "fileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py", + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720", + "line": 58 + } + ], + "type": { + "name": "Undefined", + "type": "reference" + }, + "extendedTypes": [ + { + "name": "ResourceClientAsync", + "target": "1784", + "type": "reference" + } + ] + } + ], + "flags": {}, + "groups": [ + { + "children": [ + 2, + 82 + ], + "title": "Apify API clients" + }, + { + "children": [ + 1654, + 1653, + 1660 + ], + "title": "Errors" + }, + { + "children": [ + 1695, + 1706, + 1683, + 1664, + 1719, + 1741 + ], + "title": "HTTP clients" + }, + { + "children": [ + 2304, + 1526, + 1509, + 1548, + 1565 + ], + "title": "Other" + }, + { + "children": [ + 1794, + 1896, + 1998, + 2036, + 2074, + 2092, + 2110, + 2124, + 2138, + 2166, + 2194, + 2214, + 2234, + 2258, + 2282, + 2293, + 2311, + 2437, + 2543, + 2560, + 2577, + 2650, + 2723, + 2740, + 2757, + 2774, + 2792, + 2868, + 2944, + 2960, + 1774, + 1784, + 2976, + 3045, + 3114, + 3128, + 3142, + 3168, + 3194, + 3216, + 3238, + 3253, + 3268, + 3333, + 3398, + 3426, + 3454, + 3474, + 3494, + 3524, + 3554, + 3579, + 3604, + 3613, + 3622, + 3633 + ], + "title": "Resource clients" + } + ], + "id": 0, + "kind": 1, + "kindString": "Project", + "name": "apify-client", + "sources": [ + { + "character": 0, + "fileName": "src/index.ts", + "line": 1, + "gitRevision": "eb814a987c10543b393a20369c32b6f159831720" + } + ], + "symbolIdMap": { + "1": { + "qualifiedName": "__version__", + "sourceFileName": "/src/apify_client/__init__.py" + }, + "2": { + "qualifiedName": "ApifyClient", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "3": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "15": { + "qualifiedName": "with_custom_http_client", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "21": { + "qualifiedName": "token", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "22": { + "qualifiedName": "http_client", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "23": { + "qualifiedName": "actor", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "26": { + "qualifiedName": "actors", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "28": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "31": { + "qualifiedName": "builds", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "33": { + "qualifiedName": "run", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "36": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "38": { + "qualifiedName": "dataset", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "41": { + "qualifiedName": "datasets", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "43": { + "qualifiedName": "key_value_store", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "46": { + "qualifiedName": "key_value_stores", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "48": { + "qualifiedName": "request_queue", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "52": { + "qualifiedName": "request_queues", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "54": { + "qualifiedName": "webhook", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "57": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "59": { + "qualifiedName": "webhook_dispatch", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "62": { + "qualifiedName": "webhook_dispatches", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "64": { + "qualifiedName": "schedule", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "67": { + "qualifiedName": "schedules", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "69": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "72": { + "qualifiedName": "task", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "75": { + "qualifiedName": "tasks", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "77": { + "qualifiedName": "user", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "80": { + "qualifiedName": "store", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "82": { + "qualifiedName": "ApifyClientAsync", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "83": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "95": { + "qualifiedName": "with_custom_http_client", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "101": { + "qualifiedName": "token", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "102": { + "qualifiedName": "http_client", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "103": { + "qualifiedName": "actor", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "106": { + "qualifiedName": "actors", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "108": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "111": { + "qualifiedName": "builds", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "113": { + "qualifiedName": "run", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "116": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "118": { + "qualifiedName": "dataset", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "121": { + "qualifiedName": "datasets", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "123": { + "qualifiedName": "key_value_store", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "126": { + "qualifiedName": "key_value_stores", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "128": { + "qualifiedName": "request_queue", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "132": { + "qualifiedName": "request_queues", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "134": { + "qualifiedName": "webhook", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "137": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "139": { + "qualifiedName": "webhook_dispatch", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "142": { + "qualifiedName": "webhook_dispatches", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "144": { + "qualifiedName": "schedule", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "147": { + "qualifiedName": "schedules", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "149": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "152": { + "qualifiedName": "task", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "155": { + "qualifiedName": "tasks", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "157": { + "qualifiedName": "user", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "160": { + "qualifiedName": "store", + "sourceFileName": "/src/apify_client/_apify_client.py" + }, + "162": { + "qualifiedName": "ClientRegistry", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "163": { + "qualifiedName": "actor_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "164": { + "qualifiedName": "actor_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "165": { + "qualifiedName": "actor_env_var_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "166": { + "qualifiedName": "actor_env_var_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "167": { + "qualifiedName": "actor_version_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "168": { + "qualifiedName": "actor_version_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "169": { + "qualifiedName": "build_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "170": { + "qualifiedName": "build_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "171": { + "qualifiedName": "dataset_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "172": { + "qualifiedName": "dataset_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "173": { + "qualifiedName": "key_value_store_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "174": { + "qualifiedName": "key_value_store_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "175": { + "qualifiedName": "log_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "176": { + "qualifiedName": "request_queue_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "177": { + "qualifiedName": "request_queue_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "178": { + "qualifiedName": "run_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "179": { + "qualifiedName": "run_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "180": { + "qualifiedName": "schedule_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "181": { + "qualifiedName": "schedule_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "182": { + "qualifiedName": "store_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "183": { + "qualifiedName": "task_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "184": { + "qualifiedName": "task_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "185": { + "qualifiedName": "user_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "186": { + "qualifiedName": "webhook_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "187": { + "qualifiedName": "webhook_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "188": { + "qualifiedName": "webhook_dispatch_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "189": { + "qualifiedName": "webhook_dispatch_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "190": { + "qualifiedName": "ClientRegistryAsync", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "191": { + "qualifiedName": "actor_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "192": { + "qualifiedName": "actor_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "193": { + "qualifiedName": "actor_env_var_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "194": { + "qualifiedName": "actor_env_var_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "195": { + "qualifiedName": "actor_version_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "196": { + "qualifiedName": "actor_version_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "197": { + "qualifiedName": "build_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "198": { + "qualifiedName": "build_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "199": { + "qualifiedName": "dataset_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "200": { + "qualifiedName": "dataset_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "201": { + "qualifiedName": "key_value_store_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "202": { + "qualifiedName": "key_value_store_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "203": { + "qualifiedName": "log_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "204": { + "qualifiedName": "request_queue_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "205": { + "qualifiedName": "request_queue_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "206": { + "qualifiedName": "run_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "207": { + "qualifiedName": "run_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "208": { + "qualifiedName": "schedule_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "209": { + "qualifiedName": "schedule_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "210": { + "qualifiedName": "store_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "211": { + "qualifiedName": "task_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "212": { + "qualifiedName": "task_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "213": { + "qualifiedName": "user_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "214": { + "qualifiedName": "webhook_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "215": { + "qualifiedName": "webhook_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "216": { + "qualifiedName": "webhook_dispatch_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "217": { + "qualifiedName": "webhook_dispatch_collection_client", + "sourceFileName": "/src/apify_client/_client_registry.py" + }, + "218": { + "qualifiedName": "DEFAULT_API_URL", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "219": { + "qualifiedName": "API_VERSION", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "220": { + "qualifiedName": "DEFAULT_TIMEOUT_SHORT", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "221": { + "qualifiedName": "DEFAULT_TIMEOUT_MEDIUM", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "222": { + "qualifiedName": "DEFAULT_TIMEOUT_LONG", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "223": { + "qualifiedName": "DEFAULT_TIMEOUT_MAX", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "224": { + "qualifiedName": "DEFAULT_MAX_RETRIES", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "225": { + "qualifiedName": "DEFAULT_MIN_DELAY_BETWEEN_RETRIES", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "226": { + "qualifiedName": "DEFAULT_WAIT_FOR_FINISH", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "227": { + "qualifiedName": "DEFAULT_WAIT_WHEN_JOB_NOT_EXIST", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "228": { + "qualifiedName": "TERMINAL_STATUSES", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "229": { + "qualifiedName": "OVERRIDABLE_DEFAULT_HEADERS", + "sourceFileName": "/src/apify_client/_consts.py" + }, + "230": { + "qualifiedName": "GroupName", + "sourceFileName": "/src/apify_client/_docs.py" + }, + "231": { + "qualifiedName": "T", + "sourceFileName": "/src/apify_client/_docs.py" + }, + "232": { + "qualifiedName": "docs_group", + "sourceFileName": "/src/apify_client/_docs.py" + }, + "235": { + "qualifiedName": "logger_name", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "236": { + "qualifiedName": "logger", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "237": { + "qualifiedName": "LogContext", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "238": { + "qualifiedName": "attempt", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "239": { + "qualifiedName": "client_method", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "240": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "241": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "242": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "243": { + "qualifiedName": "log_context", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "244": { + "qualifiedName": "WithLogDetailsClient", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "245": { + "qualifiedName": "__new__", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "250": { + "qualifiedName": "RedirectLogFormatter", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "251": { + "qualifiedName": "format", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "254": { + "qualifiedName": "create_redirect_logger", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "257": { + "qualifiedName": "_ContextInjectingFilter", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "258": { + "qualifiedName": "filter", + "sourceFileName": "/src/apify_client/_logging.py" + }, + "261": { + "qualifiedName": "PaginationResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "262": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "263": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "264": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "265": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "266": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "267": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "268": { + "qualifiedName": "ActorStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "269": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "270": { + "qualifiedName": "total_builds", + "sourceFileName": "/src/apify_client/_models.py" + }, + "271": { + "qualifiedName": "total_runs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "272": { + "qualifiedName": "total_users", + "sourceFileName": "/src/apify_client/_models.py" + }, + "273": { + "qualifiedName": "total_users7_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "274": { + "qualifiedName": "total_users30_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "275": { + "qualifiedName": "total_users90_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "276": { + "qualifiedName": "total_metamorphs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "277": { + "qualifiedName": "last_run_started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "278": { + "qualifiedName": "ActorShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "279": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "280": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "281": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "282": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "283": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "284": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "285": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "286": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "287": { + "qualifiedName": "ListOfActors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "288": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "289": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "290": { + "qualifiedName": "ListOfActorsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "291": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "292": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "293": { + "qualifiedName": "Error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "294": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "295": { + "qualifiedName": "type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "296": { + "qualifiedName": "message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "297": { + "qualifiedName": "ErrorResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "298": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "299": { + "qualifiedName": "error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "300": { + "qualifiedName": "VersionSourceType", + "sourceFileName": "/src/apify_client/_models.py" + }, + "301": { + "qualifiedName": "SOURCE_FILES", + "sourceFileName": "/src/apify_client/_models.py" + }, + "302": { + "qualifiedName": "GIT_REPO", + "sourceFileName": "/src/apify_client/_models.py" + }, + "303": { + "qualifiedName": "TARBALL", + "sourceFileName": "/src/apify_client/_models.py" + }, + "304": { + "qualifiedName": "GITHUB_GIST", + "sourceFileName": "/src/apify_client/_models.py" + }, + "305": { + "qualifiedName": "EnvVar", + "sourceFileName": "/src/apify_client/_models.py" + }, + "306": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "307": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "308": { + "qualifiedName": "value", + "sourceFileName": "/src/apify_client/_models.py" + }, + "309": { + "qualifiedName": "is_secret", + "sourceFileName": "/src/apify_client/_models.py" + }, + "310": { + "qualifiedName": "SourceCodeFileFormat", + "sourceFileName": "/src/apify_client/_models.py" + }, + "311": { + "qualifiedName": "BASE64", + "sourceFileName": "/src/apify_client/_models.py" + }, + "312": { + "qualifiedName": "TEXT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "313": { + "qualifiedName": "SourceCodeFile", + "sourceFileName": "/src/apify_client/_models.py" + }, + "314": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "315": { + "qualifiedName": "format", + "sourceFileName": "/src/apify_client/_models.py" + }, + "316": { + "qualifiedName": "content", + "sourceFileName": "/src/apify_client/_models.py" + }, + "317": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "318": { + "qualifiedName": "SourceCodeFolder", + "sourceFileName": "/src/apify_client/_models.py" + }, + "319": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "320": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "321": { + "qualifiedName": "folder", + "sourceFileName": "/src/apify_client/_models.py" + }, + "322": { + "qualifiedName": "Version", + "sourceFileName": "/src/apify_client/_models.py" + }, + "323": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "324": { + "qualifiedName": "version_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "325": { + "qualifiedName": "source_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "326": { + "qualifiedName": "env_vars", + "sourceFileName": "/src/apify_client/_models.py" + }, + "327": { + "qualifiedName": "apply_env_vars_to_build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "328": { + "qualifiedName": "build_tag", + "sourceFileName": "/src/apify_client/_models.py" + }, + "329": { + "qualifiedName": "source_files", + "sourceFileName": "/src/apify_client/_models.py" + }, + "330": { + "qualifiedName": "git_repo_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "331": { + "qualifiedName": "tarball_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "332": { + "qualifiedName": "github_gist_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "333": { + "qualifiedName": "CommonActorPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "334": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "335": { + "qualifiedName": "apify_margin_percentage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "336": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "337": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "338": { + "qualifiedName": "notified_about_future_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "339": { + "qualifiedName": "notified_about_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "340": { + "qualifiedName": "reason_for_change", + "sourceFileName": "/src/apify_client/_models.py" + }, + "341": { + "qualifiedName": "PricingModel", + "sourceFileName": "/src/apify_client/_models.py" + }, + "342": { + "qualifiedName": "PAY_PER_EVENT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "343": { + "qualifiedName": "PRICE_PER_DATASET_ITEM", + "sourceFileName": "/src/apify_client/_models.py" + }, + "344": { + "qualifiedName": "FLAT_PRICE_PER_MONTH", + "sourceFileName": "/src/apify_client/_models.py" + }, + "345": { + "qualifiedName": "FREE", + "sourceFileName": "/src/apify_client/_models.py" + }, + "346": { + "qualifiedName": "ActorChargeEvent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "347": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "348": { + "qualifiedName": "event_price_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "349": { + "qualifiedName": "event_title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "350": { + "qualifiedName": "event_description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "351": { + "qualifiedName": "PricingPerEvent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "352": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "353": { + "qualifiedName": "actor_charge_events", + "sourceFileName": "/src/apify_client/_models.py" + }, + "354": { + "qualifiedName": "PayPerEventActorPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "355": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "356": { + "qualifiedName": "pricing_model", + "sourceFileName": "/src/apify_client/_models.py" + }, + "357": { + "qualifiedName": "pricing_per_event", + "sourceFileName": "/src/apify_client/_models.py" + }, + "358": { + "qualifiedName": "minimal_max_total_charge_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "359": { + "qualifiedName": "PricePerDatasetItemActorPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "360": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "361": { + "qualifiedName": "pricing_model", + "sourceFileName": "/src/apify_client/_models.py" + }, + "362": { + "qualifiedName": "unit_name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "363": { + "qualifiedName": "price_per_unit_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "364": { + "qualifiedName": "FlatPricePerMonthActorPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "365": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "366": { + "qualifiedName": "pricing_model", + "sourceFileName": "/src/apify_client/_models.py" + }, + "367": { + "qualifiedName": "trial_minutes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "368": { + "qualifiedName": "price_per_unit_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "369": { + "qualifiedName": "FreeActorPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "370": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "371": { + "qualifiedName": "pricing_model", + "sourceFileName": "/src/apify_client/_models.py" + }, + "372": { + "qualifiedName": "ActorPermissionLevel", + "sourceFileName": "/src/apify_client/_models.py" + }, + "373": { + "qualifiedName": "LIMITED_PERMISSIONS", + "sourceFileName": "/src/apify_client/_models.py" + }, + "374": { + "qualifiedName": "FULL_PERMISSIONS", + "sourceFileName": "/src/apify_client/_models.py" + }, + "375": { + "qualifiedName": "DefaultRunOptions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "376": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "377": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "378": { + "qualifiedName": "timeout_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "379": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "380": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "381": { + "qualifiedName": "max_items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "382": { + "qualifiedName": "force_permission_level", + "sourceFileName": "/src/apify_client/_models.py" + }, + "383": { + "qualifiedName": "ActorStandby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "384": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "385": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "386": { + "qualifiedName": "desired_requests_per_actor_run", + "sourceFileName": "/src/apify_client/_models.py" + }, + "387": { + "qualifiedName": "max_requests_per_actor_run", + "sourceFileName": "/src/apify_client/_models.py" + }, + "388": { + "qualifiedName": "idle_timeout_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "389": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "390": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "391": { + "qualifiedName": "disable_standby_fields_override", + "sourceFileName": "/src/apify_client/_models.py" + }, + "392": { + "qualifiedName": "should_pass_actor_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "393": { + "qualifiedName": "ExampleRunInput", + "sourceFileName": "/src/apify_client/_models.py" + }, + "394": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "395": { + "qualifiedName": "body", + "sourceFileName": "/src/apify_client/_models.py" + }, + "396": { + "qualifiedName": "content_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "397": { + "qualifiedName": "CreateActorRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "398": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "399": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "400": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "401": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "402": { + "qualifiedName": "is_public", + "sourceFileName": "/src/apify_client/_models.py" + }, + "403": { + "qualifiedName": "seo_title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "404": { + "qualifiedName": "seo_description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "405": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "406": { + "qualifiedName": "versions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "407": { + "qualifiedName": "pricing_infos", + "sourceFileName": "/src/apify_client/_models.py" + }, + "408": { + "qualifiedName": "categories", + "sourceFileName": "/src/apify_client/_models.py" + }, + "409": { + "qualifiedName": "default_run_options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "410": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "411": { + "qualifiedName": "example_run_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "412": { + "qualifiedName": "is_deprecated", + "sourceFileName": "/src/apify_client/_models.py" + }, + "413": { + "qualifiedName": "TaggedBuildInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "414": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "415": { + "qualifiedName": "build_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "416": { + "qualifiedName": "build_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "417": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "418": { + "qualifiedName": "Actor", + "sourceFileName": "/src/apify_client/_models.py" + }, + "419": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "420": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "421": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "422": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "423": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "424": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "425": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "426": { + "qualifiedName": "is_public", + "sourceFileName": "/src/apify_client/_models.py" + }, + "427": { + "qualifiedName": "actor_permission_level", + "sourceFileName": "/src/apify_client/_models.py" + }, + "428": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "429": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "430": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "431": { + "qualifiedName": "versions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "432": { + "qualifiedName": "pricing_infos", + "sourceFileName": "/src/apify_client/_models.py" + }, + "433": { + "qualifiedName": "default_run_options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "434": { + "qualifiedName": "example_run_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "435": { + "qualifiedName": "is_deprecated", + "sourceFileName": "/src/apify_client/_models.py" + }, + "436": { + "qualifiedName": "deployment_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "437": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "438": { + "qualifiedName": "tagged_builds", + "sourceFileName": "/src/apify_client/_models.py" + }, + "439": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "440": { + "qualifiedName": "readme_summary", + "sourceFileName": "/src/apify_client/_models.py" + }, + "441": { + "qualifiedName": "ActorResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "442": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "443": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "444": { + "qualifiedName": "CreateOrUpdateVersionRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "445": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "446": { + "qualifiedName": "version_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "447": { + "qualifiedName": "source_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "448": { + "qualifiedName": "env_vars", + "sourceFileName": "/src/apify_client/_models.py" + }, + "449": { + "qualifiedName": "apply_env_vars_to_build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "450": { + "qualifiedName": "build_tag", + "sourceFileName": "/src/apify_client/_models.py" + }, + "451": { + "qualifiedName": "source_files", + "sourceFileName": "/src/apify_client/_models.py" + }, + "452": { + "qualifiedName": "git_repo_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "453": { + "qualifiedName": "tarball_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "454": { + "qualifiedName": "github_gist_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "455": { + "qualifiedName": "BuildTag", + "sourceFileName": "/src/apify_client/_models.py" + }, + "456": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "457": { + "qualifiedName": "build_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "458": { + "qualifiedName": "UpdateActorRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "459": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "460": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "461": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "462": { + "qualifiedName": "is_public", + "sourceFileName": "/src/apify_client/_models.py" + }, + "463": { + "qualifiedName": "actor_permission_level", + "sourceFileName": "/src/apify_client/_models.py" + }, + "464": { + "qualifiedName": "seo_title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "465": { + "qualifiedName": "seo_description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "466": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "467": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "468": { + "qualifiedName": "versions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "469": { + "qualifiedName": "pricing_infos", + "sourceFileName": "/src/apify_client/_models.py" + }, + "470": { + "qualifiedName": "categories", + "sourceFileName": "/src/apify_client/_models.py" + }, + "471": { + "qualifiedName": "default_run_options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "472": { + "qualifiedName": "tagged_builds", + "sourceFileName": "/src/apify_client/_models.py" + }, + "473": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "474": { + "qualifiedName": "example_run_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "475": { + "qualifiedName": "is_deprecated", + "sourceFileName": "/src/apify_client/_models.py" + }, + "476": { + "qualifiedName": "ListOfVersions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "477": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "478": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "479": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "480": { + "qualifiedName": "ListOfVersionsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "481": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "482": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "483": { + "qualifiedName": "VersionResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "484": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "485": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "486": { + "qualifiedName": "ListOfEnvVars", + "sourceFileName": "/src/apify_client/_models.py" + }, + "487": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "488": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "489": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "490": { + "qualifiedName": "ListOfEnvVarsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "491": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "492": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "493": { + "qualifiedName": "EnvVarResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "494": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "495": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "496": { + "qualifiedName": "WebhookEventType", + "sourceFileName": "/src/apify_client/_models.py" + }, + "497": { + "qualifiedName": "ACTOR_BUILD_ABORTED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "498": { + "qualifiedName": "ACTOR_BUILD_CREATED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "499": { + "qualifiedName": "ACTOR_BUILD_FAILED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "500": { + "qualifiedName": "ACTOR_BUILD_SUCCEEDED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "501": { + "qualifiedName": "ACTOR_BUILD_TIMED_OUT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "502": { + "qualifiedName": "ACTOR_RUN_ABORTED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "503": { + "qualifiedName": "ACTOR_RUN_CREATED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "504": { + "qualifiedName": "ACTOR_RUN_FAILED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "505": { + "qualifiedName": "ACTOR_RUN_RESURRECTED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "506": { + "qualifiedName": "ACTOR_RUN_SUCCEEDED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "507": { + "qualifiedName": "ACTOR_RUN_TIMED_OUT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "508": { + "qualifiedName": "TEST", + "sourceFileName": "/src/apify_client/_models.py" + }, + "509": { + "qualifiedName": "WebhookCondition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "510": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "511": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "512": { + "qualifiedName": "actor_task_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "513": { + "qualifiedName": "actor_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "514": { + "qualifiedName": "WebhookDispatchStatus", + "sourceFileName": "/src/apify_client/_models.py" + }, + "515": { + "qualifiedName": "ACTIVE", + "sourceFileName": "/src/apify_client/_models.py" + }, + "516": { + "qualifiedName": "SUCCEEDED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "517": { + "qualifiedName": "FAILED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "518": { + "qualifiedName": "ExampleWebhookDispatch", + "sourceFileName": "/src/apify_client/_models.py" + }, + "519": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "520": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "521": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "522": { + "qualifiedName": "WebhookStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "523": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "524": { + "qualifiedName": "total_dispatches", + "sourceFileName": "/src/apify_client/_models.py" + }, + "525": { + "qualifiedName": "WebhookShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "526": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "527": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "528": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "529": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "530": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "531": { + "qualifiedName": "is_ad_hoc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "532": { + "qualifiedName": "should_interpolate_strings", + "sourceFileName": "/src/apify_client/_models.py" + }, + "533": { + "qualifiedName": "event_types", + "sourceFileName": "/src/apify_client/_models.py" + }, + "534": { + "qualifiedName": "condition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "535": { + "qualifiedName": "ignore_ssl_errors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "536": { + "qualifiedName": "do_not_retry", + "sourceFileName": "/src/apify_client/_models.py" + }, + "537": { + "qualifiedName": "request_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "538": { + "qualifiedName": "last_dispatch", + "sourceFileName": "/src/apify_client/_models.py" + }, + "539": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "540": { + "qualifiedName": "ListOfWebhooks", + "sourceFileName": "/src/apify_client/_models.py" + }, + "541": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "542": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "543": { + "qualifiedName": "ListOfWebhooksResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "544": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "545": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "546": { + "qualifiedName": "ActorJobStatus", + "sourceFileName": "/src/apify_client/_models.py" + }, + "547": { + "qualifiedName": "READY", + "sourceFileName": "/src/apify_client/_models.py" + }, + "548": { + "qualifiedName": "RUNNING", + "sourceFileName": "/src/apify_client/_models.py" + }, + "549": { + "qualifiedName": "SUCCEEDED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "550": { + "qualifiedName": "FAILED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "551": { + "qualifiedName": "TIMING_OUT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "552": { + "qualifiedName": "TIMED_OUT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "553": { + "qualifiedName": "ABORTING", + "sourceFileName": "/src/apify_client/_models.py" + }, + "554": { + "qualifiedName": "ABORTED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "555": { + "qualifiedName": "RunOrigin", + "sourceFileName": "/src/apify_client/_models.py" + }, + "556": { + "qualifiedName": "DEVELOPMENT", + "sourceFileName": "/src/apify_client/_models.py" + }, + "557": { + "qualifiedName": "WEB", + "sourceFileName": "/src/apify_client/_models.py" + }, + "558": { + "qualifiedName": "API", + "sourceFileName": "/src/apify_client/_models.py" + }, + "559": { + "qualifiedName": "SCHEDULER", + "sourceFileName": "/src/apify_client/_models.py" + }, + "560": { + "qualifiedName": "TEST", + "sourceFileName": "/src/apify_client/_models.py" + }, + "561": { + "qualifiedName": "WEBHOOK", + "sourceFileName": "/src/apify_client/_models.py" + }, + "562": { + "qualifiedName": "ACTOR", + "sourceFileName": "/src/apify_client/_models.py" + }, + "563": { + "qualifiedName": "CLI", + "sourceFileName": "/src/apify_client/_models.py" + }, + "564": { + "qualifiedName": "STANDBY", + "sourceFileName": "/src/apify_client/_models.py" + }, + "565": { + "qualifiedName": "BuildsMeta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "566": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "567": { + "qualifiedName": "origin", + "sourceFileName": "/src/apify_client/_models.py" + }, + "568": { + "qualifiedName": "client_ip", + "sourceFileName": "/src/apify_client/_models.py" + }, + "569": { + "qualifiedName": "user_agent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "570": { + "qualifiedName": "BuildShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "571": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "572": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "573": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "574": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "575": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "576": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "577": { + "qualifiedName": "usage_total_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "578": { + "qualifiedName": "meta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "579": { + "qualifiedName": "ListOfBuilds", + "sourceFileName": "/src/apify_client/_models.py" + }, + "580": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "581": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "582": { + "qualifiedName": "ListOfBuildsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "583": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "584": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "585": { + "qualifiedName": "BuildStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "586": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "587": { + "qualifiedName": "duration_millis", + "sourceFileName": "/src/apify_client/_models.py" + }, + "588": { + "qualifiedName": "run_time_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "589": { + "qualifiedName": "compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "590": { + "qualifiedName": "BuildOptions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "591": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "592": { + "qualifiedName": "use_cache", + "sourceFileName": "/src/apify_client/_models.py" + }, + "593": { + "qualifiedName": "beta_packages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "594": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "595": { + "qualifiedName": "disk_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "596": { + "qualifiedName": "BuildUsage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "597": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "598": { + "qualifiedName": "actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "599": { + "qualifiedName": "Storages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "600": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "601": { + "qualifiedName": "dataset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "602": { + "qualifiedName": "ActorDefinition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "603": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "604": { + "qualifiedName": "actor_specification", + "sourceFileName": "/src/apify_client/_models.py" + }, + "605": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "606": { + "qualifiedName": "version", + "sourceFileName": "/src/apify_client/_models.py" + }, + "607": { + "qualifiedName": "build_tag", + "sourceFileName": "/src/apify_client/_models.py" + }, + "608": { + "qualifiedName": "environment_variables", + "sourceFileName": "/src/apify_client/_models.py" + }, + "609": { + "qualifiedName": "dockerfile", + "sourceFileName": "/src/apify_client/_models.py" + }, + "610": { + "qualifiedName": "docker_context_dir", + "sourceFileName": "/src/apify_client/_models.py" + }, + "611": { + "qualifiedName": "readme", + "sourceFileName": "/src/apify_client/_models.py" + }, + "612": { + "qualifiedName": "input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "613": { + "qualifiedName": "changelog", + "sourceFileName": "/src/apify_client/_models.py" + }, + "614": { + "qualifiedName": "storages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "615": { + "qualifiedName": "default_memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "616": { + "qualifiedName": "min_memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "617": { + "qualifiedName": "max_memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "618": { + "qualifiedName": "uses_standby_mode", + "sourceFileName": "/src/apify_client/_models.py" + }, + "619": { + "qualifiedName": "Build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "620": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "621": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "622": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "623": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "624": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "625": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "626": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "627": { + "qualifiedName": "meta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "628": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "629": { + "qualifiedName": "options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "630": { + "qualifiedName": "usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "631": { + "qualifiedName": "usage_total_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "632": { + "qualifiedName": "usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "633": { + "qualifiedName": "input_schema", + "sourceFileName": "/src/apify_client/_models.py" + }, + "634": { + "qualifiedName": "readme", + "sourceFileName": "/src/apify_client/_models.py" + }, + "635": { + "qualifiedName": "build_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "636": { + "qualifiedName": "actor_definition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "637": { + "qualifiedName": "BuildResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "638": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "639": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "640": { + "qualifiedName": "RunMeta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "641": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "642": { + "qualifiedName": "origin", + "sourceFileName": "/src/apify_client/_models.py" + }, + "643": { + "qualifiedName": "client_ip", + "sourceFileName": "/src/apify_client/_models.py" + }, + "644": { + "qualifiedName": "user_agent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "645": { + "qualifiedName": "schedule_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "646": { + "qualifiedName": "scheduled_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "647": { + "qualifiedName": "RunShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "648": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "649": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "650": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "651": { + "qualifiedName": "actor_task_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "652": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "653": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "654": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "655": { + "qualifiedName": "build_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "656": { + "qualifiedName": "build_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "657": { + "qualifiedName": "meta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "658": { + "qualifiedName": "usage_total_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "659": { + "qualifiedName": "default_key_value_store_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "660": { + "qualifiedName": "default_dataset_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "661": { + "qualifiedName": "default_request_queue_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "662": { + "qualifiedName": "ListOfRuns", + "sourceFileName": "/src/apify_client/_models.py" + }, + "663": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "664": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "665": { + "qualifiedName": "ListOfRunsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "666": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "667": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "668": { + "qualifiedName": "RunStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "669": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "670": { + "qualifiedName": "input_body_len", + "sourceFileName": "/src/apify_client/_models.py" + }, + "671": { + "qualifiedName": "migration_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "672": { + "qualifiedName": "reboot_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "673": { + "qualifiedName": "restart_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "674": { + "qualifiedName": "resurrect_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "675": { + "qualifiedName": "mem_avg_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "676": { + "qualifiedName": "mem_max_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "677": { + "qualifiedName": "mem_current_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "678": { + "qualifiedName": "cpu_avg_usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "679": { + "qualifiedName": "cpu_max_usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "680": { + "qualifiedName": "cpu_current_usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "681": { + "qualifiedName": "net_rx_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "682": { + "qualifiedName": "net_tx_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "683": { + "qualifiedName": "duration_millis", + "sourceFileName": "/src/apify_client/_models.py" + }, + "684": { + "qualifiedName": "run_time_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "685": { + "qualifiedName": "metamorph", + "sourceFileName": "/src/apify_client/_models.py" + }, + "686": { + "qualifiedName": "compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "687": { + "qualifiedName": "RunOptions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "688": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "689": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "690": { + "qualifiedName": "timeout_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "691": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "692": { + "qualifiedName": "disk_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "693": { + "qualifiedName": "max_items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "694": { + "qualifiedName": "max_total_charge_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "695": { + "qualifiedName": "GeneralAccess", + "sourceFileName": "/src/apify_client/_models.py" + }, + "696": { + "qualifiedName": "ANYONE_WITH_ID_CAN_READ", + "sourceFileName": "/src/apify_client/_models.py" + }, + "697": { + "qualifiedName": "ANYONE_WITH_NAME_CAN_READ", + "sourceFileName": "/src/apify_client/_models.py" + }, + "698": { + "qualifiedName": "FOLLOW_USER_SETTING", + "sourceFileName": "/src/apify_client/_models.py" + }, + "699": { + "qualifiedName": "RESTRICTED", + "sourceFileName": "/src/apify_client/_models.py" + }, + "700": { + "qualifiedName": "RunUsage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "701": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "702": { + "qualifiedName": "actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "703": { + "qualifiedName": "dataset_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "704": { + "qualifiedName": "dataset_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "705": { + "qualifiedName": "key_value_store_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "706": { + "qualifiedName": "key_value_store_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "707": { + "qualifiedName": "key_value_store_lists", + "sourceFileName": "/src/apify_client/_models.py" + }, + "708": { + "qualifiedName": "request_queue_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "709": { + "qualifiedName": "request_queue_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "710": { + "qualifiedName": "data_transfer_internal_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "711": { + "qualifiedName": "data_transfer_external_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "712": { + "qualifiedName": "proxy_residential_transfer_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "713": { + "qualifiedName": "proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "714": { + "qualifiedName": "RunUsageUsd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "715": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "716": { + "qualifiedName": "actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "717": { + "qualifiedName": "dataset_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "718": { + "qualifiedName": "dataset_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "719": { + "qualifiedName": "key_value_store_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "720": { + "qualifiedName": "key_value_store_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "721": { + "qualifiedName": "key_value_store_lists", + "sourceFileName": "/src/apify_client/_models.py" + }, + "722": { + "qualifiedName": "request_queue_reads", + "sourceFileName": "/src/apify_client/_models.py" + }, + "723": { + "qualifiedName": "request_queue_writes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "724": { + "qualifiedName": "data_transfer_internal_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "725": { + "qualifiedName": "data_transfer_external_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "726": { + "qualifiedName": "proxy_residential_transfer_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "727": { + "qualifiedName": "proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "728": { + "qualifiedName": "Metamorph", + "sourceFileName": "/src/apify_client/_models.py" + }, + "729": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "730": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "731": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "732": { + "qualifiedName": "build_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "733": { + "qualifiedName": "input_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "734": { + "qualifiedName": "Run", + "sourceFileName": "/src/apify_client/_models.py" + }, + "735": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "736": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "737": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "738": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "739": { + "qualifiedName": "actor_task_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "740": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "741": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "742": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "743": { + "qualifiedName": "status_message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "744": { + "qualifiedName": "is_status_message_terminal", + "sourceFileName": "/src/apify_client/_models.py" + }, + "745": { + "qualifiedName": "meta", + "sourceFileName": "/src/apify_client/_models.py" + }, + "746": { + "qualifiedName": "pricing_info", + "sourceFileName": "/src/apify_client/_models.py" + }, + "747": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "748": { + "qualifiedName": "charged_event_counts", + "sourceFileName": "/src/apify_client/_models.py" + }, + "749": { + "qualifiedName": "options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "750": { + "qualifiedName": "build_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "751": { + "qualifiedName": "exit_code", + "sourceFileName": "/src/apify_client/_models.py" + }, + "752": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "753": { + "qualifiedName": "default_key_value_store_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "754": { + "qualifiedName": "default_dataset_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "755": { + "qualifiedName": "default_request_queue_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "756": { + "qualifiedName": "build_number", + "sourceFileName": "/src/apify_client/_models.py" + }, + "757": { + "qualifiedName": "container_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "758": { + "qualifiedName": "is_container_server_ready", + "sourceFileName": "/src/apify_client/_models.py" + }, + "759": { + "qualifiedName": "git_branch_name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "760": { + "qualifiedName": "usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "761": { + "qualifiedName": "usage_total_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "762": { + "qualifiedName": "usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "763": { + "qualifiedName": "metamorphs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "764": { + "qualifiedName": "RunResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "765": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "766": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "767": { + "qualifiedName": "TaskStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "768": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "769": { + "qualifiedName": "total_runs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "770": { + "qualifiedName": "TaskShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "771": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "772": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "773": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "774": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "775": { + "qualifiedName": "act_name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "776": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "777": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "778": { + "qualifiedName": "act_username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "779": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "780": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "781": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "782": { + "qualifiedName": "ListOfTasks", + "sourceFileName": "/src/apify_client/_models.py" + }, + "783": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "784": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "785": { + "qualifiedName": "ListOfTasksResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "786": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "787": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "788": { + "qualifiedName": "TaskOptions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "789": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "790": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "791": { + "qualifiedName": "timeout_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "792": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "793": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "794": { + "qualifiedName": "max_items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "795": { + "qualifiedName": "TaskInput", + "sourceFileName": "/src/apify_client/_models.py" + }, + "796": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "797": { + "qualifiedName": "CreateTaskRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "798": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "799": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "800": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "801": { + "qualifiedName": "options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "802": { + "qualifiedName": "input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "803": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "804": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "805": { + "qualifiedName": "Task", + "sourceFileName": "/src/apify_client/_models.py" + }, + "806": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "807": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "808": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "809": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "810": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "811": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "812": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "813": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "814": { + "qualifiedName": "removed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "815": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "816": { + "qualifiedName": "options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "817": { + "qualifiedName": "input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "818": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "819": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "820": { + "qualifiedName": "standby_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "821": { + "qualifiedName": "TaskResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "822": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "823": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "824": { + "qualifiedName": "UpdateTaskRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "825": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "826": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "827": { + "qualifiedName": "options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "828": { + "qualifiedName": "input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "829": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "830": { + "qualifiedName": "actor_standby", + "sourceFileName": "/src/apify_client/_models.py" + }, + "831": { + "qualifiedName": "Webhook", + "sourceFileName": "/src/apify_client/_models.py" + }, + "832": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "833": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "834": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "835": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "836": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "837": { + "qualifiedName": "is_ad_hoc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "838": { + "qualifiedName": "should_interpolate_strings", + "sourceFileName": "/src/apify_client/_models.py" + }, + "839": { + "qualifiedName": "event_types", + "sourceFileName": "/src/apify_client/_models.py" + }, + "840": { + "qualifiedName": "condition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "841": { + "qualifiedName": "ignore_ssl_errors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "842": { + "qualifiedName": "do_not_retry", + "sourceFileName": "/src/apify_client/_models.py" + }, + "843": { + "qualifiedName": "request_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "844": { + "qualifiedName": "payload_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "845": { + "qualifiedName": "headers_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "846": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "847": { + "qualifiedName": "last_dispatch", + "sourceFileName": "/src/apify_client/_models.py" + }, + "848": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "849": { + "qualifiedName": "UpdateRunRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "850": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "851": { + "qualifiedName": "run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "852": { + "qualifiedName": "status_message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "853": { + "qualifiedName": "is_status_message_terminal", + "sourceFileName": "/src/apify_client/_models.py" + }, + "854": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "855": { + "qualifiedName": "ChargeRunRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "856": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "857": { + "qualifiedName": "event_name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "858": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "859": { + "qualifiedName": "StorageOwnership", + "sourceFileName": "/src/apify_client/_models.py" + }, + "860": { + "qualifiedName": "OWNED_BY_ME", + "sourceFileName": "/src/apify_client/_models.py" + }, + "861": { + "qualifiedName": "SHARED_WITH_ME", + "sourceFileName": "/src/apify_client/_models.py" + }, + "862": { + "qualifiedName": "KeyValueStoreStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "863": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "864": { + "qualifiedName": "read_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "865": { + "qualifiedName": "write_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "866": { + "qualifiedName": "delete_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "867": { + "qualifiedName": "list_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "868": { + "qualifiedName": "s3_storage_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "869": { + "qualifiedName": "KeyValueStore", + "sourceFileName": "/src/apify_client/_models.py" + }, + "870": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "871": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "872": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "873": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "874": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "875": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "876": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "877": { + "qualifiedName": "accessed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "878": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "879": { + "qualifiedName": "act_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "880": { + "qualifiedName": "console_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "881": { + "qualifiedName": "keys_public_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "882": { + "qualifiedName": "url_signing_secret_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "883": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "884": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "885": { + "qualifiedName": "ListOfKeyValueStores", + "sourceFileName": "/src/apify_client/_models.py" + }, + "886": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "887": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "888": { + "qualifiedName": "ListOfKeyValueStoresResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "889": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "890": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "891": { + "qualifiedName": "KeyValueStoreResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "892": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "893": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "894": { + "qualifiedName": "UpdateStoreRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "895": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "896": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "897": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "898": { + "qualifiedName": "KeyValueStoreKey", + "sourceFileName": "/src/apify_client/_models.py" + }, + "899": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "900": { + "qualifiedName": "key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "901": { + "qualifiedName": "size", + "sourceFileName": "/src/apify_client/_models.py" + }, + "902": { + "qualifiedName": "record_public_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "903": { + "qualifiedName": "ListOfKeys", + "sourceFileName": "/src/apify_client/_models.py" + }, + "904": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "905": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "906": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "907": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "908": { + "qualifiedName": "exclusive_start_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "909": { + "qualifiedName": "is_truncated", + "sourceFileName": "/src/apify_client/_models.py" + }, + "910": { + "qualifiedName": "next_exclusive_start_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "911": { + "qualifiedName": "ListOfKeysResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "912": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "913": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "914": { + "qualifiedName": "RecordResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "915": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "916": { + "qualifiedName": "PutRecordRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "917": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "918": { + "qualifiedName": "DatasetListItem", + "sourceFileName": "/src/apify_client/_models.py" + }, + "919": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "920": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "921": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "922": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "923": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "924": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "925": { + "qualifiedName": "accessed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "926": { + "qualifiedName": "item_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "927": { + "qualifiedName": "clean_item_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "928": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "929": { + "qualifiedName": "act_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "930": { + "qualifiedName": "ListOfDatasets", + "sourceFileName": "/src/apify_client/_models.py" + }, + "931": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "932": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "933": { + "qualifiedName": "ListOfDatasetsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "934": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "935": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "936": { + "qualifiedName": "DatasetStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "937": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "938": { + "qualifiedName": "read_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "939": { + "qualifiedName": "write_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "940": { + "qualifiedName": "storage_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "941": { + "qualifiedName": "Dataset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "942": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "943": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "944": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "945": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "946": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "947": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "948": { + "qualifiedName": "accessed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "949": { + "qualifiedName": "item_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "950": { + "qualifiedName": "clean_item_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "951": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "952": { + "qualifiedName": "act_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "953": { + "qualifiedName": "fields", + "sourceFileName": "/src/apify_client/_models.py" + }, + "954": { + "qualifiedName": "schema_", + "sourceFileName": "/src/apify_client/_models.py" + }, + "955": { + "qualifiedName": "console_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "956": { + "qualifiedName": "items_public_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "957": { + "qualifiedName": "url_signing_secret_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "958": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "959": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "960": { + "qualifiedName": "DatasetResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "961": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "962": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "963": { + "qualifiedName": "UpdateDatasetRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "964": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "965": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "966": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "967": { + "qualifiedName": "PutItemsRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "968": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "969": { + "qualifiedName": "ValidationError", + "sourceFileName": "/src/apify_client/_models.py" + }, + "970": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "971": { + "qualifiedName": "instance_path", + "sourceFileName": "/src/apify_client/_models.py" + }, + "972": { + "qualifiedName": "schema_path", + "sourceFileName": "/src/apify_client/_models.py" + }, + "973": { + "qualifiedName": "keyword", + "sourceFileName": "/src/apify_client/_models.py" + }, + "974": { + "qualifiedName": "message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "975": { + "qualifiedName": "params", + "sourceFileName": "/src/apify_client/_models.py" + }, + "976": { + "qualifiedName": "InvalidItem", + "sourceFileName": "/src/apify_client/_models.py" + }, + "977": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "978": { + "qualifiedName": "item_position", + "sourceFileName": "/src/apify_client/_models.py" + }, + "979": { + "qualifiedName": "validation_errors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "980": { + "qualifiedName": "SchemaValidationErrorData", + "sourceFileName": "/src/apify_client/_models.py" + }, + "981": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "982": { + "qualifiedName": "invalid_items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "983": { + "qualifiedName": "DatasetSchemaValidationError", + "sourceFileName": "/src/apify_client/_models.py" + }, + "984": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "985": { + "qualifiedName": "type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "986": { + "qualifiedName": "message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "987": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "988": { + "qualifiedName": "PutItemResponseError", + "sourceFileName": "/src/apify_client/_models.py" + }, + "989": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "990": { + "qualifiedName": "error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "991": { + "qualifiedName": "DatasetFieldStatistics", + "sourceFileName": "/src/apify_client/_models.py" + }, + "992": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "993": { + "qualifiedName": "min", + "sourceFileName": "/src/apify_client/_models.py" + }, + "994": { + "qualifiedName": "max", + "sourceFileName": "/src/apify_client/_models.py" + }, + "995": { + "qualifiedName": "null_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "996": { + "qualifiedName": "empty_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "997": { + "qualifiedName": "DatasetStatistics", + "sourceFileName": "/src/apify_client/_models.py" + }, + "998": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "999": { + "qualifiedName": "field_statistics", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1000": { + "qualifiedName": "DatasetStatisticsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1001": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1002": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1003": { + "qualifiedName": "RequestQueueShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1004": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1005": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1006": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1007": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1008": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1009": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1010": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1011": { + "qualifiedName": "accessed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1012": { + "qualifiedName": "expire_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1013": { + "qualifiedName": "total_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1014": { + "qualifiedName": "handled_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1015": { + "qualifiedName": "pending_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1016": { + "qualifiedName": "act_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1017": { + "qualifiedName": "act_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1018": { + "qualifiedName": "had_multiple_clients", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1019": { + "qualifiedName": "ListOfRequestQueues", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1020": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1021": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1022": { + "qualifiedName": "ListOfRequestQueuesResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1023": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1024": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1025": { + "qualifiedName": "RequestQueueStats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1026": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1027": { + "qualifiedName": "delete_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1028": { + "qualifiedName": "head_item_read_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1029": { + "qualifiedName": "read_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1030": { + "qualifiedName": "storage_bytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1031": { + "qualifiedName": "write_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1032": { + "qualifiedName": "RequestQueue", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1033": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1034": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1035": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1036": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1037": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1038": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1039": { + "qualifiedName": "accessed_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1040": { + "qualifiedName": "total_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1041": { + "qualifiedName": "handled_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1042": { + "qualifiedName": "pending_request_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1043": { + "qualifiedName": "had_multiple_clients", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1044": { + "qualifiedName": "console_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1045": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1046": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1047": { + "qualifiedName": "RequestQueueResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1048": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1049": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1050": { + "qualifiedName": "UpdateRequestQueueRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1051": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1052": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1053": { + "qualifiedName": "general_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1054": { + "qualifiedName": "RequestDraft", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1055": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1056": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1057": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1058": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1059": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1060": { + "qualifiedName": "AddedRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1061": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1062": { + "qualifiedName": "request_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1063": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1064": { + "qualifiedName": "was_already_present", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1065": { + "qualifiedName": "was_already_handled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1066": { + "qualifiedName": "BatchAddResult", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1067": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1068": { + "qualifiedName": "processed_requests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1069": { + "qualifiedName": "unprocessed_requests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1070": { + "qualifiedName": "BatchAddResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1071": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1072": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1073": { + "qualifiedName": "DeletedRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1074": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1075": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1076": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1077": { + "qualifiedName": "BatchDeleteResult", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1078": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1079": { + "qualifiedName": "processed_requests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1080": { + "qualifiedName": "unprocessed_requests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1081": { + "qualifiedName": "BatchDeleteResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1082": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1083": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1084": { + "qualifiedName": "UnlockRequestsResult", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1085": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1086": { + "qualifiedName": "unlocked_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1087": { + "qualifiedName": "UnlockRequestsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1088": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1089": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1090": { + "qualifiedName": "RequestUserData", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1091": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1092": { + "qualifiedName": "label", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1093": { + "qualifiedName": "image", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1094": { + "qualifiedName": "Request", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1095": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1096": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1097": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1098": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1099": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1100": { + "qualifiedName": "retry_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1101": { + "qualifiedName": "loaded_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1102": { + "qualifiedName": "payload", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1103": { + "qualifiedName": "headers", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1104": { + "qualifiedName": "user_data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1105": { + "qualifiedName": "no_retry", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1106": { + "qualifiedName": "error_messages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1107": { + "qualifiedName": "handled_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1108": { + "qualifiedName": "ListOfRequests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1109": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1110": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1111": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1112": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1113": { + "qualifiedName": "exclusive_start_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1114": { + "qualifiedName": "ListOfRequestsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1115": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1116": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1117": { + "qualifiedName": "RequestRegistration", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1118": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1119": { + "qualifiedName": "request_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1120": { + "qualifiedName": "was_already_present", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1121": { + "qualifiedName": "was_already_handled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1122": { + "qualifiedName": "AddRequestResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1123": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1124": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1125": { + "qualifiedName": "RequestResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1126": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1127": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1128": { + "qualifiedName": "UpdateRequestResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1129": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1130": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1131": { + "qualifiedName": "HeadRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1132": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1133": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1134": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1135": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1136": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1137": { + "qualifiedName": "retry_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1138": { + "qualifiedName": "RequestQueueHead", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1139": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1140": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1141": { + "qualifiedName": "queue_modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1142": { + "qualifiedName": "had_multiple_clients", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1143": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1144": { + "qualifiedName": "HeadResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1145": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1146": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1147": { + "qualifiedName": "LockedHeadRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1148": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1149": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1150": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1151": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1152": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1153": { + "qualifiedName": "retry_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1154": { + "qualifiedName": "lock_expires_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1155": { + "qualifiedName": "LockedRequestQueueHead", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1156": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1157": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1158": { + "qualifiedName": "queue_modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1159": { + "qualifiedName": "queue_has_locked_requests", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1160": { + "qualifiedName": "client_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1161": { + "qualifiedName": "had_multiple_clients", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1162": { + "qualifiedName": "lock_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1163": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1164": { + "qualifiedName": "HeadAndLockResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1165": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1166": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1167": { + "qualifiedName": "RequestLockInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1168": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1169": { + "qualifiedName": "lock_expires_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1170": { + "qualifiedName": "ProlongRequestLockResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1171": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1172": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1173": { + "qualifiedName": "WebhookCreate", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1174": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1175": { + "qualifiedName": "is_ad_hoc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1176": { + "qualifiedName": "event_types", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1177": { + "qualifiedName": "condition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1178": { + "qualifiedName": "idempotency_key", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1179": { + "qualifiedName": "ignore_ssl_errors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1180": { + "qualifiedName": "do_not_retry", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1181": { + "qualifiedName": "request_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1182": { + "qualifiedName": "payload_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1183": { + "qualifiedName": "headers_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1184": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1185": { + "qualifiedName": "should_interpolate_strings", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1186": { + "qualifiedName": "WebhookResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1187": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1188": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1189": { + "qualifiedName": "WebhookUpdate", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1190": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1191": { + "qualifiedName": "is_ad_hoc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1192": { + "qualifiedName": "event_types", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1193": { + "qualifiedName": "condition", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1194": { + "qualifiedName": "ignore_ssl_errors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1195": { + "qualifiedName": "do_not_retry", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1196": { + "qualifiedName": "request_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1197": { + "qualifiedName": "payload_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1198": { + "qualifiedName": "headers_template", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1199": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1200": { + "qualifiedName": "should_interpolate_strings", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1201": { + "qualifiedName": "EventData", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1202": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1203": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1204": { + "qualifiedName": "actor_run_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1205": { + "qualifiedName": "Call", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1206": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1207": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1208": { + "qualifiedName": "finished_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1209": { + "qualifiedName": "error_message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1210": { + "qualifiedName": "response_status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1211": { + "qualifiedName": "response_body", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1212": { + "qualifiedName": "WebhookDispatch", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1213": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1214": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1215": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1216": { + "qualifiedName": "webhook_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1217": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1218": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1219": { + "qualifiedName": "event_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1220": { + "qualifiedName": "event_data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1221": { + "qualifiedName": "calls", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1222": { + "qualifiedName": "TestWebhookResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1223": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1224": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1225": { + "qualifiedName": "ListOfWebhookDispatches", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1226": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1227": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1228": { + "qualifiedName": "WebhookDispatchList", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1229": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1230": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1231": { + "qualifiedName": "WebhookDispatchResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1232": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1233": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1234": { + "qualifiedName": "ScheduleActionType", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1235": { + "qualifiedName": "RUN_ACTOR", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1236": { + "qualifiedName": "RUN_ACTOR_TASK", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1237": { + "qualifiedName": "ScheduleAction", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1238": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1239": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1240": { + "qualifiedName": "type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1241": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1242": { + "qualifiedName": "ScheduleShort", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1243": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1244": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1245": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1246": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1247": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1248": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1249": { + "qualifiedName": "last_run_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1250": { + "qualifiedName": "next_run_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1251": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1252": { + "qualifiedName": "is_exclusive", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1253": { + "qualifiedName": "cron_expression", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1254": { + "qualifiedName": "timezone", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1255": { + "qualifiedName": "actions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1256": { + "qualifiedName": "ListOfSchedules", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1257": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1258": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1259": { + "qualifiedName": "ListOfSchedulesResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1260": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1261": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1262": { + "qualifiedName": "ScheduleActionsRunInput", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1263": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1264": { + "qualifiedName": "body", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1265": { + "qualifiedName": "content_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1266": { + "qualifiedName": "ScheduleActionsRunOptions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1267": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1268": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1269": { + "qualifiedName": "timeout_secs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1270": { + "qualifiedName": "memory_mbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1271": { + "qualifiedName": "restart_on_error", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1272": { + "qualifiedName": "ScheduleCreateActions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1273": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1274": { + "qualifiedName": "type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1275": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1276": { + "qualifiedName": "run_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1277": { + "qualifiedName": "run_options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1278": { + "qualifiedName": "ScheduleCreate", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1279": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1280": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1281": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1282": { + "qualifiedName": "is_exclusive", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1283": { + "qualifiedName": "cron_expression", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1284": { + "qualifiedName": "timezone", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1285": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1286": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1287": { + "qualifiedName": "actions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1288": { + "qualifiedName": "ScheduleActions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1289": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1290": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1291": { + "qualifiedName": "type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1292": { + "qualifiedName": "actor_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1293": { + "qualifiedName": "run_input", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1294": { + "qualifiedName": "run_options", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1295": { + "qualifiedName": "Schedule", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1296": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1297": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1298": { + "qualifiedName": "user_id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1299": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1300": { + "qualifiedName": "cron_expression", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1301": { + "qualifiedName": "timezone", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1302": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1303": { + "qualifiedName": "is_exclusive", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1304": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1305": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1306": { + "qualifiedName": "modified_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1307": { + "qualifiedName": "next_run_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1308": { + "qualifiedName": "last_run_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1309": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1310": { + "qualifiedName": "actions", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1311": { + "qualifiedName": "ScheduleResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1312": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1313": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1314": { + "qualifiedName": "ScheduleInvoked", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1315": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1316": { + "qualifiedName": "message", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1317": { + "qualifiedName": "level", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1318": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1319": { + "qualifiedName": "ScheduleLogResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1320": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1321": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1322": { + "qualifiedName": "CurrentPricingInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1323": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1324": { + "qualifiedName": "pricing_model", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1325": { + "qualifiedName": "StoreListActor", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1326": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1327": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1328": { + "qualifiedName": "title", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1329": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1330": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1331": { + "qualifiedName": "user_full_name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1332": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1333": { + "qualifiedName": "categories", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1334": { + "qualifiedName": "notice", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1335": { + "qualifiedName": "picture_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1336": { + "qualifiedName": "user_picture_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1337": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1338": { + "qualifiedName": "stats", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1339": { + "qualifiedName": "current_pricing_info", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1340": { + "qualifiedName": "is_white_listed_for_agentic_payment", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1341": { + "qualifiedName": "readme_summary", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1342": { + "qualifiedName": "ListOfStoreActors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1343": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1344": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1345": { + "qualifiedName": "ListOfActorsInStoreResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1346": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1347": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1348": { + "qualifiedName": "Profile", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1349": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1350": { + "qualifiedName": "bio", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1351": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1352": { + "qualifiedName": "picture_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1353": { + "qualifiedName": "github_username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1354": { + "qualifiedName": "website_url", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1355": { + "qualifiedName": "twitter_username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1356": { + "qualifiedName": "UserPublicInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1357": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1358": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1359": { + "qualifiedName": "profile", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1360": { + "qualifiedName": "PublicUserDataResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1361": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1362": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1363": { + "qualifiedName": "ProxyGroup", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1364": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1365": { + "qualifiedName": "name", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1366": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1367": { + "qualifiedName": "available_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1368": { + "qualifiedName": "Proxy", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1369": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1370": { + "qualifiedName": "password", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1371": { + "qualifiedName": "groups", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1372": { + "qualifiedName": "Plan", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1373": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1374": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1375": { + "qualifiedName": "description", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1376": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1377": { + "qualifiedName": "monthly_base_price_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1378": { + "qualifiedName": "monthly_usage_credits_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1379": { + "qualifiedName": "usage_discount_percent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1380": { + "qualifiedName": "enabled_platform_features", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1381": { + "qualifiedName": "max_monthly_usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1382": { + "qualifiedName": "max_actor_memory_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1383": { + "qualifiedName": "max_monthly_actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1384": { + "qualifiedName": "max_monthly_residential_proxy_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1385": { + "qualifiedName": "max_monthly_proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1386": { + "qualifiedName": "max_monthly_external_data_transfer_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1387": { + "qualifiedName": "max_actor_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1388": { + "qualifiedName": "max_actor_task_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1389": { + "qualifiedName": "data_retention_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1390": { + "qualifiedName": "available_proxy_groups", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1391": { + "qualifiedName": "team_account_seat_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1392": { + "qualifiedName": "support_level", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1393": { + "qualifiedName": "available_add_ons", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1394": { + "qualifiedName": "EffectivePlatformFeature", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1395": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1396": { + "qualifiedName": "is_enabled", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1397": { + "qualifiedName": "disabled_reason", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1398": { + "qualifiedName": "disabled_reason_type", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1399": { + "qualifiedName": "is_trial", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1400": { + "qualifiedName": "trial_expiration_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1401": { + "qualifiedName": "EffectivePlatformFeatures", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1402": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1403": { + "qualifiedName": "actors", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1404": { + "qualifiedName": "storage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1405": { + "qualifiedName": "scheduler", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1406": { + "qualifiedName": "proxy", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1407": { + "qualifiedName": "proxy_external_access", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1408": { + "qualifiedName": "proxy_residential", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1409": { + "qualifiedName": "proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1410": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1411": { + "qualifiedName": "actors_public_all", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1412": { + "qualifiedName": "actors_public_developer", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1413": { + "qualifiedName": "UserPrivateInfo", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1414": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1415": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1416": { + "qualifiedName": "username", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1417": { + "qualifiedName": "profile", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1418": { + "qualifiedName": "email", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1419": { + "qualifiedName": "proxy", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1420": { + "qualifiedName": "plan", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1421": { + "qualifiedName": "effective_platform_features", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1422": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1423": { + "qualifiedName": "is_paying", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1424": { + "qualifiedName": "PrivateUserDataResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1425": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1426": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1427": { + "qualifiedName": "UsageCycle", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1428": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1429": { + "qualifiedName": "start_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1430": { + "qualifiedName": "end_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1431": { + "qualifiedName": "PriceTiers", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1432": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1433": { + "qualifiedName": "quantity_above", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1434": { + "qualifiedName": "discount_percent", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1435": { + "qualifiedName": "tier_quantity", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1436": { + "qualifiedName": "unit_price_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1437": { + "qualifiedName": "price_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1438": { + "qualifiedName": "UsageItem", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1439": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1440": { + "qualifiedName": "quantity", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1441": { + "qualifiedName": "base_amount_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1442": { + "qualifiedName": "base_unit_price_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1443": { + "qualifiedName": "amount_after_volume_discount_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1444": { + "qualifiedName": "price_tiers", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1445": { + "qualifiedName": "DailyServiceUsages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1446": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1447": { + "qualifiedName": "date", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1448": { + "qualifiedName": "service_usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1449": { + "qualifiedName": "total_usage_credits_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1450": { + "qualifiedName": "MonthlyUsage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1451": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1452": { + "qualifiedName": "usage_cycle", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1453": { + "qualifiedName": "monthly_service_usage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1454": { + "qualifiedName": "daily_service_usages", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1455": { + "qualifiedName": "total_usage_credits_usd_before_volume_discount", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1456": { + "qualifiedName": "total_usage_credits_usd_after_volume_discount", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1457": { + "qualifiedName": "MonthlyUsageResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1458": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1459": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1460": { + "qualifiedName": "Limits", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1461": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1462": { + "qualifiedName": "max_monthly_usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1463": { + "qualifiedName": "max_monthly_actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1464": { + "qualifiedName": "max_monthly_external_data_transfer_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1465": { + "qualifiedName": "max_monthly_proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1466": { + "qualifiedName": "max_monthly_residential_proxy_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1467": { + "qualifiedName": "max_actor_memory_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1468": { + "qualifiedName": "max_actor_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1469": { + "qualifiedName": "max_actor_task_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1470": { + "qualifiedName": "max_concurrent_actor_jobs", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1471": { + "qualifiedName": "max_team_account_seat_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1472": { + "qualifiedName": "data_retention_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1473": { + "qualifiedName": "Current", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1474": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1475": { + "qualifiedName": "monthly_usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1476": { + "qualifiedName": "monthly_actor_compute_units", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1477": { + "qualifiedName": "monthly_external_data_transfer_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1478": { + "qualifiedName": "monthly_proxy_serps", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1479": { + "qualifiedName": "monthly_residential_proxy_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1480": { + "qualifiedName": "actor_memory_gbytes", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1481": { + "qualifiedName": "actor_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1482": { + "qualifiedName": "actor_task_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1483": { + "qualifiedName": "active_actor_job_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1484": { + "qualifiedName": "team_account_seat_count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1485": { + "qualifiedName": "AccountLimits", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1486": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1487": { + "qualifiedName": "monthly_usage_cycle", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1488": { + "qualifiedName": "limits", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1489": { + "qualifiedName": "current", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1490": { + "qualifiedName": "LimitsResponse", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1491": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1492": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1493": { + "qualifiedName": "UpdateLimitsRequest", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1494": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1495": { + "qualifiedName": "max_monthly_usage_usd", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1496": { + "qualifiedName": "data_retention_days", + "sourceFileName": "/src/apify_client/_models.py" + }, + "1497": { + "qualifiedName": "ClientStatistics", + "sourceFileName": "/src/apify_client/_statistics.py" + }, + "1498": { + "qualifiedName": "calls", + "sourceFileName": "/src/apify_client/_statistics.py" + }, + "1499": { + "qualifiedName": "requests", + "sourceFileName": "/src/apify_client/_statistics.py" + }, + "1500": { + "qualifiedName": "rate_limit_errors", + "sourceFileName": "/src/apify_client/_statistics.py" + }, + "1501": { + "qualifiedName": "add_rate_limit_error", + "sourceFileName": "/src/apify_client/_statistics.py" + }, + "1504": { + "qualifiedName": "StatusMessageWatcherBase", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1505": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1509": { + "qualifiedName": "StatusMessageWatcherAsync", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1510": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1515": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1517": { + "qualifiedName": "stop", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1519": { + "qualifiedName": "__aenter__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1521": { + "qualifiedName": "__aexit__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1526": { + "qualifiedName": "StatusMessageWatcher", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1527": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1532": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1534": { + "qualifiedName": "stop", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1536": { + "qualifiedName": "__enter__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1538": { + "qualifiedName": "__exit__", + "sourceFileName": "/src/apify_client/_status_message_watcher.py" + }, + "1543": { + "qualifiedName": "StreamedLogBase", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1544": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1548": { + "qualifiedName": "StreamedLog", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1549": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1554": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1556": { + "qualifiedName": "stop", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1558": { + "qualifiedName": "__enter__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1560": { + "qualifiedName": "__exit__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1565": { + "qualifiedName": "StreamedLogAsync", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1566": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1571": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1573": { + "qualifiedName": "stop", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1575": { + "qualifiedName": "__aenter__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1577": { + "qualifiedName": "__aexit__", + "sourceFileName": "/src/apify_client/_streamed_log.py" + }, + "1582": { + "qualifiedName": "Timeout", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1583": { + "qualifiedName": "JsonSerializable", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1584": { + "qualifiedName": "ActorJob", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1585": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1586": { + "qualifiedName": "status", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1587": { + "qualifiedName": "ActorJobResponse", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1588": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1589": { + "qualifiedName": "data", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1590": { + "qualifiedName": "WebhookRepresentation", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1591": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1592": { + "qualifiedName": "event_types", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1593": { + "qualifiedName": "request_url", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1594": { + "qualifiedName": "payload_template", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1595": { + "qualifiedName": "headers_template", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1596": { + "qualifiedName": "WebhookRepresentationList", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1597": { + "qualifiedName": "from_webhooks", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1600": { + "qualifiedName": "to_base64", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1602": { + "qualifiedName": "RequestInput", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1603": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1604": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1605": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1606": { + "qualifiedName": "url", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1607": { + "qualifiedName": "method", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1608": { + "qualifiedName": "RequestDeleteInput", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1609": { + "qualifiedName": "model_config", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1610": { + "qualifiedName": "id", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1611": { + "qualifiedName": "unique_key", + "sourceFileName": "/src/apify_client/_types.py" + }, + "1612": { + "qualifiedName": "T", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1613": { + "qualifiedName": "to_seconds", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1617": { + "qualifiedName": "catch_not_found_or_throw", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1620": { + "qualifiedName": "encode_key_value_store_record_value", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1624": { + "qualifiedName": "is_retryable_error", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1627": { + "qualifiedName": "to_safe_id", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1630": { + "qualifiedName": "response_to_dict", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1633": { + "qualifiedName": "response_to_list", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1636": { + "qualifiedName": "encode_base62", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1639": { + "qualifiedName": "create_hmac_signature", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1643": { + "qualifiedName": "create_storage_content_signature", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1649": { + "qualifiedName": "check_custom_headers", + "sourceFileName": "/src/apify_client/_utils.py" + }, + "1653": { + "qualifiedName": "ApifyClientError", + "sourceFileName": "/src/apify_client/errors.py" + }, + "1654": { + "qualifiedName": "ApifyApiError", + "sourceFileName": "/src/apify_client/errors.py" + }, + "1655": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/errors.py" + }, + "1660": { + "qualifiedName": "InvalidResponseBodyError", + "sourceFileName": "/src/apify_client/errors.py" + }, + "1661": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/errors.py" + }, + "1664": { + "qualifiedName": "HttpResponse", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1665": { + "qualifiedName": "status_code", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1666": { + "qualifiedName": "text", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1667": { + "qualifiedName": "content", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1668": { + "qualifiedName": "headers", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1669": { + "qualifiedName": "json", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1671": { + "qualifiedName": "read", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1673": { + "qualifiedName": "aread", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1675": { + "qualifiedName": "close", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1677": { + "qualifiedName": "aclose", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1679": { + "qualifiedName": "iter_bytes", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1681": { + "qualifiedName": "aiter_bytes", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1683": { + "qualifiedName": "HttpClientBase", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1684": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1695": { + "qualifiedName": "HttpClient", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1696": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1706": { + "qualifiedName": "HttpClientAsync", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1707": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "1717": { + "qualifiedName": "T", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1718": { + "qualifiedName": "logger", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1719": { + "qualifiedName": "ImpitHttpClient", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1720": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1731": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1741": { + "qualifiedName": "ImpitHttpClientAsync", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1742": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1753": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_http_clients/_impit.py" + }, + "1763": { + "qualifiedName": "ResourceClientBase", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1764": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1773": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1774": { + "qualifiedName": "ResourceClient", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1775": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1784": { + "qualifiedName": "ResourceClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1785": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "1794": { + "qualifiedName": "ActorClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1795": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1800": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1803": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1831": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1834": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1848": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1863": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1871": { + "qualifiedName": "builds", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1873": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1875": { + "qualifiedName": "default_build", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1879": { + "qualifiedName": "last_run", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1883": { + "qualifiedName": "versions", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1885": { + "qualifiedName": "version", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1888": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1890": { + "qualifiedName": "validate_input", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1896": { + "qualifiedName": "ActorClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1897": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1902": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1905": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1933": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1936": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1950": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1965": { + "qualifiedName": "build", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1973": { + "qualifiedName": "builds", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1975": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1977": { + "qualifiedName": "default_build", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1981": { + "qualifiedName": "last_run", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1985": { + "qualifiedName": "versions", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1987": { + "qualifiedName": "version", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1990": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1992": { + "qualifiedName": "validate_input", + "sourceFileName": "/src/apify_client/_resource_clients/actor.py" + }, + "1998": { + "qualifiedName": "ActorCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "1999": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2003": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2011": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2036": { + "qualifiedName": "ActorCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2037": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2041": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2049": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_collection.py" + }, + "2074": { + "qualifiedName": "ActorEnvVarClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2075": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2080": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2083": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2089": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2092": { + "qualifiedName": "ActorEnvVarClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2093": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2098": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2101": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2107": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var.py" + }, + "2110": { + "qualifiedName": "ActorEnvVarCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2111": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2115": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2118": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2124": { + "qualifiedName": "ActorEnvVarCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2125": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2129": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2132": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_env_var_collection.py" + }, + "2138": { + "qualifiedName": "ActorVersionClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2139": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2144": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2147": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2158": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2161": { + "qualifiedName": "env_vars", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2163": { + "qualifiedName": "env_var", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2166": { + "qualifiedName": "ActorVersionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2167": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2172": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2175": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2186": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2189": { + "qualifiedName": "env_vars", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2191": { + "qualifiedName": "env_var", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version.py" + }, + "2194": { + "qualifiedName": "ActorVersionCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2195": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2199": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2202": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2214": { + "qualifiedName": "ActorVersionCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2215": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2219": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2222": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/actor_version_collection.py" + }, + "2234": { + "qualifiedName": "BuildClient", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2235": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2240": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2243": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2246": { + "qualifiedName": "abort", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2249": { + "qualifiedName": "get_open_api_definition", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2252": { + "qualifiedName": "wait_for_finish", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2256": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2258": { + "qualifiedName": "BuildClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2259": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2264": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2267": { + "qualifiedName": "abort", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2270": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2273": { + "qualifiedName": "get_open_api_definition", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2276": { + "qualifiedName": "wait_for_finish", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2280": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_resource_clients/build.py" + }, + "2282": { + "qualifiedName": "BuildCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2283": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2287": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2293": { + "qualifiedName": "BuildCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2294": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2298": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/build_collection.py" + }, + "2304": { + "qualifiedName": "DatasetItemsPage", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2305": { + "qualifiedName": "items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2306": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2307": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2308": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2309": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2310": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2311": { + "qualifiedName": "DatasetClient", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2312": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2317": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2320": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2325": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2328": { + "qualifiedName": "list_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2343": { + "qualifiedName": "iterate_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2356": { + "qualifiedName": "download_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2376": { + "qualifiedName": "get_items_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2396": { + "qualifiedName": "stream_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2415": { + "qualifiedName": "push_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2419": { + "qualifiedName": "get_statistics", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2422": { + "qualifiedName": "create_items_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2437": { + "qualifiedName": "DatasetClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2438": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2443": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2446": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2451": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2454": { + "qualifiedName": "list_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2469": { + "qualifiedName": "iterate_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2482": { + "qualifiedName": "get_items_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2502": { + "qualifiedName": "stream_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2521": { + "qualifiedName": "push_items", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2525": { + "qualifiedName": "get_statistics", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2528": { + "qualifiedName": "create_items_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/dataset.py" + }, + "2543": { + "qualifiedName": "DatasetCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2544": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2548": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2555": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2560": { + "qualifiedName": "DatasetCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2561": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2565": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2572": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/dataset_collection.py" + }, + "2577": { + "qualifiedName": "KeyValueStoreClient", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2578": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2583": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2586": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2591": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2594": { + "qualifiedName": "list_keys", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2602": { + "qualifiedName": "iterate_keys", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2609": { + "qualifiedName": "get_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2614": { + "qualifiedName": "record_exists", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2618": { + "qualifiedName": "get_record_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2623": { + "qualifiedName": "stream_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2628": { + "qualifiedName": "set_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2634": { + "qualifiedName": "delete_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2638": { + "qualifiedName": "get_record_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2642": { + "qualifiedName": "create_keys_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2650": { + "qualifiedName": "KeyValueStoreClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2651": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2656": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2659": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2664": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2667": { + "qualifiedName": "list_keys", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2675": { + "qualifiedName": "iterate_keys", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2682": { + "qualifiedName": "get_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2687": { + "qualifiedName": "record_exists", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2691": { + "qualifiedName": "get_record_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2696": { + "qualifiedName": "stream_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2701": { + "qualifiedName": "set_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2707": { + "qualifiedName": "delete_record", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2711": { + "qualifiedName": "get_record_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2715": { + "qualifiedName": "create_keys_public_url", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store.py" + }, + "2723": { + "qualifiedName": "KeyValueStoreCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2724": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2728": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2735": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2740": { + "qualifiedName": "KeyValueStoreCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2741": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2745": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2752": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/key_value_store_collection.py" + }, + "2757": { + "qualifiedName": "LogClient", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2758": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2762": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2766": { + "qualifiedName": "get_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2770": { + "qualifiedName": "stream", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2774": { + "qualifiedName": "LogClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2775": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2779": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2783": { + "qualifiedName": "get_as_bytes", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2787": { + "qualifiedName": "stream", + "sourceFileName": "/src/apify_client/_resource_clients/log.py" + }, + "2791": { + "qualifiedName": "logger", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2792": { + "qualifiedName": "RequestQueueClient", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2793": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2799": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2802": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2807": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2810": { + "qualifiedName": "list_head", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2814": { + "qualifiedName": "list_and_lock_head", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2819": { + "qualifiedName": "add_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2824": { + "qualifiedName": "get_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2828": { + "qualifiedName": "update_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2833": { + "qualifiedName": "delete_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2837": { + "qualifiedName": "prolong_request_lock", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2843": { + "qualifiedName": "delete_request_lock", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2848": { + "qualifiedName": "batch_add_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2856": { + "qualifiedName": "batch_delete_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2860": { + "qualifiedName": "list_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2865": { + "qualifiedName": "unlock_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2868": { + "qualifiedName": "RequestQueueClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2869": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2875": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2878": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2883": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2886": { + "qualifiedName": "list_head", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2890": { + "qualifiedName": "list_and_lock_head", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2895": { + "qualifiedName": "add_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2900": { + "qualifiedName": "get_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2904": { + "qualifiedName": "update_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2909": { + "qualifiedName": "delete_request", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2913": { + "qualifiedName": "prolong_request_lock", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2919": { + "qualifiedName": "delete_request_lock", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2924": { + "qualifiedName": "batch_add_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2932": { + "qualifiedName": "batch_delete_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2936": { + "qualifiedName": "list_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2941": { + "qualifiedName": "unlock_requests", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue.py" + }, + "2944": { + "qualifiedName": "RequestQueueCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2945": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2949": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2956": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2960": { + "qualifiedName": "RequestQueueCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2961": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2965": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2972": { + "qualifiedName": "get_or_create", + "sourceFileName": "/src/apify_client/_resource_clients/request_queue_collection.py" + }, + "2976": { + "qualifiedName": "RunClient", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2977": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2982": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2985": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2991": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2994": { + "qualifiedName": "abort", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "2998": { + "qualifiedName": "wait_for_finish", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3002": { + "qualifiedName": "metamorph", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3009": { + "qualifiedName": "resurrect", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3018": { + "qualifiedName": "reboot", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3021": { + "qualifiedName": "dataset", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3023": { + "qualifiedName": "key_value_store", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3025": { + "qualifiedName": "request_queue", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3027": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3029": { + "qualifiedName": "get_streamed_log", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3034": { + "qualifiedName": "charge", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3040": { + "qualifiedName": "get_status_message_watcher", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3045": { + "qualifiedName": "RunClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3046": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3051": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3054": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3060": { + "qualifiedName": "abort", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3064": { + "qualifiedName": "wait_for_finish", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3068": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3071": { + "qualifiedName": "metamorph", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3078": { + "qualifiedName": "resurrect", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3087": { + "qualifiedName": "reboot", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3090": { + "qualifiedName": "dataset", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3092": { + "qualifiedName": "key_value_store", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3094": { + "qualifiedName": "request_queue", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3096": { + "qualifiedName": "log", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3098": { + "qualifiedName": "get_streamed_log", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3103": { + "qualifiedName": "charge", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3109": { + "qualifiedName": "get_status_message_watcher", + "sourceFileName": "/src/apify_client/_resource_clients/run.py" + }, + "3114": { + "qualifiedName": "RunCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3115": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3119": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3128": { + "qualifiedName": "RunCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3129": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3133": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/run_collection.py" + }, + "3142": { + "qualifiedName": "ScheduleClient", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3143": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3148": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3151": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3162": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3165": { + "qualifiedName": "get_log", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3168": { + "qualifiedName": "ScheduleClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3169": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3174": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3177": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3188": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3191": { + "qualifiedName": "get_log", + "sourceFileName": "/src/apify_client/_resource_clients/schedule.py" + }, + "3194": { + "qualifiedName": "ScheduleCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3195": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3199": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3205": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3216": { + "qualifiedName": "ScheduleCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3217": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3221": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3227": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/schedule_collection.py" + }, + "3238": { + "qualifiedName": "StoreCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3239": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3243": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3253": { + "qualifiedName": "StoreCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3254": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3258": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/store_collection.py" + }, + "3268": { + "qualifiedName": "TaskClient", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3269": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3274": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3277": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3293": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3296": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3307": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3318": { + "qualifiedName": "get_input", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3321": { + "qualifiedName": "update_input", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3325": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3327": { + "qualifiedName": "last_run", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3331": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3333": { + "qualifiedName": "TaskClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3334": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3339": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3342": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3358": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3361": { + "qualifiedName": "start", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3372": { + "qualifiedName": "call", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3383": { + "qualifiedName": "get_input", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3386": { + "qualifiedName": "update_input", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3390": { + "qualifiedName": "runs", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3392": { + "qualifiedName": "last_run", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3396": { + "qualifiedName": "webhooks", + "sourceFileName": "/src/apify_client/_resource_clients/task.py" + }, + "3398": { + "qualifiedName": "TaskCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3399": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3403": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3409": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3426": { + "qualifiedName": "TaskCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3427": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3431": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3437": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/task_collection.py" + }, + "3454": { + "qualifiedName": "UserClient", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3455": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3460": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3463": { + "qualifiedName": "monthly_usage", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3466": { + "qualifiedName": "limits", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3469": { + "qualifiedName": "update_limits", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3474": { + "qualifiedName": "UserClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3475": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3480": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3483": { + "qualifiedName": "monthly_usage", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3486": { + "qualifiedName": "limits", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3489": { + "qualifiedName": "update_limits", + "sourceFileName": "/src/apify_client/_resource_clients/user.py" + }, + "3494": { + "qualifiedName": "WebhookClient", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3495": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3500": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3503": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3516": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3519": { + "qualifiedName": "test", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3522": { + "qualifiedName": "dispatches", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3524": { + "qualifiedName": "WebhookClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3525": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3530": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3533": { + "qualifiedName": "update", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3546": { + "qualifiedName": "delete", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3549": { + "qualifiedName": "test", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3552": { + "qualifiedName": "dispatches", + "sourceFileName": "/src/apify_client/_resource_clients/webhook.py" + }, + "3554": { + "qualifiedName": "WebhookCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3555": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3559": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3565": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3579": { + "qualifiedName": "WebhookCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3580": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3584": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3590": { + "qualifiedName": "create", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_collection.py" + }, + "3604": { + "qualifiedName": "WebhookDispatchClient", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3605": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3610": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3613": { + "qualifiedName": "WebhookDispatchClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3614": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3619": { + "qualifiedName": "get", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch.py" + }, + "3622": { + "qualifiedName": "WebhookDispatchCollectionClient", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3623": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3627": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3633": { + "qualifiedName": "WebhookDispatchCollectionClientAsync", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3634": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3638": { + "qualifiedName": "list", + "sourceFileName": "/src/apify_client/_resource_clients/webhook_dispatch_collection.py" + }, + "3644": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3645": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3646": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3647": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3648": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3649": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3650": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3651": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3652": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3653": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3654": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3655": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3656": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3657": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3658": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3659": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3660": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3661": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3662": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3663": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3664": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3665": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3666": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3667": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3668": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3669": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3670": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3671": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3672": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3673": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3674": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3675": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3676": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3677": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3678": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3679": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3680": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3681": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3682": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3683": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3684": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3685": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3686": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3687": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3688": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3689": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3690": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3691": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3692": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3693": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3694": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3695": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3696": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3697": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3698": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3699": { + "qualifiedName": "resource_id", + "sourceFileName": "/src/apify_client/_resource_clients/_resource_client.py" + }, + "3700": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "3701": { + "qualifiedName": "__init__", + "sourceFileName": "/src/apify_client/_http_clients/_base.py" + }, + "3702": { + "qualifiedName": "apify_margin_percentage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3703": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3704": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3705": { + "qualifiedName": "notified_about_future_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3706": { + "qualifiedName": "notified_about_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3707": { + "qualifiedName": "reason_for_change", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3708": { + "qualifiedName": "apify_margin_percentage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3709": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3710": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3711": { + "qualifiedName": "notified_about_future_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3712": { + "qualifiedName": "notified_about_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3713": { + "qualifiedName": "reason_for_change", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3714": { + "qualifiedName": "apify_margin_percentage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3715": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3716": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3717": { + "qualifiedName": "notified_about_future_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3718": { + "qualifiedName": "notified_about_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3719": { + "qualifiedName": "reason_for_change", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3720": { + "qualifiedName": "apify_margin_percentage", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3721": { + "qualifiedName": "created_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3722": { + "qualifiedName": "started_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3723": { + "qualifiedName": "notified_about_future_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3724": { + "qualifiedName": "notified_about_change_at", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3725": { + "qualifiedName": "reason_for_change", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3726": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3727": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3728": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3729": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3730": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3731": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3732": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3733": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3734": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3735": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3736": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3737": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3738": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3739": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3740": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3741": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3742": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3743": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3744": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3745": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3746": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3747": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3748": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3749": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3750": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3751": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3752": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3753": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3754": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3755": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3756": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3757": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3758": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3759": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3760": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3761": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3762": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3763": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3764": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3765": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3766": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3767": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3768": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3769": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3770": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3771": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3772": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3773": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3774": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3775": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3776": { + "qualifiedName": "total", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3777": { + "qualifiedName": "offset", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3778": { + "qualifiedName": "limit", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3779": { + "qualifiedName": "desc", + "sourceFileName": "/src/apify_client/_models.py" + }, + "3780": { + "qualifiedName": "count", + "sourceFileName": "/src/apify_client/_models.py" + } + }, + "overloads": [ + { + "args": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 32 + }, + "name": "td", + "type": "POSITIONAL", + "datatype": "None" + }, + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 32 + }, + "name": "as_int", + "type": "KEYWORD_ONLY", + "datatype": "bool", + "default_value": "..." + } + ], + "return_type": "None", + "decorations": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 31 + }, + "name": "overload" + } + ], + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 32 + }, + "name": "to_seconds", + "type": "function", + "parsedDocstring": { + "text": "" + } + }, + { + "args": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 34 + }, + "name": "td", + "type": "POSITIONAL", + "datatype": "timedelta" + } + ], + "return_type": "float", + "decorations": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 33 + }, + "name": "overload" + } + ], + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 34 + }, + "name": "to_seconds", + "type": "function", + "parsedDocstring": { + "text": "" + } + }, + { + "args": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 36 + }, + "name": "td", + "type": "POSITIONAL", + "datatype": "timedelta" + }, + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 36 + }, + "name": "as_int", + "type": "KEYWORD_ONLY", + "datatype": "Literal[True]" + } + ], + "return_type": "int", + "decorations": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 35 + }, + "name": "overload" + } + ], + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 36 + }, + "name": "to_seconds", + "type": "function", + "parsedDocstring": { + "text": "" + } + }, + { + "args": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 38 + }, + "name": "td", + "type": "POSITIONAL", + "datatype": "timedelta" + }, + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 38 + }, + "name": "as_int", + "type": "KEYWORD_ONLY", + "datatype": "Literal[False]" + } + ], + "return_type": "float", + "decorations": [ + { + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 37 + }, + "name": "overload" + } + ], + "location": { + "filename": "REPO_ROOT_PLACEHOLDER/src/apify_client/_utils.py", + "lineno": 38 + }, + "name": "to_seconds", + "type": "function", + "parsedDocstring": { + "text": "" + } + } + ] +} \ No newline at end of file diff --git a/website/versioned_docs/version-2.5/01_introduction/index.mdx b/website/versioned_docs/version-2.5/01_introduction/index.mdx index d0076ee2..f4bb1ab1 100644 --- a/website/versioned_docs/version-2.5/01_introduction/index.mdx +++ b/website/versioned_docs/version-2.5/01_introduction/index.mdx @@ -24,7 +24,7 @@ The client simplifies interaction with the Apify platform by providing: ## Prerequisites -`apify-client` requires Python 3.11 or higher. Python is available for download on the [official website](https://www.python.org/downloads/). Check your current Python version by running: +`apify-client` requires Python 3.10 or higher. Python is available for download on the [official website](https://www.python.org/downloads/). Check your current Python version by running: ```bash python --version diff --git a/website/versioned_sidebars/version-1.12-sidebars.json b/website/versioned_sidebars/version-1.12-sidebars.json new file mode 100644 index 00000000..84d35cb0 --- /dev/null +++ b/website/versioned_sidebars/version-1.12-sidebars.json @@ -0,0 +1,41 @@ +{ + "sidebar": [ + { + "type": "category", + "label": "Overview", + "collapsed": false, + "items": [ + { + "type": "autogenerated", + "dirName": "01_overview" + } + ] + }, + { + "type": "category", + "label": "Concepts", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "02_concepts" + } + ] + }, + { + "type": "category", + "label": "Examples", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "03_examples" + } + ] + }, + { + "type": "doc", + "id": "changelog" + } + ] +} diff --git a/website/versions.json b/website/versions.json index 695e00a6..4ff37ab0 100644 --- a/website/versions.json +++ b/website/versions.json @@ -1 +1 @@ -["2.5"] +["2.5", "1.12"]