You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/k8s/v1/api.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -213,15 +213,15 @@ async def create_cluster(
213
213
apiserver_cert_sans: Optional[List[str]] =None,
214
214
) ->Cluster:
215
215
"""
216
-
Creates a new Kubernetes cluster on a Scaleway account.
216
+
Create a new Kubernetes cluster on a Scaleway account.
217
217
:param region: Region to target. If none is passed will use default region from the config.
218
218
:param organization_id: Organization ID in which the cluster will be created.
219
219
220
220
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
221
-
:param project_id: Poject ID in which the cluster will be created.
221
+
:param project_id: Project ID in which the cluster will be created.
222
222
223
223
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
224
-
:param type_: The type of the cluster (possible values are kapsule, multicloud).
224
+
:param type_: Type of the cluster (possible values are kapsule, multicloud).
225
225
:param name: Name of the cluster.
226
226
:param description: Description of the cluster.
227
227
:param tags: Tags associated with the cluster.
@@ -430,7 +430,7 @@ async def delete_cluster(
430
430
region: Optional[Region] =None,
431
431
) ->Cluster:
432
432
"""
433
-
Deletes a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
433
+
Delete a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
434
434
:param region: Region to target. If none is passed will use default region from the config.
435
435
:param cluster_id: ID of the cluster to delete.
436
436
:param with_additional_resources: Set true if you want to delete all volumes (including retain volume type) and loadbalancers whose name start with cluster ID.
@@ -470,7 +470,7 @@ async def upgrade_cluster(
470
470
region: Optional[Region] =None,
471
471
) ->Cluster:
472
472
"""
473
-
Upgrades a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
473
+
Upgrade a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
474
474
:param region: Region to target. If none is passed will use default region from the config.
475
475
:param cluster_id: ID of the cluster to upgrade.
476
476
:param version: New Kubernetes version of the cluster. Note that the version shoud either be a higher patch version of the same minor version or the direct minor version after the current one.
Copy file name to clipboardExpand all lines: scaleway/scaleway/k8s/v1/api.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -213,15 +213,15 @@ def create_cluster(
213
213
apiserver_cert_sans: Optional[List[str]] =None,
214
214
) ->Cluster:
215
215
"""
216
-
Creates a new Kubernetes cluster on a Scaleway account.
216
+
Create a new Kubernetes cluster on a Scaleway account.
217
217
:param region: Region to target. If none is passed will use default region from the config.
218
218
:param organization_id: Organization ID in which the cluster will be created.
219
219
220
220
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
221
-
:param project_id: Poject ID in which the cluster will be created.
221
+
:param project_id: Project ID in which the cluster will be created.
222
222
223
223
One-of ('project_identifier'): at most one of 'organization_id', 'project_id' could be set.
224
-
:param type_: The type of the cluster (possible values are kapsule, multicloud).
224
+
:param type_: Type of the cluster (possible values are kapsule, multicloud).
225
225
:param name: Name of the cluster.
226
226
:param description: Description of the cluster.
227
227
:param tags: Tags associated with the cluster.
@@ -430,7 +430,7 @@ def delete_cluster(
430
430
region: Optional[Region] =None,
431
431
) ->Cluster:
432
432
"""
433
-
Deletes a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
433
+
Delete a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
434
434
:param region: Region to target. If none is passed will use default region from the config.
435
435
:param cluster_id: ID of the cluster to delete.
436
436
:param with_additional_resources: Set true if you want to delete all volumes (including retain volume type) and loadbalancers whose name start with cluster ID.
@@ -470,7 +470,7 @@ def upgrade_cluster(
470
470
region: Optional[Region] =None,
471
471
) ->Cluster:
472
472
"""
473
-
Upgrades a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
473
+
Upgrade a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
474
474
:param region: Region to target. If none is passed will use default region from the config.
475
475
:param cluster_id: ID of the cluster to upgrade.
476
476
:param version: New Kubernetes version of the cluster. Note that the version shoud either be a higher patch version of the same minor version or the direct minor version after the current one.
0 commit comments