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
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/inference/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class Model:

has_eula: bool
"""
Defines whether the model has an end user licence agreement.
Defines whether the model has an end user license agreement.
"""

region: Region
Expand Down Expand Up @@ -521,7 +521,7 @@ class DeleteEndpointRequest:
class Eula:
content: str
"""
Content of the end user licence agreement.
Content of the end user license agreement.
"""


Expand Down
6 changes: 3 additions & 3 deletions scaleway-async/scaleway_async/instance/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1832,9 +1832,9 @@ async def export_snapshot(
) -> ExportSnapshotResponse:
"""
Export a snapshot.
Export a snapshot to a specified S3 bucket in the same region.
:param bucket: S3 bucket name.
:param key: S3 object key.
Export a snapshot to a specified Object Storage bucket in the same region.
:param bucket: Object Storage bucket name.
:param key: Object key.
:param snapshot_id: Snapshot ID.
:param zone: Zone to target. If none is passed will use default zone from the config.
:return: :class:`ExportSnapshotResponse <ExportSnapshotResponse>`
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/instance/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2093,12 +2093,12 @@ class DetachServerVolumeResponse:
class ExportSnapshotRequest:
bucket: str
"""
S3 bucket name.
Object Storage bucket name.
"""

key: str
"""
S3 object key.
Object key.
"""

snapshot_id: str
Expand Down
8 changes: 4 additions & 4 deletions scaleway-async/scaleway_async/iot/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,15 +1222,15 @@ async def create_route(
<b>You need to manage the database by yourself</b>.
- REST Route.
Create a route that will call a REST API on received subscribed MQTT messages.
- S3 Routes.
Create a route that will put subscribed MQTT messages into an S3 bucket.
- Amazon S3 Routes.
Create a route that will put subscribed MQTT messages into an Object Storage bucket.
You need to create the bucket yourself and grant write access.
Granting can be done with s3cmd (`s3cmd setacl s3://<my-bucket> --acl-grant=write:555c69c3-87d0-4bf8-80f1-99a2f757d031:555c69c3-87d0-4bf8-80f1-99a2f757d031`).
:param hub_id: Hub ID of the route.
:param topic: Topic the route subscribes to. It must be a valid MQTT topic and up to 65535 characters.
:param region: Region to target. If none is passed will use default region from the config.
:param name: Route name.
:param s3_config: If creating S3 Route, S3-specific configuration fields.
:param s3_config: If creating Amazon S3 Routes, Amazon S3-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
:param db_config: If creating Database Route, DB-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
Expand Down Expand Up @@ -1289,7 +1289,7 @@ async def update_route(
:param region: Region to target. If none is passed will use default region from the config.
:param name: Route name.
:param topic: Topic the route subscribes to. It must be a valid MQTT topic and up to 65535 characters.
:param s3_config: When updating S3 Route, S3-specific configuration fields.
:param s3_config: When updating Amazon S3 Route, Amazon S3-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
:param db_config: When updating Database Route, DB-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
Expand Down
6 changes: 3 additions & 3 deletions scaleway-async/scaleway_async/iot/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,12 +544,12 @@ class RouteRestConfig:
class RouteS3Config:
bucket_region: str
"""
Region of the S3 route's destination bucket (e.g., 'fr-par').
Region of the Amazon S3 route's destination bucket (e.g., 'fr-par').
"""

bucket_name: str
"""
Destination bucket name of the S3 route.
Destination bucket name of the Amazon S3 route.
"""

object_prefix: str
Expand All @@ -559,7 +559,7 @@ class RouteS3Config:

strategy: RouteS3ConfigS3Strategy
"""
How the S3 route's objects will be created: one per topic or one per message.
How the Amazon S3 route's objects will be created: one per topic or one per message.
"""


Expand Down
8 changes: 4 additions & 4 deletions scaleway-async/scaleway_async/lb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ async def create_backend(
:param timeout_tunnel: Maximum allowed tunnel inactivity time after Websocket is established (takes precedence over client and server timeout).
:param on_marked_down_action: Action to take when a backend server is marked as down.
:param proxy_protocol: Protocol to use between the Load Balancer and backend servers. Allows the backend servers to be informed of the client's real IP address. The PROXY protocol must be supported by the backend servers' software.
:param failover_host: Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param failover_host: Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param ssl_bridging: Defines whether to enable SSL bridging between the Load Balancer and backend servers.
:param ignore_ssl_server_verify: Defines whether the server certificate verification should be ignored.
:param redispatch_attempt_count: Whether to use another backend server on each attempt.
Expand Down Expand Up @@ -1107,7 +1107,7 @@ async def update_backend(
:param timeout_tunnel: Maximum allowed tunnel inactivity time after Websocket is established (takes precedence over client and server timeout).
:param on_marked_down_action: Action to take when a backend server is marked as down.
:param proxy_protocol: Protocol to use between the Load Balancer and backend servers. Allows the backend servers to be informed of the client's real IP address. The PROXY protocol must be supported by the backend servers' software.
:param failover_host: Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param failover_host: Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param ssl_bridging: Defines whether to enable SSL bridging between the Load Balancer and backend servers.
:param ignore_ssl_server_verify: Defines whether the server certificate verification should be ignored.
:param redispatch_attempt_count: Whether to use another backend server on each attempt.
Expand Down Expand Up @@ -3995,7 +3995,7 @@ async def create_backend(
:param timeout_tunnel: Maximum allowed tunnel inactivity time after Websocket is established (takes precedence over client and server timeout).
:param on_marked_down_action: Action to take when a backend server is marked as down.
:param proxy_protocol: Protocol to use between the Load Balancer and backend servers. Allows the backend servers to be informed of the client's real IP address. The PROXY protocol must be supported by the backend servers' software.
:param failover_host: Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param failover_host: Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param ssl_bridging: Defines whether to enable SSL bridging between the Load Balancer and backend servers.
:param ignore_ssl_server_verify: Defines whether the server certificate verification should be ignored.
:param redispatch_attempt_count: Whether to use another backend server on each attempt.
Expand Down Expand Up @@ -4134,7 +4134,7 @@ async def update_backend(
:param timeout_tunnel: Maximum allowed tunnel inactivity time after Websocket is established (takes precedence over client and server timeout).
:param on_marked_down_action: Action to take when a backend server is marked as down.
:param proxy_protocol: Protocol to use between the Load Balancer and backend servers. Allows the backend servers to be informed of the client's real IP address. The PROXY protocol must be supported by the backend servers' software.
:param failover_host: Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param failover_host: Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
:param ssl_bridging: Defines whether to enable SSL bridging between the Load Balancer and backend servers.
:param ignore_ssl_server_verify: Defines whether the server certificate verification should be ignored.
:param redispatch_attempt_count: Whether to use another backend server on each attempt.
Expand Down
10 changes: 5 additions & 5 deletions scaleway-async/scaleway_async/lb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ class Backend:

failover_host: Optional[str]
"""
Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
"""

ssl_bridging: Optional[bool]
Expand Down Expand Up @@ -1373,7 +1373,7 @@ class CreateBackendRequest:

failover_host: Optional[str]
"""
Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
"""

ssl_bridging: Optional[bool]
Expand Down Expand Up @@ -2581,7 +2581,7 @@ class UpdateBackendRequest:

failover_host: Optional[str]
"""
Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
"""

ssl_bridging: Optional[bool]
Expand Down Expand Up @@ -3017,7 +3017,7 @@ class ZonedApiCreateBackendRequest:

failover_host: Optional[str]
"""
Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
"""

ssl_bridging: Optional[bool]
Expand Down Expand Up @@ -4079,7 +4079,7 @@ class ZonedApiUpdateBackendRequest:

failover_host: Optional[str]
"""
Scaleway S3 bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
Scaleway Object Storage bucket website to be served as failover if all backend servers are down, e.g. failover-website.s3-website.fr-par.scw.cloud.
"""

ssl_bridging: Optional[bool]
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/rdb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ class InstanceLog:

download_url: Optional[str]
"""
Presigned S3 URL to download your log file.
Presigned Object Storage URL to download your log file.
"""

expires_at: Optional[datetime]
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/inference/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class Model:

has_eula: bool
"""
Defines whether the model has an end user licence agreement.
Defines whether the model has an end user license agreement.
"""

region: Region
Expand Down Expand Up @@ -521,7 +521,7 @@ class DeleteEndpointRequest:
class Eula:
content: str
"""
Content of the end user licence agreement.
Content of the end user license agreement.
"""


Expand Down
6 changes: 3 additions & 3 deletions scaleway/scaleway/instance/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1832,9 +1832,9 @@ def export_snapshot(
) -> ExportSnapshotResponse:
"""
Export a snapshot.
Export a snapshot to a specified S3 bucket in the same region.
:param bucket: S3 bucket name.
:param key: S3 object key.
Export a snapshot to a specified Object Storage bucket in the same region.
:param bucket: Object Storage bucket name.
:param key: Object key.
:param snapshot_id: Snapshot ID.
:param zone: Zone to target. If none is passed will use default zone from the config.
:return: :class:`ExportSnapshotResponse <ExportSnapshotResponse>`
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/instance/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2093,12 +2093,12 @@ class DetachServerVolumeResponse:
class ExportSnapshotRequest:
bucket: str
"""
S3 bucket name.
Object Storage bucket name.
"""

key: str
"""
S3 object key.
Object key.
"""

snapshot_id: str
Expand Down
8 changes: 4 additions & 4 deletions scaleway/scaleway/iot/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,15 +1222,15 @@ def create_route(
<b>You need to manage the database by yourself</b>.
- REST Route.
Create a route that will call a REST API on received subscribed MQTT messages.
- S3 Routes.
Create a route that will put subscribed MQTT messages into an S3 bucket.
- Amazon S3 Routes.
Create a route that will put subscribed MQTT messages into an Object Storage bucket.
You need to create the bucket yourself and grant write access.
Granting can be done with s3cmd (`s3cmd setacl s3://<my-bucket> --acl-grant=write:555c69c3-87d0-4bf8-80f1-99a2f757d031:555c69c3-87d0-4bf8-80f1-99a2f757d031`).
:param hub_id: Hub ID of the route.
:param topic: Topic the route subscribes to. It must be a valid MQTT topic and up to 65535 characters.
:param region: Region to target. If none is passed will use default region from the config.
:param name: Route name.
:param s3_config: If creating S3 Route, S3-specific configuration fields.
:param s3_config: If creating Amazon S3 Routes, Amazon S3-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
:param db_config: If creating Database Route, DB-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
Expand Down Expand Up @@ -1289,7 +1289,7 @@ def update_route(
:param region: Region to target. If none is passed will use default region from the config.
:param name: Route name.
:param topic: Topic the route subscribes to. It must be a valid MQTT topic and up to 65535 characters.
:param s3_config: When updating S3 Route, S3-specific configuration fields.
:param s3_config: When updating Amazon S3 Route, Amazon S3-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
:param db_config: When updating Database Route, DB-specific configuration fields.
One-Of ('config'): at most one of 's3_config', 'db_config', 'rest_config' could be set.
Expand Down
6 changes: 3 additions & 3 deletions scaleway/scaleway/iot/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,12 +544,12 @@ class RouteRestConfig:
class RouteS3Config:
bucket_region: str
"""
Region of the S3 route's destination bucket (e.g., 'fr-par').
Region of the Amazon S3 route's destination bucket (e.g., 'fr-par').
"""

bucket_name: str
"""
Destination bucket name of the S3 route.
Destination bucket name of the Amazon S3 route.
"""

object_prefix: str
Expand All @@ -559,7 +559,7 @@ class RouteS3Config:

strategy: RouteS3ConfigS3Strategy
"""
How the S3 route's objects will be created: one per topic or one per message.
How the Amazon S3 route's objects will be created: one per topic or one per message.
"""


Expand Down
Loading