Skip to content
Closed
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
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/edge_services/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1697,7 +1697,7 @@ async def create_backend_stage(
) -> BackendStage:
"""
Create backend stage.
Create a new backend stage. You must specify either a `scaleway_s3` (for a Scaleway Object Storage bucket) or `scaleway_lb` (for a Scaleway Load Balancer) field to configure the origin.
Create a new backend stage. You must specify a type of backend (`scaleway_s3`, `scaleway_lb`, etc.) to configure the origin.
:param scaleway_s3: Scaleway Object Storage origin bucket (S3) linked to the backend stage.
One-Of ('backend_config'): at most one of 'scaleway_s3', 'scaleway_lb', 'scaleway_serverless_container', 'scaleway_serverless_function' could be set.
:param scaleway_lb: Scaleway Load Balancer origin linked to the backend stage.
Expand Down Expand Up @@ -1744,7 +1744,7 @@ async def get_backend_stage(
) -> BackendStage:
"""
Get backend stage.
Retrieve information about an existing backend stage, specified by its `backend_stage_id`. Its full details, including `scaleway_s3` or `scaleway_lb`, are returned in the response object.
Retrieve information about an existing backend stage, specified by its `backend_stage_id`. Its full details are returned in the response object.
:param backend_stage_id: ID of the requested backend stage.
:return: :class:`BackendStage <BackendStage>`

Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/edge_services/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1695,7 +1695,7 @@ def create_backend_stage(
) -> BackendStage:
"""
Create backend stage.
Create a new backend stage. You must specify either a `scaleway_s3` (for a Scaleway Object Storage bucket) or `scaleway_lb` (for a Scaleway Load Balancer) field to configure the origin.
Create a new backend stage. You must specify a type of backend (`scaleway_s3`, `scaleway_lb`, etc.) to configure the origin.
:param scaleway_s3: Scaleway Object Storage origin bucket (S3) linked to the backend stage.
One-Of ('backend_config'): at most one of 'scaleway_s3', 'scaleway_lb', 'scaleway_serverless_container', 'scaleway_serverless_function' could be set.
:param scaleway_lb: Scaleway Load Balancer origin linked to the backend stage.
Expand Down Expand Up @@ -1742,7 +1742,7 @@ def get_backend_stage(
) -> BackendStage:
"""
Get backend stage.
Retrieve information about an existing backend stage, specified by its `backend_stage_id`. Its full details, including `scaleway_s3` or `scaleway_lb`, are returned in the response object.
Retrieve information about an existing backend stage, specified by its `backend_stage_id`. Its full details are returned in the response object.
:param backend_stage_id: ID of the requested backend stage.
:return: :class:`BackendStage <BackendStage>`

Expand Down
Loading