Skip to main content

UpdateActorRequest

Index

Properties

actor_permission_level

actor_permission_level: ActorPermissionLevel | None

categories

categories: list[str] | None

default_run_options

default_run_options: DefaultRunOptions | None

description

description: str | None

is_public

is_public: bool

model_config

model_config: Undefined

name

name: str

pricing_infos

restart_on_error

restart_on_error: bool | None

seo_description

seo_description: str | None

seo_title

seo_title: str | None

tagged_builds

tagged_builds: dict[str, Any] | None

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.

This operation is a patch; any existing tags that you omit from this object will be preserved.

  • To create or reassign a tag, provide the tag name with a buildId. e.g., to assign the latest tag:

 

{
"latest": {
"buildId": "z2EryhbfhgSyqj6Hn"
}
}
  • To remove a tag, provide the tag name with a null value. e.g., to remove the beta tag:

 

{
"beta": null
}
  • To perform multiple operations, combine them. The following reassigns latest and removes beta, while preserving any other existing tags.

 

{
"latest": {
"buildId": "z2EryhbfhgSyqj6Hn"
},
"beta": null
}

title

title: str | None

versions