@@ -334,7 +334,10 @@ export interface CreateClusterRequestOpenIDConnectConfig {
334334export interface CreateClusterRequestPoolConfig {
335335 /** The name of the pool */
336336 name : string
337- /** The node type is the type of Scaleway Instance wanted for the pool */
337+ /**
338+ * The node type is the type of Scaleway Instance wanted for the pool, nodes
339+ * with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
340+ */
338341 nodeType : string
339342 /** The placement group ID in which all the nodes of the pool will be created */
340343 placementGroupId ?: string
@@ -493,7 +496,10 @@ export interface Pool {
493496 status : PoolStatus
494497 /** The version of the pool */
495498 version : string
496- /** The node type is the type of Scaleway Instance wanted for the pool */
499+ /**
500+ * The node type is the type of Scaleway Instance wanted for the pool, nodes
501+ * with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
502+ */
497503 nodeType : string
498504 /** The enablement of the autoscaling feature for the pool */
499505 autoscaling : boolean
@@ -862,7 +868,10 @@ export type CreatePoolRequest = {
862868 clusterId : string
863869 /** The name of the pool */
864870 name ?: string
865- /** The node type is the type of Scaleway Instance wanted for the pool */
871+ /**
872+ * The node type is the type of Scaleway Instance wanted for the pool, nodes
873+ * with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST)
874+ */
866875 nodeType : string
867876 /** The placement group ID in which all the nodes of the pool will be created */
868877 placementGroupId ?: string
0 commit comments