Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/apify_client/_literals.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@
'WEBHOOK',
'ACTOR',
'CLI',
'CI',
'STANDBY',
]

Expand Down
4 changes: 2 additions & 2 deletions src/apify_client/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ class ActorDefinition(BaseModel):
"""
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).
"""
min_memory_mbytes: Annotated[int | None, Field(alias='minMemoryMbytes', ge=256)] = None
min_memory_mbytes: Annotated[int | None, Field(alias='minMemoryMbytes', ge=128)] = None
"""
Specifies the minimum amount of memory in megabytes required by the Actor.
"""
max_memory_mbytes: Annotated[int | None, Field(alias='maxMemoryMbytes', ge=256)] = None
max_memory_mbytes: Annotated[int | None, Field(alias='maxMemoryMbytes', ge=128)] = None
"""
Specifies the maximum amount of memory in megabytes required by the Actor.
"""
Expand Down