Skip to content
Merged
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
3 changes: 3 additions & 0 deletions scaleway-async/scaleway_async/container/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,9 @@ async def create_container(
"""
Create a new container.
Create a new container in the specified region.

When creating a container, the `created` status is no longer used. The deployment process is started
and the status is set to `pending` accordingly.
:param namespace_id: UUID of the namespace the container belongs to.
:param name: Name of the container.
:param region: Region to target. If none is passed will use default region from the config.
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 @@ -428,7 +428,7 @@ class Container:

domain_name: str
"""
Domain name attributed to the contaioner.
Domain name attributed to the container.
"""

protocol: ContainerProtocol
Expand Down Expand Up @@ -657,7 +657,7 @@ class Namespace:

error_message: Optional[str] = None
"""
Last error message of the namesace.
Last error message of the namespace.
"""

description: Optional[str] = None
Expand Down
3 changes: 3 additions & 0 deletions scaleway/scaleway/container/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,9 @@ def create_container(
"""
Create a new container.
Create a new container in the specified region.

When creating a container, the `created` status is no longer used. The deployment process is started
and the status is set to `pending` accordingly.
:param namespace_id: UUID of the namespace the container belongs to.
:param name: Name of the container.
:param region: Region to target. If none is passed will use default region from the config.
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 @@ -428,7 +428,7 @@ class Container:

domain_name: str
"""
Domain name attributed to the contaioner.
Domain name attributed to the container.
"""

protocol: ContainerProtocol
Expand Down Expand Up @@ -657,7 +657,7 @@ class Namespace:

error_message: Optional[str] = None
"""
Last error message of the namesace.
Last error message of the namespace.
"""

description: Optional[str] = None
Expand Down
Loading