# UpdateActorRequest<!-- -->

## Index[**](#Index)

### Properties

* [**actor\_permission\_level](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#actor_permission_level)
* [**actor\_standby](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#actor_standby)
* [**categories](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#categories)
* [**default\_run\_options](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#default_run_options)
* [**description](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#description)
* [**example\_run\_input](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#example_run_input)
* [**is\_deprecated](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#is_deprecated)
* [**is\_public](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#is_public)
* [**model\_config](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#model_config)
* [**name](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#name)
* [**pricing\_infos](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#pricing_infos)
* [**restart\_on\_error](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#restart_on_error)
* [**seo\_description](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#seo_description)
* [**seo\_title](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#seo_title)
* [**tagged\_builds](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#tagged_builds)
* [**title](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#title)
* [**versions](https://docs.apify.com/api/client/python/api/client/python/reference/class/UpdateActorRequest.md#versions)

## Properties<!-- -->[**](#Properties)

### [**](#actor_permission_level)actor\_permission\_level

**actor\_permission\_level: [ActorPermissionLevel](https://docs.apify.com/api/client/python/api/client/python/reference.md#ActorPermissionLevel) | None

### [**](#actor_standby)actor\_standby

**actor\_standby: [ActorStandby](https://docs.apify.com/api/client/python/api/client/python/reference/class/ActorStandby.md) | None

### [**](#categories)categories

**categories: [list](https://docs.apify.com/api/client/python/api/client/python/reference/class/ActorEnvVarCollectionClient.md#list)\[str] | None

### [**](#default_run_options)default\_run\_options

**default\_run\_options: [DefaultRunOptions](https://docs.apify.com/api/client/python/api/client/python/reference/class/DefaultRunOptions.md) | None

### [**](#description)description

**description: str | None

### [**](#example_run_input)example\_run\_input

**example\_run\_input: [ExampleRunInput](https://docs.apify.com/api/client/python/api/client/python/reference/class/ExampleRunInput.md) | None

### [**](#is_deprecated)is\_deprecated

**is\_deprecated: bool | None

### [**](#is_public)is\_public

**is\_public: bool | None

### [**](#model_config)model\_config

**model\_config: Undefined

### [**](#name)name

**name: str | None

### [**](#pricing_infos)pricing\_infos

**pricing\_infos: [list](https://docs.apify.com/api/client/python/api/client/python/reference/class/ActorEnvVarCollectionClient.md#list)\[(([PayPerEventActorPricingInfo](https://docs.apify.com/api/client/python/api/client/python/reference/class/PayPerEventActorPricingInfo.md) | [PricePerDatasetItemActorPricingInfo](https://docs.apify.com/api/client/python/api/client/python/reference/class/PricePerDatasetItemActorPricingInfo.md)) | [FlatPricePerMonthActorPricingInfo](https://docs.apify.com/api/client/python/api/client/python/reference/class/FlatPricePerMonthActorPricingInfo.md)) | [FreeActorPricingInfo](https://docs.apify.com/api/client/python/api/client/python/reference/class/FreeActorPricingInfo.md)] | None

### [**](#restart_on_error)restart\_on\_error

**restart\_on\_error: bool | None

### [**](#seo_description)seo\_description

**seo\_description: str | None

### [**](#seo_title)seo\_title

**seo\_title: str | None

### [**](#tagged_builds)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:

\&nbsp;

```
{

  "latest": {

    "buildId": "z2EryhbfhgSyqj6Hn"

  }

}
```

* **To remove a tag**, provide the tag name with a `null` value. e.g., to remove the *beta* tag:

\&nbsp;

```
{

  "beta": null

}
```

* **To perform multiple operations**, combine them. The following reassigns *latest* and removes *beta*, while preserving any other existing tags.

\&nbsp;

```
{

  "latest": {

    "buildId": "z2EryhbfhgSyqj6Hn"

  },

  "beta": null

}
```

### [**](#title)title

**title: str | None

### [**](#versions)versions

**versions: [list](https://docs.apify.com/api/client/python/api/client/python/reference/class/ActorEnvVarCollectionClient.md#list)\[[CreateOrUpdateVersionRequest](https://docs.apify.com/api/client/python/api/client/python/reference/class/CreateOrUpdateVersionRequest.md)] | None
