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
8 changes: 4 additions & 4 deletions scaleway-async/scaleway_async/datawarehouse/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def list_versions(
page_size: Optional[int] = None,
) -> ListVersionsResponse:
"""
List available Clickhouse versions.
List available ClickHouse® versions.
:param region: Region to target. If none is passed will use default region from the config.
:param version:
:param page:
Expand Down Expand Up @@ -180,7 +180,7 @@ async def list_versions_all(
page_size: Optional[int] = None,
) -> list[Version]:
"""
List available Clickhouse versions.
List available ClickHouse® versions.
:param region: Region to target. If none is passed will use default region from the config.
:param version:
:param page:
Expand Down Expand Up @@ -397,7 +397,7 @@ async def create_deployment(
Create a deployment.
Create a new deployment.
:param name: Name of the deployment.
:param version: Clickhouse version to use for the deployment.
:param version: ClickHouse® version to use for the deployment.
:param replica_count: Number of replicas for the deployment.
:param password: Password for the initial user.
:param cpu_min: Minimum CPU count for the deployment.
Expand Down Expand Up @@ -515,7 +515,7 @@ async def delete_deployment(
) -> Deployment:
"""
Delete a deployment.
Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, deletion all your data will be lost.
Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, all your data will be lost.
:param deployment_id: UUID of the deployment to delete.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`Deployment <Deployment>`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class Deployment:

version: str
"""
Clickhouse version.
ClickHouse® version.
"""

replica_count: int
Expand Down Expand Up @@ -303,7 +303,7 @@ class CreateDeploymentRequest:

version: str
"""
Clickhouse version to use for the deployment.
ClickHouse® version to use for the deployment.
"""

replica_count: int
Expand Down
8 changes: 4 additions & 4 deletions scaleway/scaleway/datawarehouse/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def list_versions(
page_size: Optional[int] = None,
) -> ListVersionsResponse:
"""
List available Clickhouse versions.
List available ClickHouse® versions.
:param region: Region to target. If none is passed will use default region from the config.
:param version:
:param page:
Expand Down Expand Up @@ -180,7 +180,7 @@ def list_versions_all(
page_size: Optional[int] = None,
) -> list[Version]:
"""
List available Clickhouse versions.
List available ClickHouse® versions.
:param region: Region to target. If none is passed will use default region from the config.
:param version:
:param page:
Expand Down Expand Up @@ -395,7 +395,7 @@ def create_deployment(
Create a deployment.
Create a new deployment.
:param name: Name of the deployment.
:param version: Clickhouse version to use for the deployment.
:param version: ClickHouse® version to use for the deployment.
:param replica_count: Number of replicas for the deployment.
:param password: Password for the initial user.
:param cpu_min: Minimum CPU count for the deployment.
Expand Down Expand Up @@ -513,7 +513,7 @@ def delete_deployment(
) -> Deployment:
"""
Delete a deployment.
Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, deletion all your data will be lost.
Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, all your data will be lost.
:param deployment_id: UUID of the deployment to delete.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`Deployment <Deployment>`
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/datawarehouse/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class Deployment:

version: str
"""
Clickhouse version.
ClickHouse® version.
"""

replica_count: int
Expand Down Expand Up @@ -303,7 +303,7 @@ class CreateDeploymentRequest:

version: str
"""
Clickhouse version to use for the deployment.
ClickHouse® version to use for the deployment.
"""

replica_count: int
Expand Down