ActorVersionCollectionClientAsync
Hierarchy
- ResourceCollectionClientAsync- ActorVersionCollectionClientAsync
 
Index
Methods
Properties
Methods
__init__
- Initialize a new instance. - Parameters- keyword-onlybase_url: str- Base URL of the API server. 
- keyword-onlyroot_client: ApifyClientAsync- The ApifyClientAsync instance under which this resource client exists. 
- keyword-onlyhttp_client: HTTPClientAsync- The HTTPClientAsync instance to be used in this client. 
- optionalkeyword-onlyresource_id: str | None = None- ID of the manipulated resource, in case of a single-resource client. 
- keyword-onlyresource_path: str- Path to the resource's endpoint on the API server. 
- optionalkeyword-onlyparams: dict | None = None- Parameters to include in all requests from this client. 
 - Returns None
create
- Create a new Actor version. - https://docs.apify.com/api/v2#/reference/actors/version-collection/create-version - Parameters- keyword-onlyversion_number: str- Major and minor version of the Actor (e.g. - 1.0).
- optionalkeyword-onlybuild_tag: str | None = None- Tag that is automatically set to the latest successful build of the current version. 
- optionalkeyword-onlyenv_vars: list[dict] | None = None- Environment variables that will be available to the Actor run process, and optionally also to the build process. See the API docs for their exact structure. 
- optionalkeyword-onlyapply_env_vars_to_build: bool | None = None- Whether the environment variables specified for the Actor run will also be set to the Actor build process. 
- keyword-onlysource_type: ActorSourceType- What source type is the Actor version using. 
- optionalkeyword-onlysource_files: list[dict] | None = None- Source code comprised of multiple files, each an item of the array. Required when - source_typeis- ActorSourceType.SOURCE_FILES. See the API docs for the exact structure.
- optionalkeyword-onlygit_repo_url: str | None = None- The URL of a Git repository from which the source code will be cloned. Required when - source_typeis- ActorSourceType.GIT_REPO.
- optionalkeyword-onlytarball_url: str | None = None- The URL of a tarball or a zip archive from which the source code will be downloaded. Required when - source_typeis- ActorSourceType.TARBALL.
- optionalkeyword-onlygithub_gist_url: str | None = None- The URL of a GitHub Gist from which the source will be downloaded. Required when - source_typeis- ActorSourceType.GITHUB_GIST.
 - Returns dict
list
- List the available Actor versions. - https://docs.apify.com/api/v2#/reference/actors/version-collection/get-list-of-versions - Returns ListPage[dict]
Async sub-client for manipulating Actor versions.