Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/container/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ async def create_cron(
"""
Create a new cron.
:param container_id: UUID of the container to invoke by the cron.
:param schedule: UNIX cron shedule.
:param schedule: UNIX cron schedule.
:param region: Region to target. If none is passed will use default region from the config.
:param args: Arguments to pass with the cron.
:param name: Name of the cron to create.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/container/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ class Cron:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

status: CronStatus
Expand Down Expand Up @@ -897,7 +897,7 @@ class CreateCronRequest:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

region: Optional[ScwRegion] = None
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/container/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ def create_cron(
"""
Create a new cron.
:param container_id: UUID of the container to invoke by the cron.
:param schedule: UNIX cron shedule.
:param schedule: UNIX cron schedule.
:param region: Region to target. If none is passed will use default region from the config.
:param args: Arguments to pass with the cron.
:param name: Name of the cron to create.
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/container/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ class Cron:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

status: CronStatus
Expand Down Expand Up @@ -897,7 +897,7 @@ class CreateCronRequest:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

region: Optional[ScwRegion] = None
Expand Down
Loading