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
10 changes: 5 additions & 5 deletions packages/clients/src/api/k8s/v1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class API extends ParentAPI {
enrichForPagination('clusters', this.pageOfListClusters, request)

/**
* Creates a new Kubernetes cluster on a Scaleway account.
* Create a new Kubernetes cluster on a Scaleway account.
*
* @param request - The request {@link CreateClusterRequest}
* @returns A Promise of Cluster
Expand Down Expand Up @@ -198,9 +198,9 @@ export class API extends ParentAPI {
)

/**
* 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.
* 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.
*
* @param request - The request {@link DeleteClusterRequest}
* @returns A Promise of Cluster
Expand All @@ -222,7 +222,7 @@ export class API extends ParentAPI {
)

/**
* Upgrades a specific Kubernetes cluster and/or its associated pools to a
* Upgrade a specific Kubernetes cluster and/or its associated pools to a
* specific and supported Kubernetes version.
*
* @param request - The request {@link UpgradeClusterRequest}
Expand Down
6 changes: 3 additions & 3 deletions packages/clients/src/api/k8s/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export interface Cluster {
id: string
/** Type of the cluster. */
type: string
/** Nqme of the cluster. */
/** Name of the cluster. */
name: string
/** Status of the cluster. */
status: ClusterStatus
Expand Down Expand Up @@ -733,13 +733,13 @@ export type CreateClusterRequest = {
*/
organizationId?: string
/**
* Poject ID in which the cluster will be created.
* Project ID in which the cluster will be created.
*
* One-of ('projectIdentifier'): at most one of 'organizationId', 'projectId'
* could be set.
*/
projectId?: string
/** The type of the cluster (possible values are kapsule, multicloud). */
/** Type of the cluster (possible values are kapsule, multicloud). */
type: string
/** Name of the cluster. */
name?: string
Expand Down