Skip to content

Commit e319b0b

Browse files
authored
feat(datawarehouse): add data warehouse to doc website (#1338)
1 parent f1ffd14 commit e319b0b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

scaleway-async/scaleway_async/datawarehouse/v1beta1/api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async def list_versions(
141141
page_size: Optional[int] = None,
142142
) -> ListVersionsResponse:
143143
"""
144-
List available Clickhouse versions.
144+
List available ClickHouse® versions.
145145
:param region: Region to target. If none is passed will use default region from the config.
146146
:param version:
147147
:param page:
@@ -180,7 +180,7 @@ async def list_versions_all(
180180
page_size: Optional[int] = None,
181181
) -> list[Version]:
182182
"""
183-
List available Clickhouse versions.
183+
List available ClickHouse® versions.
184184
:param region: Region to target. If none is passed will use default region from the config.
185185
:param version:
186186
:param page:
@@ -397,7 +397,7 @@ async def create_deployment(
397397
Create a deployment.
398398
Create a new deployment.
399399
:param name: Name of the deployment.
400-
:param version: Clickhouse version to use for the deployment.
400+
:param version: ClickHouse® version to use for the deployment.
401401
:param replica_count: Number of replicas for the deployment.
402402
:param password: Password for the initial user.
403403
:param cpu_min: Minimum CPU count for the deployment.
@@ -515,7 +515,7 @@ async def delete_deployment(
515515
) -> Deployment:
516516
"""
517517
Delete a deployment.
518-
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.
518+
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.
519519
:param deployment_id: UUID of the deployment to delete.
520520
:param region: Region to target. If none is passed will use default region from the config.
521521
:return: :class:`Deployment <Deployment>`

scaleway-async/scaleway_async/datawarehouse/v1beta1/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Deployment:
173173

174174
version: str
175175
"""
176-
Clickhouse version.
176+
ClickHouse® version.
177177
"""
178178

179179
replica_count: int
@@ -303,7 +303,7 @@ class CreateDeploymentRequest:
303303

304304
version: str
305305
"""
306-
Clickhouse version to use for the deployment.
306+
ClickHouse® version to use for the deployment.
307307
"""
308308

309309
replica_count: int

scaleway/scaleway/datawarehouse/v1beta1/api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def list_versions(
141141
page_size: Optional[int] = None,
142142
) -> ListVersionsResponse:
143143
"""
144-
List available Clickhouse versions.
144+
List available ClickHouse® versions.
145145
:param region: Region to target. If none is passed will use default region from the config.
146146
:param version:
147147
:param page:
@@ -180,7 +180,7 @@ def list_versions_all(
180180
page_size: Optional[int] = None,
181181
) -> list[Version]:
182182
"""
183-
List available Clickhouse versions.
183+
List available ClickHouse® versions.
184184
:param region: Region to target. If none is passed will use default region from the config.
185185
:param version:
186186
:param page:
@@ -395,7 +395,7 @@ def create_deployment(
395395
Create a deployment.
396396
Create a new deployment.
397397
:param name: Name of the deployment.
398-
:param version: Clickhouse version to use for the deployment.
398+
:param version: ClickHouse® version to use for the deployment.
399399
:param replica_count: Number of replicas for the deployment.
400400
:param password: Password for the initial user.
401401
:param cpu_min: Minimum CPU count for the deployment.
@@ -513,7 +513,7 @@ def delete_deployment(
513513
) -> Deployment:
514514
"""
515515
Delete a deployment.
516-
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.
516+
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.
517517
:param deployment_id: UUID of the deployment to delete.
518518
:param region: Region to target. If none is passed will use default region from the config.
519519
:return: :class:`Deployment <Deployment>`

scaleway/scaleway/datawarehouse/v1beta1/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Deployment:
173173

174174
version: str
175175
"""
176-
Clickhouse version.
176+
ClickHouse® version.
177177
"""
178178

179179
replica_count: int
@@ -303,7 +303,7 @@ class CreateDeploymentRequest:
303303

304304
version: str
305305
"""
306-
Clickhouse version to use for the deployment.
306+
ClickHouse® version to use for the deployment.
307307
"""
308308

309309
replica_count: int

0 commit comments

Comments
 (0)