pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (515) hide show
  1. pulumiverse_scaleway/__init__.py +109 -2
  2. pulumiverse_scaleway/_inputs.py +3936 -2603
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +4 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +12 -12
  6. pulumiverse_scaleway/account/get_project.py +28 -28
  7. pulumiverse_scaleway/account/get_projects.py +241 -0
  8. pulumiverse_scaleway/account/get_ssh_key.py +34 -34
  9. pulumiverse_scaleway/account/outputs.py +95 -0
  10. pulumiverse_scaleway/account/project.py +72 -71
  11. pulumiverse_scaleway/account/ssh_key.py +107 -106
  12. pulumiverse_scaleway/account_project.py +72 -71
  13. pulumiverse_scaleway/account_ssh_key.py +107 -106
  14. pulumiverse_scaleway/apple_silicon_server.py +334 -201
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
  17. pulumiverse_scaleway/applesilicon/outputs.py +65 -33
  18. pulumiverse_scaleway/applesilicon/server.py +334 -201
  19. pulumiverse_scaleway/audittrail/__init__.py +10 -0
  20. pulumiverse_scaleway/audittrail/get_event.py +410 -0
  21. pulumiverse_scaleway/audittrail/outputs.py +234 -0
  22. pulumiverse_scaleway/autoscaling/__init__.py +13 -0
  23. pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
  24. pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
  25. pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
  26. pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
  27. pulumiverse_scaleway/autoscaling/outputs.py +438 -0
  28. pulumiverse_scaleway/baremetal_server.py +622 -524
  29. pulumiverse_scaleway/billing/__init__.py +2 -1
  30. pulumiverse_scaleway/billing/get_consumptions.py +19 -15
  31. pulumiverse_scaleway/billing/get_invoices.py +25 -25
  32. pulumiverse_scaleway/billing/outputs.py +96 -96
  33. pulumiverse_scaleway/block/__init__.py +4 -1
  34. pulumiverse_scaleway/block/_inputs.py +125 -0
  35. pulumiverse_scaleway/block/get_snapshot.py +60 -37
  36. pulumiverse_scaleway/block/get_volume.py +38 -38
  37. pulumiverse_scaleway/block/outputs.py +139 -0
  38. pulumiverse_scaleway/block/snapshot.py +272 -98
  39. pulumiverse_scaleway/block/volume.py +145 -144
  40. pulumiverse_scaleway/block_snapshot.py +272 -98
  41. pulumiverse_scaleway/block_volume.py +145 -144
  42. pulumiverse_scaleway/cockpit.py +71 -49
  43. pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
  44. pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
  45. pulumiverse_scaleway/cockpit_source.py +142 -141
  46. pulumiverse_scaleway/cockpit_token.py +84 -83
  47. pulumiverse_scaleway/config/__init__.py +2 -1
  48. pulumiverse_scaleway/config/__init__.pyi +2 -2
  49. pulumiverse_scaleway/config/vars.py +11 -11
  50. pulumiverse_scaleway/container.py +653 -424
  51. pulumiverse_scaleway/container_cron.py +97 -96
  52. pulumiverse_scaleway/container_domain.py +63 -62
  53. pulumiverse_scaleway/container_namespace.py +251 -172
  54. pulumiverse_scaleway/container_token.py +97 -96
  55. pulumiverse_scaleway/container_trigger.py +77 -76
  56. pulumiverse_scaleway/containers/__init__.py +2 -1
  57. pulumiverse_scaleway/containers/_inputs.py +87 -87
  58. pulumiverse_scaleway/containers/container.py +653 -424
  59. pulumiverse_scaleway/containers/cron.py +97 -96
  60. pulumiverse_scaleway/containers/domain.py +63 -62
  61. pulumiverse_scaleway/containers/get_container.py +117 -73
  62. pulumiverse_scaleway/containers/get_namespace.py +56 -45
  63. pulumiverse_scaleway/containers/namespace.py +251 -172
  64. pulumiverse_scaleway/containers/outputs.py +84 -84
  65. pulumiverse_scaleway/containers/token.py +97 -96
  66. pulumiverse_scaleway/containers/trigger.py +77 -76
  67. pulumiverse_scaleway/database.py +81 -80
  68. pulumiverse_scaleway/database_acl.py +148 -39
  69. pulumiverse_scaleway/database_backup.py +124 -123
  70. pulumiverse_scaleway/database_instance.py +531 -436
  71. pulumiverse_scaleway/database_privilege.py +88 -87
  72. pulumiverse_scaleway/database_read_replica.py +60 -59
  73. pulumiverse_scaleway/database_user.py +171 -98
  74. pulumiverse_scaleway/databases/__init__.py +2 -1
  75. pulumiverse_scaleway/databases/_inputs.py +364 -216
  76. pulumiverse_scaleway/databases/acl.py +148 -39
  77. pulumiverse_scaleway/databases/database.py +81 -80
  78. pulumiverse_scaleway/databases/database_backup.py +124 -123
  79. pulumiverse_scaleway/databases/get_acl.py +17 -17
  80. pulumiverse_scaleway/databases/get_database.py +26 -26
  81. pulumiverse_scaleway/databases/get_database_backup.py +46 -46
  82. pulumiverse_scaleway/databases/get_instance.py +95 -73
  83. pulumiverse_scaleway/databases/get_privilege.py +30 -30
  84. pulumiverse_scaleway/databases/instance.py +531 -436
  85. pulumiverse_scaleway/databases/outputs.py +419 -232
  86. pulumiverse_scaleway/databases/privilege.py +88 -87
  87. pulumiverse_scaleway/databases/read_replica.py +60 -59
  88. pulumiverse_scaleway/databases/serverless_database.py +97 -96
  89. pulumiverse_scaleway/databases/snapshot.py +127 -126
  90. pulumiverse_scaleway/databases/user.py +171 -98
  91. pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
  92. pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
  93. pulumiverse_scaleway/datawarehouse/database.py +338 -0
  94. pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
  95. pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
  96. pulumiverse_scaleway/datawarehouse/user.py +451 -0
  97. pulumiverse_scaleway/domain/__init__.py +2 -1
  98. pulumiverse_scaleway/domain/_inputs.py +661 -661
  99. pulumiverse_scaleway/domain/get_record.py +53 -64
  100. pulumiverse_scaleway/domain/get_zone.py +36 -30
  101. pulumiverse_scaleway/domain/outputs.py +501 -501
  102. pulumiverse_scaleway/domain/record.py +156 -202
  103. pulumiverse_scaleway/domain/registration.py +123 -122
  104. pulumiverse_scaleway/domain/zone.py +108 -107
  105. pulumiverse_scaleway/domain_record.py +156 -202
  106. pulumiverse_scaleway/domain_zone.py +108 -107
  107. pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
  108. pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
  109. pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
  110. pulumiverse_scaleway/edge_services_head_stage.py +37 -36
  111. pulumiverse_scaleway/edge_services_pipeline.py +125 -82
  112. pulumiverse_scaleway/edge_services_plan.py +37 -36
  113. pulumiverse_scaleway/edge_services_route_stage.py +75 -74
  114. pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
  115. pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
  116. pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
  117. pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
  118. pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
  119. pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
  120. pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
  121. pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
  122. pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
  123. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
  124. pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
  125. pulumiverse_scaleway/elasticmetal/ip.py +170 -169
  126. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
  127. pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
  128. pulumiverse_scaleway/elasticmetal/server.py +622 -524
  129. pulumiverse_scaleway/file_filesystem.py +555 -0
  130. pulumiverse_scaleway/flexible_ip.py +170 -169
  131. pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
  132. pulumiverse_scaleway/function.py +457 -348
  133. pulumiverse_scaleway/function_cron.py +97 -96
  134. pulumiverse_scaleway/function_domain.py +63 -62
  135. pulumiverse_scaleway/function_namespace.py +234 -155
  136. pulumiverse_scaleway/function_token.py +97 -96
  137. pulumiverse_scaleway/function_trigger.py +77 -76
  138. pulumiverse_scaleway/functions/__init__.py +2 -1
  139. pulumiverse_scaleway/functions/_inputs.py +50 -50
  140. pulumiverse_scaleway/functions/cron.py +97 -96
  141. pulumiverse_scaleway/functions/domain.py +63 -62
  142. pulumiverse_scaleway/functions/function.py +457 -348
  143. pulumiverse_scaleway/functions/get_function.py +93 -71
  144. pulumiverse_scaleway/functions/get_namespace.py +54 -43
  145. pulumiverse_scaleway/functions/namespace.py +234 -155
  146. pulumiverse_scaleway/functions/outputs.py +34 -34
  147. pulumiverse_scaleway/functions/token.py +97 -96
  148. pulumiverse_scaleway/functions/trigger.py +77 -76
  149. pulumiverse_scaleway/get_account_project.py +28 -28
  150. pulumiverse_scaleway/get_account_ssh_key.py +34 -34
  151. pulumiverse_scaleway/get_availability_zones.py +12 -12
  152. pulumiverse_scaleway/get_baremetal_offer.py +43 -41
  153. pulumiverse_scaleway/get_baremetal_option.py +24 -24
  154. pulumiverse_scaleway/get_baremetal_os.py +28 -28
  155. pulumiverse_scaleway/get_baremetal_server.py +101 -68
  156. pulumiverse_scaleway/get_billing_consumptions.py +19 -15
  157. pulumiverse_scaleway/get_billing_invoices.py +25 -25
  158. pulumiverse_scaleway/get_block_snapshot.py +60 -37
  159. pulumiverse_scaleway/get_block_volume.py +38 -38
  160. pulumiverse_scaleway/get_cockpit.py +16 -16
  161. pulumiverse_scaleway/get_cockpit_source.py +88 -45
  162. pulumiverse_scaleway/get_config.py +24 -24
  163. pulumiverse_scaleway/get_container.py +117 -73
  164. pulumiverse_scaleway/get_container_namespace.py +56 -45
  165. pulumiverse_scaleway/get_database.py +26 -26
  166. pulumiverse_scaleway/get_database_acl.py +17 -17
  167. pulumiverse_scaleway/get_database_backup.py +46 -46
  168. pulumiverse_scaleway/get_database_instance.py +95 -73
  169. pulumiverse_scaleway/get_database_privilege.py +30 -30
  170. pulumiverse_scaleway/get_domain_record.py +53 -64
  171. pulumiverse_scaleway/get_domain_zone.py +36 -30
  172. pulumiverse_scaleway/get_flexible_ip.py +70 -54
  173. pulumiverse_scaleway/get_flexible_ips.py +31 -31
  174. pulumiverse_scaleway/get_function.py +93 -71
  175. pulumiverse_scaleway/get_function_namespace.py +54 -43
  176. pulumiverse_scaleway/get_iam_api_key.py +28 -28
  177. pulumiverse_scaleway/get_iam_application.py +32 -32
  178. pulumiverse_scaleway/get_iam_group.py +36 -36
  179. pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
  180. pulumiverse_scaleway/get_iam_user.py +30 -30
  181. pulumiverse_scaleway/get_instance_image.py +58 -58
  182. pulumiverse_scaleway/get_instance_ip.py +42 -30
  183. pulumiverse_scaleway/get_instance_placement_group.py +38 -38
  184. pulumiverse_scaleway/get_instance_private_nic.py +53 -41
  185. pulumiverse_scaleway/get_instance_security_group.py +46 -46
  186. pulumiverse_scaleway/get_instance_server.py +108 -145
  187. pulumiverse_scaleway/get_instance_servers.py +31 -31
  188. pulumiverse_scaleway/get_instance_snapshot.py +41 -41
  189. pulumiverse_scaleway/get_instance_volume.py +42 -42
  190. pulumiverse_scaleway/get_iot_device.py +46 -46
  191. pulumiverse_scaleway/get_iot_hub.py +60 -60
  192. pulumiverse_scaleway/get_ipam_ip.py +65 -65
  193. pulumiverse_scaleway/get_ipam_ips.py +56 -56
  194. pulumiverse_scaleway/get_k8s_version.py +34 -23
  195. pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
  196. pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
  197. pulumiverse_scaleway/get_lb_acls.py +29 -29
  198. pulumiverse_scaleway/get_lb_backend.py +75 -75
  199. pulumiverse_scaleway/get_lb_backends.py +29 -29
  200. pulumiverse_scaleway/get_lb_frontend.py +76 -43
  201. pulumiverse_scaleway/get_lb_frontends.py +29 -29
  202. pulumiverse_scaleway/get_lb_ips.py +37 -37
  203. pulumiverse_scaleway/get_lb_route.py +36 -25
  204. pulumiverse_scaleway/get_lb_routes.py +23 -23
  205. pulumiverse_scaleway/get_lbs.py +31 -31
  206. pulumiverse_scaleway/get_loadbalancer.py +78 -56
  207. pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
  208. pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
  209. pulumiverse_scaleway/get_marketplace_image.py +28 -28
  210. pulumiverse_scaleway/get_mnq_sns.py +18 -18
  211. pulumiverse_scaleway/get_mnq_sqs.py +18 -18
  212. pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
  213. pulumiverse_scaleway/get_object_bucket.py +35 -35
  214. pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
  215. pulumiverse_scaleway/get_redis_cluster.py +65 -54
  216. pulumiverse_scaleway/get_registry_image.py +48 -48
  217. pulumiverse_scaleway/get_registry_image_tag.py +44 -44
  218. pulumiverse_scaleway/get_registry_namespace.py +36 -36
  219. pulumiverse_scaleway/get_secret.py +58 -58
  220. pulumiverse_scaleway/get_secret_version.py +46 -46
  221. pulumiverse_scaleway/get_tem_domain.py +103 -70
  222. pulumiverse_scaleway/get_vpc.py +58 -47
  223. pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
  224. pulumiverse_scaleway/get_vpc_private_network.py +58 -47
  225. pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
  226. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
  227. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
  228. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
  229. pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
  230. pulumiverse_scaleway/get_vpc_routes.py +47 -47
  231. pulumiverse_scaleway/get_vpcs.py +31 -31
  232. pulumiverse_scaleway/get_web_host_offer.py +34 -34
  233. pulumiverse_scaleway/get_webhosting.py +58 -58
  234. pulumiverse_scaleway/hosting/__init__.py +2 -1
  235. pulumiverse_scaleway/hosting/_inputs.py +117 -75
  236. pulumiverse_scaleway/hosting/get_hosting.py +58 -58
  237. pulumiverse_scaleway/hosting/get_offer.py +34 -34
  238. pulumiverse_scaleway/hosting/hosting.py +213 -212
  239. pulumiverse_scaleway/hosting/outputs.py +276 -192
  240. pulumiverse_scaleway/iam/__init__.py +3 -1
  241. pulumiverse_scaleway/iam/_inputs.py +26 -26
  242. pulumiverse_scaleway/iam/api_key.py +142 -141
  243. pulumiverse_scaleway/iam/application.py +98 -97
  244. pulumiverse_scaleway/iam/get_api_key.py +28 -28
  245. pulumiverse_scaleway/iam/get_application.py +32 -32
  246. pulumiverse_scaleway/iam/get_group.py +36 -36
  247. pulumiverse_scaleway/iam/get_policy.py +293 -0
  248. pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
  249. pulumiverse_scaleway/iam/get_user.py +30 -30
  250. pulumiverse_scaleway/iam/group.py +140 -139
  251. pulumiverse_scaleway/iam/group_membership.py +54 -53
  252. pulumiverse_scaleway/iam/outputs.py +70 -18
  253. pulumiverse_scaleway/iam/policy.py +169 -168
  254. pulumiverse_scaleway/iam/ssh_key.py +107 -106
  255. pulumiverse_scaleway/iam/user.py +598 -134
  256. pulumiverse_scaleway/iam_api_key.py +142 -141
  257. pulumiverse_scaleway/iam_application.py +98 -97
  258. pulumiverse_scaleway/iam_group.py +140 -139
  259. pulumiverse_scaleway/iam_group_membership.py +54 -53
  260. pulumiverse_scaleway/iam_policy.py +169 -168
  261. pulumiverse_scaleway/iam_ssh_key.py +107 -106
  262. pulumiverse_scaleway/iam_user.py +598 -134
  263. pulumiverse_scaleway/inference/__init__.py +4 -1
  264. pulumiverse_scaleway/inference/_inputs.py +232 -50
  265. pulumiverse_scaleway/inference/deployment.py +319 -220
  266. pulumiverse_scaleway/inference/get_model.py +299 -0
  267. pulumiverse_scaleway/inference/model.py +684 -0
  268. pulumiverse_scaleway/inference/outputs.py +250 -34
  269. pulumiverse_scaleway/inference_deployment.py +319 -220
  270. pulumiverse_scaleway/instance/__init__.py +3 -1
  271. pulumiverse_scaleway/instance/_inputs.py +650 -437
  272. pulumiverse_scaleway/instance/get_image.py +58 -58
  273. pulumiverse_scaleway/instance/get_ip.py +42 -30
  274. pulumiverse_scaleway/instance/get_placement_group.py +38 -38
  275. pulumiverse_scaleway/instance/get_private_nic.py +53 -41
  276. pulumiverse_scaleway/instance/get_security_group.py +46 -46
  277. pulumiverse_scaleway/instance/get_server.py +108 -145
  278. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  279. pulumiverse_scaleway/instance/get_servers.py +31 -31
  280. pulumiverse_scaleway/instance/get_snapshot.py +41 -41
  281. pulumiverse_scaleway/instance/get_volume.py +42 -42
  282. pulumiverse_scaleway/instance/image.py +260 -205
  283. pulumiverse_scaleway/instance/ip.py +116 -115
  284. pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
  285. pulumiverse_scaleway/instance/outputs.py +981 -548
  286. pulumiverse_scaleway/instance/placement_group.py +123 -122
  287. pulumiverse_scaleway/instance/private_nic.py +163 -113
  288. pulumiverse_scaleway/instance/security_group.py +188 -187
  289. pulumiverse_scaleway/instance/security_group_rules.py +42 -41
  290. pulumiverse_scaleway/instance/server.py +590 -562
  291. pulumiverse_scaleway/instance/snapshot.py +150 -157
  292. pulumiverse_scaleway/instance/user_data.py +75 -74
  293. pulumiverse_scaleway/instance/volume.py +174 -159
  294. pulumiverse_scaleway/instance_image.py +260 -205
  295. pulumiverse_scaleway/instance_ip.py +116 -115
  296. pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
  297. pulumiverse_scaleway/instance_placement_group.py +123 -122
  298. pulumiverse_scaleway/instance_private_nic.py +163 -113
  299. pulumiverse_scaleway/instance_security_group.py +188 -187
  300. pulumiverse_scaleway/instance_security_group_rules.py +42 -41
  301. pulumiverse_scaleway/instance_server.py +590 -562
  302. pulumiverse_scaleway/instance_snapshot.py +150 -157
  303. pulumiverse_scaleway/instance_user_data.py +75 -74
  304. pulumiverse_scaleway/instance_volume.py +174 -159
  305. pulumiverse_scaleway/iot/__init__.py +2 -1
  306. pulumiverse_scaleway/iot/_inputs.py +119 -119
  307. pulumiverse_scaleway/iot/device.py +156 -193
  308. pulumiverse_scaleway/iot/get_device.py +46 -46
  309. pulumiverse_scaleway/iot/get_hub.py +60 -60
  310. pulumiverse_scaleway/iot/hub.py +259 -258
  311. pulumiverse_scaleway/iot/network.py +115 -114
  312. pulumiverse_scaleway/iot/outputs.py +107 -107
  313. pulumiverse_scaleway/iot/route.py +109 -108
  314. pulumiverse_scaleway/iot_device.py +156 -193
  315. pulumiverse_scaleway/iot_hub.py +259 -258
  316. pulumiverse_scaleway/iot_network.py +115 -114
  317. pulumiverse_scaleway/iot_route.py +109 -108
  318. pulumiverse_scaleway/ipam/__init__.py +2 -1
  319. pulumiverse_scaleway/ipam/_inputs.py +108 -108
  320. pulumiverse_scaleway/ipam/get_ip.py +65 -65
  321. pulumiverse_scaleway/ipam/get_ips.py +56 -56
  322. pulumiverse_scaleway/ipam/ip.py +160 -131
  323. pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
  324. pulumiverse_scaleway/ipam/outputs.py +122 -122
  325. pulumiverse_scaleway/ipam_ip.py +160 -131
  326. pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
  327. pulumiverse_scaleway/job/__init__.py +2 -1
  328. pulumiverse_scaleway/job/_inputs.py +127 -14
  329. pulumiverse_scaleway/job/definition.py +283 -175
  330. pulumiverse_scaleway/job/outputs.py +98 -10
  331. pulumiverse_scaleway/job_definition.py +283 -175
  332. pulumiverse_scaleway/key_manager_key.py +939 -0
  333. pulumiverse_scaleway/kubernetes/__init__.py +3 -1
  334. pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
  335. pulumiverse_scaleway/kubernetes/acl.py +447 -0
  336. pulumiverse_scaleway/kubernetes/cluster.py +594 -307
  337. pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
  338. pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
  339. pulumiverse_scaleway/kubernetes/get_version.py +34 -23
  340. pulumiverse_scaleway/kubernetes/outputs.py +444 -250
  341. pulumiverse_scaleway/kubernetes/pool.py +427 -365
  342. pulumiverse_scaleway/kubernetes_cluster.py +594 -307
  343. pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
  344. pulumiverse_scaleway/loadbalancer.py +329 -246
  345. pulumiverse_scaleway/loadbalancer_acl.py +102 -101
  346. pulumiverse_scaleway/loadbalancer_backend.py +534 -487
  347. pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
  348. pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
  349. pulumiverse_scaleway/loadbalancer_ip.py +124 -123
  350. pulumiverse_scaleway/loadbalancer_route.py +244 -119
  351. pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
  352. pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
  353. pulumiverse_scaleway/loadbalancers/acl.py +102 -101
  354. pulumiverse_scaleway/loadbalancers/backend.py +534 -487
  355. pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
  356. pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
  357. pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
  358. pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
  359. pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
  360. pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
  361. pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
  362. pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
  363. pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
  364. pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
  365. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
  366. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
  367. pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
  368. pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
  369. pulumiverse_scaleway/loadbalancers/ip.py +124 -123
  370. pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
  371. pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
  372. pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
  373. pulumiverse_scaleway/loadbalancers/route.py +244 -119
  374. pulumiverse_scaleway/mnq/__init__.py +2 -1
  375. pulumiverse_scaleway/mnq/_inputs.py +90 -38
  376. pulumiverse_scaleway/mnq/get_sns.py +18 -18
  377. pulumiverse_scaleway/mnq/get_sqs.py +18 -18
  378. pulumiverse_scaleway/mnq/nats_account.py +63 -62
  379. pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
  380. pulumiverse_scaleway/mnq/outputs.py +73 -26
  381. pulumiverse_scaleway/mnq/sns.py +46 -45
  382. pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
  383. pulumiverse_scaleway/mnq/sns_topic.py +174 -173
  384. pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
  385. pulumiverse_scaleway/mnq/sqs.py +46 -45
  386. pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
  387. pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
  388. pulumiverse_scaleway/mnq_nats_account.py +63 -62
  389. pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
  390. pulumiverse_scaleway/mnq_sns.py +46 -45
  391. pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
  392. pulumiverse_scaleway/mnq_sns_topic.py +174 -173
  393. pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
  394. pulumiverse_scaleway/mnq_sqs.py +46 -45
  395. pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
  396. pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
  397. pulumiverse_scaleway/mongo_db_instance.py +569 -268
  398. pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
  399. pulumiverse_scaleway/mongodb/__init__.py +3 -1
  400. pulumiverse_scaleway/mongodb/_inputs.py +178 -51
  401. pulumiverse_scaleway/mongodb/get_instance.py +110 -55
  402. pulumiverse_scaleway/mongodb/instance.py +569 -268
  403. pulumiverse_scaleway/mongodb/outputs.py +192 -68
  404. pulumiverse_scaleway/mongodb/snapshot.py +127 -126
  405. pulumiverse_scaleway/mongodb/user.py +507 -0
  406. pulumiverse_scaleway/network/__init__.py +2 -1
  407. pulumiverse_scaleway/network/_inputs.py +209 -155
  408. pulumiverse_scaleway/network/acl.py +100 -101
  409. pulumiverse_scaleway/network/gateway_network.py +228 -180
  410. pulumiverse_scaleway/network/get_gateway_network.py +55 -44
  411. pulumiverse_scaleway/network/get_private_network.py +58 -47
  412. pulumiverse_scaleway/network/get_public_gateway.py +56 -56
  413. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
  414. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
  415. pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
  416. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
  417. pulumiverse_scaleway/network/get_routes.py +47 -47
  418. pulumiverse_scaleway/network/get_vpc.py +58 -47
  419. pulumiverse_scaleway/network/get_vpcs.py +31 -31
  420. pulumiverse_scaleway/network/outputs.py +338 -270
  421. pulumiverse_scaleway/network/private_network.py +203 -155
  422. pulumiverse_scaleway/network/public_gateway.py +261 -260
  423. pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
  424. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
  425. pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
  426. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
  427. pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
  428. pulumiverse_scaleway/network/route.py +230 -141
  429. pulumiverse_scaleway/network/vpc.py +172 -124
  430. pulumiverse_scaleway/object/__init__.py +3 -1
  431. pulumiverse_scaleway/object/_inputs.py +202 -166
  432. pulumiverse_scaleway/object/bucket.py +162 -148
  433. pulumiverse_scaleway/object/bucket_acl.py +97 -94
  434. pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
  435. pulumiverse_scaleway/object/bucket_policy.py +71 -134
  436. pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
  437. pulumiverse_scaleway/object/get.py +290 -0
  438. pulumiverse_scaleway/object/get_bucket.py +35 -35
  439. pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
  440. pulumiverse_scaleway/object/item.py +301 -223
  441. pulumiverse_scaleway/object/outputs.py +210 -166
  442. pulumiverse_scaleway/object_bucket.py +162 -148
  443. pulumiverse_scaleway/object_bucket_acl.py +97 -94
  444. pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
  445. pulumiverse_scaleway/object_bucket_policy.py +71 -134
  446. pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
  447. pulumiverse_scaleway/object_item.py +301 -223
  448. pulumiverse_scaleway/observability/__init__.py +4 -2
  449. pulumiverse_scaleway/observability/_inputs.py +106 -106
  450. pulumiverse_scaleway/observability/alert_manager.py +66 -65
  451. pulumiverse_scaleway/observability/cockpit.py +71 -49
  452. pulumiverse_scaleway/observability/get_grafana.py +103 -0
  453. pulumiverse_scaleway/observability/get_instance.py +16 -16
  454. pulumiverse_scaleway/observability/get_source.py +88 -45
  455. pulumiverse_scaleway/observability/get_sources.py +375 -0
  456. pulumiverse_scaleway/observability/grafana_user.py +72 -113
  457. pulumiverse_scaleway/observability/outputs.py +241 -101
  458. pulumiverse_scaleway/observability/source.py +142 -141
  459. pulumiverse_scaleway/observability/token.py +84 -83
  460. pulumiverse_scaleway/outputs.py +5235 -3665
  461. pulumiverse_scaleway/provider.py +107 -82
  462. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  463. pulumiverse_scaleway/rdb_snapshot.py +127 -126
  464. pulumiverse_scaleway/redis/__init__.py +2 -1
  465. pulumiverse_scaleway/redis/_inputs.py +163 -69
  466. pulumiverse_scaleway/redis/cluster.py +273 -225
  467. pulumiverse_scaleway/redis/get_cluster.py +65 -54
  468. pulumiverse_scaleway/redis/outputs.py +199 -87
  469. pulumiverse_scaleway/redis_cluster.py +273 -225
  470. pulumiverse_scaleway/registry/__init__.py +2 -1
  471. pulumiverse_scaleway/registry/get_image.py +48 -48
  472. pulumiverse_scaleway/registry/get_image_tag.py +44 -44
  473. pulumiverse_scaleway/registry/get_namespace.py +36 -36
  474. pulumiverse_scaleway/registry/namespace.py +106 -105
  475. pulumiverse_scaleway/registry_namespace.py +106 -105
  476. pulumiverse_scaleway/sdb_database.py +97 -96
  477. pulumiverse_scaleway/secret.py +188 -179
  478. pulumiverse_scaleway/secret_version.py +107 -106
  479. pulumiverse_scaleway/secrets/__init__.py +2 -1
  480. pulumiverse_scaleway/secrets/_inputs.py +63 -63
  481. pulumiverse_scaleway/secrets/get_secret.py +58 -58
  482. pulumiverse_scaleway/secrets/get_version.py +46 -46
  483. pulumiverse_scaleway/secrets/outputs.py +84 -84
  484. pulumiverse_scaleway/secrets/secret.py +188 -179
  485. pulumiverse_scaleway/secrets/version.py +107 -106
  486. pulumiverse_scaleway/tem/__init__.py +2 -1
  487. pulumiverse_scaleway/tem/_inputs.py +33 -33
  488. pulumiverse_scaleway/tem/blocked_list.py +105 -104
  489. pulumiverse_scaleway/tem/domain.py +384 -257
  490. pulumiverse_scaleway/tem/domain_validation.py +63 -62
  491. pulumiverse_scaleway/tem/get_domain.py +103 -70
  492. pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
  493. pulumiverse_scaleway/tem/outputs.py +44 -44
  494. pulumiverse_scaleway/tem/webhook.py +132 -131
  495. pulumiverse_scaleway/tem_domain.py +384 -257
  496. pulumiverse_scaleway/tem_domain_validation.py +63 -62
  497. pulumiverse_scaleway/tem_webhook.py +132 -131
  498. pulumiverse_scaleway/vpc.py +172 -124
  499. pulumiverse_scaleway/vpc_gateway_network.py +228 -180
  500. pulumiverse_scaleway/vpc_private_network.py +203 -155
  501. pulumiverse_scaleway/vpc_public_gateway.py +261 -260
  502. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
  503. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
  504. pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
  505. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
  506. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
  507. pulumiverse_scaleway/vpc_route.py +230 -141
  508. pulumiverse_scaleway/webhosting.py +213 -212
  509. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
  510. pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
  511. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
  512. pulumiverse_scaleway/get_cockpit_plan.py +0 -129
  513. pulumiverse_scaleway/observability/get_plan.py +0 -125
  514. pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
  515. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -21,62 +21,66 @@ __all__ = ['PoolArgs', 'Pool']
21
21
  @pulumi.input_type
22
22
  class PoolArgs:
23
23
  def __init__(__self__, *,
24
- cluster_id: pulumi.Input[str],
25
- node_type: pulumi.Input[str],
26
- size: pulumi.Input[int],
27
- autohealing: Optional[pulumi.Input[bool]] = None,
28
- autoscaling: Optional[pulumi.Input[bool]] = None,
29
- container_runtime: Optional[pulumi.Input[str]] = None,
30
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
- max_size: Optional[pulumi.Input[int]] = None,
32
- min_size: Optional[pulumi.Input[int]] = None,
33
- name: Optional[pulumi.Input[str]] = None,
34
- placement_group_id: Optional[pulumi.Input[str]] = None,
35
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
36
- region: Optional[pulumi.Input[str]] = None,
37
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
38
- root_volume_type: Optional[pulumi.Input[str]] = None,
39
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
+ cluster_id: pulumi.Input[_builtins.str],
25
+ node_type: pulumi.Input[_builtins.str],
26
+ size: pulumi.Input[_builtins.int],
27
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
29
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
30
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
31
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
32
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
33
+ name: Optional[pulumi.Input[_builtins.str]] = None,
34
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
35
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
36
+ region: Optional[pulumi.Input[_builtins.str]] = None,
37
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
38
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
39
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
40
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
40
41
  upgrade_policy: Optional[pulumi.Input['PoolUpgradePolicyArgs']] = None,
41
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
42
- zone: Optional[pulumi.Input[str]] = None):
42
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
43
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
43
44
  """
44
45
  The set of arguments for constructing a Pool resource.
45
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
46
- :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
46
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
47
+ :param pulumi.Input[_builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
47
48
 
48
49
  > **Important:** Updates to this field will recreate a new resource.
49
- :param pulumi.Input[int] size: The size of the pool.
50
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
50
51
 
51
52
  > **Important:** This field will only be used at creation if autoscaling is enabled.
52
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
53
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
53
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
54
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
54
55
 
55
56
  > **Important:** When enabled, an update of the `size` will not be taken into account.
56
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
57
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
57
58
 
58
59
  > **Important:** Updates to this field will recreate a new resource.
59
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
60
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
61
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
62
- :param pulumi.Input[str] name: The name for the pool.
60
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
61
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
62
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
63
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
63
64
 
64
65
  > **Important:** Updates to this field will recreate a new resource.
65
- :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
66
+ :param pulumi.Input[_builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
66
67
 
67
68
  > **Important:** Updates to this field will recreate a new resource.
68
- :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
69
+ :param pulumi.Input[_builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
69
70
 
70
71
  > **Important:** Updates to this field will recreate a new resource.
71
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
72
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
73
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
74
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
72
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
73
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
74
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
75
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
75
76
 
76
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
77
+ > **Important:** Updates to this field will recreate a new resource.
78
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
79
+
80
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
77
81
  :param pulumi.Input['PoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
78
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
79
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
82
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
83
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
80
84
 
81
85
  > **Important:** Updates to this field will recreate a new resource.
82
86
  """
@@ -107,6 +111,8 @@ class PoolArgs:
107
111
  pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
108
112
  if root_volume_type is not None:
109
113
  pulumi.set(__self__, "root_volume_type", root_volume_type)
114
+ if security_group_id is not None:
115
+ pulumi.set(__self__, "security_group_id", security_group_id)
110
116
  if tags is not None:
111
117
  pulumi.set(__self__, "tags", tags)
112
118
  if upgrade_policy is not None:
@@ -116,21 +122,21 @@ class PoolArgs:
116
122
  if zone is not None:
117
123
  pulumi.set(__self__, "zone", zone)
118
124
 
119
- @property
125
+ @_builtins.property
120
126
  @pulumi.getter(name="clusterId")
121
- def cluster_id(self) -> pulumi.Input[str]:
127
+ def cluster_id(self) -> pulumi.Input[_builtins.str]:
122
128
  """
123
129
  The ID of the Kubernetes cluster on which this pool will be created.
124
130
  """
125
131
  return pulumi.get(self, "cluster_id")
126
132
 
127
133
  @cluster_id.setter
128
- def cluster_id(self, value: pulumi.Input[str]):
134
+ def cluster_id(self, value: pulumi.Input[_builtins.str]):
129
135
  pulumi.set(self, "cluster_id", value)
130
136
 
131
- @property
137
+ @_builtins.property
132
138
  @pulumi.getter(name="nodeType")
133
- def node_type(self) -> pulumi.Input[str]:
139
+ def node_type(self) -> pulumi.Input[_builtins.str]:
134
140
  """
135
141
  The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
136
142
 
@@ -139,12 +145,12 @@ class PoolArgs:
139
145
  return pulumi.get(self, "node_type")
140
146
 
141
147
  @node_type.setter
142
- def node_type(self, value: pulumi.Input[str]):
148
+ def node_type(self, value: pulumi.Input[_builtins.str]):
143
149
  pulumi.set(self, "node_type", value)
144
150
 
145
- @property
151
+ @_builtins.property
146
152
  @pulumi.getter
147
- def size(self) -> pulumi.Input[int]:
153
+ def size(self) -> pulumi.Input[_builtins.int]:
148
154
  """
149
155
  The size of the pool.
150
156
 
@@ -153,24 +159,24 @@ class PoolArgs:
153
159
  return pulumi.get(self, "size")
154
160
 
155
161
  @size.setter
156
- def size(self, value: pulumi.Input[int]):
162
+ def size(self, value: pulumi.Input[_builtins.int]):
157
163
  pulumi.set(self, "size", value)
158
164
 
159
- @property
165
+ @_builtins.property
160
166
  @pulumi.getter
161
- def autohealing(self) -> Optional[pulumi.Input[bool]]:
167
+ def autohealing(self) -> Optional[pulumi.Input[_builtins.bool]]:
162
168
  """
163
169
  Enables the autohealing feature for this pool.
164
170
  """
165
171
  return pulumi.get(self, "autohealing")
166
172
 
167
173
  @autohealing.setter
168
- def autohealing(self, value: Optional[pulumi.Input[bool]]):
174
+ def autohealing(self, value: Optional[pulumi.Input[_builtins.bool]]):
169
175
  pulumi.set(self, "autohealing", value)
170
176
 
171
- @property
177
+ @_builtins.property
172
178
  @pulumi.getter
173
- def autoscaling(self) -> Optional[pulumi.Input[bool]]:
179
+ def autoscaling(self) -> Optional[pulumi.Input[_builtins.bool]]:
174
180
  """
175
181
  Enables the autoscaling feature for this pool.
176
182
 
@@ -179,12 +185,12 @@ class PoolArgs:
179
185
  return pulumi.get(self, "autoscaling")
180
186
 
181
187
  @autoscaling.setter
182
- def autoscaling(self, value: Optional[pulumi.Input[bool]]):
188
+ def autoscaling(self, value: Optional[pulumi.Input[_builtins.bool]]):
183
189
  pulumi.set(self, "autoscaling", value)
184
190
 
185
- @property
191
+ @_builtins.property
186
192
  @pulumi.getter(name="containerRuntime")
187
- def container_runtime(self) -> Optional[pulumi.Input[str]]:
193
+ def container_runtime(self) -> Optional[pulumi.Input[_builtins.str]]:
188
194
  """
189
195
  The container runtime of the pool.
190
196
 
@@ -193,48 +199,48 @@ class PoolArgs:
193
199
  return pulumi.get(self, "container_runtime")
194
200
 
195
201
  @container_runtime.setter
196
- def container_runtime(self, value: Optional[pulumi.Input[str]]):
202
+ def container_runtime(self, value: Optional[pulumi.Input[_builtins.str]]):
197
203
  pulumi.set(self, "container_runtime", value)
198
204
 
199
- @property
205
+ @_builtins.property
200
206
  @pulumi.getter(name="kubeletArgs")
201
- def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
207
+ def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
202
208
  """
203
209
  The Kubelet arguments to be used by this pool
204
210
  """
205
211
  return pulumi.get(self, "kubelet_args")
206
212
 
207
213
  @kubelet_args.setter
208
- def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
214
+ def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
209
215
  pulumi.set(self, "kubelet_args", value)
210
216
 
211
- @property
217
+ @_builtins.property
212
218
  @pulumi.getter(name="maxSize")
213
- def max_size(self) -> Optional[pulumi.Input[int]]:
219
+ def max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
214
220
  """
215
221
  The maximum size of the pool, used by the autoscaling feature.
216
222
  """
217
223
  return pulumi.get(self, "max_size")
218
224
 
219
225
  @max_size.setter
220
- def max_size(self, value: Optional[pulumi.Input[int]]):
226
+ def max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
221
227
  pulumi.set(self, "max_size", value)
222
228
 
223
- @property
229
+ @_builtins.property
224
230
  @pulumi.getter(name="minSize")
225
- def min_size(self) -> Optional[pulumi.Input[int]]:
231
+ def min_size(self) -> Optional[pulumi.Input[_builtins.int]]:
226
232
  """
227
233
  The minimum size of the pool, used by the autoscaling feature.
228
234
  """
229
235
  return pulumi.get(self, "min_size")
230
236
 
231
237
  @min_size.setter
232
- def min_size(self, value: Optional[pulumi.Input[int]]):
238
+ def min_size(self, value: Optional[pulumi.Input[_builtins.int]]):
233
239
  pulumi.set(self, "min_size", value)
234
240
 
235
- @property
241
+ @_builtins.property
236
242
  @pulumi.getter
237
- def name(self) -> Optional[pulumi.Input[str]]:
243
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
238
244
  """
239
245
  The name for the pool.
240
246
 
@@ -243,12 +249,12 @@ class PoolArgs:
243
249
  return pulumi.get(self, "name")
244
250
 
245
251
  @name.setter
246
- def name(self, value: Optional[pulumi.Input[str]]):
252
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
247
253
  pulumi.set(self, "name", value)
248
254
 
249
- @property
255
+ @_builtins.property
250
256
  @pulumi.getter(name="placementGroupId")
251
- def placement_group_id(self) -> Optional[pulumi.Input[str]]:
257
+ def placement_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
252
258
  """
253
259
  The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
254
260
 
@@ -257,12 +263,12 @@ class PoolArgs:
257
263
  return pulumi.get(self, "placement_group_id")
258
264
 
259
265
  @placement_group_id.setter
260
- def placement_group_id(self, value: Optional[pulumi.Input[str]]):
266
+ def placement_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
261
267
  pulumi.set(self, "placement_group_id", value)
262
268
 
263
- @property
269
+ @_builtins.property
264
270
  @pulumi.getter(name="publicIpDisabled")
265
- def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
271
+ def public_ip_disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
266
272
  """
267
273
  Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
268
274
 
@@ -271,60 +277,74 @@ class PoolArgs:
271
277
  return pulumi.get(self, "public_ip_disabled")
272
278
 
273
279
  @public_ip_disabled.setter
274
- def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
280
+ def public_ip_disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
275
281
  pulumi.set(self, "public_ip_disabled", value)
276
282
 
277
- @property
283
+ @_builtins.property
278
284
  @pulumi.getter
279
- def region(self) -> Optional[pulumi.Input[str]]:
285
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
280
286
  """
281
287
  `region`) The region in which the pool should be created.
282
288
  """
283
289
  return pulumi.get(self, "region")
284
290
 
285
291
  @region.setter
286
- def region(self, value: Optional[pulumi.Input[str]]):
292
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
287
293
  pulumi.set(self, "region", value)
288
294
 
289
- @property
295
+ @_builtins.property
290
296
  @pulumi.getter(name="rootVolumeSizeInGb")
291
- def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
297
+ def root_volume_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
292
298
  """
293
299
  The size of the system volume of the nodes in gigabyte
294
300
  """
295
301
  return pulumi.get(self, "root_volume_size_in_gb")
296
302
 
297
303
  @root_volume_size_in_gb.setter
298
- def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
304
+ def root_volume_size_in_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
299
305
  pulumi.set(self, "root_volume_size_in_gb", value)
300
306
 
301
- @property
307
+ @_builtins.property
302
308
  @pulumi.getter(name="rootVolumeType")
303
- def root_volume_type(self) -> Optional[pulumi.Input[str]]:
309
+ def root_volume_type(self) -> Optional[pulumi.Input[_builtins.str]]:
304
310
  """
305
311
  System volume type of the nodes composing the pool
306
312
  """
307
313
  return pulumi.get(self, "root_volume_type")
308
314
 
309
315
  @root_volume_type.setter
310
- def root_volume_type(self, value: Optional[pulumi.Input[str]]):
316
+ def root_volume_type(self, value: Optional[pulumi.Input[_builtins.str]]):
311
317
  pulumi.set(self, "root_volume_type", value)
312
318
 
313
- @property
319
+ @_builtins.property
320
+ @pulumi.getter(name="securityGroupId")
321
+ def security_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
322
+ """
323
+ The ID of the security group
324
+
325
+ > **Important:** Updates to this field will recreate a new resource.
326
+ """
327
+ return pulumi.get(self, "security_group_id")
328
+
329
+ @security_group_id.setter
330
+ def security_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
331
+ pulumi.set(self, "security_group_id", value)
332
+
333
+ @_builtins.property
314
334
  @pulumi.getter
315
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
335
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
316
336
  """
317
337
  The tags associated with the pool.
318
338
 
319
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
339
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
320
340
  """
321
341
  return pulumi.get(self, "tags")
322
342
 
323
343
  @tags.setter
324
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
344
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
325
345
  pulumi.set(self, "tags", value)
326
346
 
327
- @property
347
+ @_builtins.property
328
348
  @pulumi.getter(name="upgradePolicy")
329
349
  def upgrade_policy(self) -> Optional[pulumi.Input['PoolUpgradePolicyArgs']]:
330
350
  """
@@ -336,21 +356,21 @@ class PoolArgs:
336
356
  def upgrade_policy(self, value: Optional[pulumi.Input['PoolUpgradePolicyArgs']]):
337
357
  pulumi.set(self, "upgrade_policy", value)
338
358
 
339
- @property
359
+ @_builtins.property
340
360
  @pulumi.getter(name="waitForPoolReady")
341
- def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
361
+ def wait_for_pool_ready(self) -> Optional[pulumi.Input[_builtins.bool]]:
342
362
  """
343
363
  Whether to wait for the pool to be ready.
344
364
  """
345
365
  return pulumi.get(self, "wait_for_pool_ready")
346
366
 
347
367
  @wait_for_pool_ready.setter
348
- def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
368
+ def wait_for_pool_ready(self, value: Optional[pulumi.Input[_builtins.bool]]):
349
369
  pulumi.set(self, "wait_for_pool_ready", value)
350
370
 
351
- @property
371
+ @_builtins.property
352
372
  @pulumi.getter
353
- def zone(self) -> Optional[pulumi.Input[str]]:
373
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
354
374
  """
355
375
  `zone`) The zone in which the pool should be created.
356
376
 
@@ -359,81 +379,85 @@ class PoolArgs:
359
379
  return pulumi.get(self, "zone")
360
380
 
361
381
  @zone.setter
362
- def zone(self, value: Optional[pulumi.Input[str]]):
382
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
363
383
  pulumi.set(self, "zone", value)
364
384
 
365
385
 
366
386
  @pulumi.input_type
367
387
  class _PoolState:
368
388
  def __init__(__self__, *,
369
- autohealing: Optional[pulumi.Input[bool]] = None,
370
- autoscaling: Optional[pulumi.Input[bool]] = None,
371
- cluster_id: Optional[pulumi.Input[str]] = None,
372
- container_runtime: Optional[pulumi.Input[str]] = None,
373
- created_at: Optional[pulumi.Input[str]] = None,
374
- current_size: Optional[pulumi.Input[int]] = None,
375
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
376
- max_size: Optional[pulumi.Input[int]] = None,
377
- min_size: Optional[pulumi.Input[int]] = None,
378
- name: Optional[pulumi.Input[str]] = None,
379
- node_type: Optional[pulumi.Input[str]] = None,
389
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
390
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
391
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
392
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
393
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
394
+ current_size: Optional[pulumi.Input[_builtins.int]] = None,
395
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
396
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
397
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
398
+ name: Optional[pulumi.Input[_builtins.str]] = None,
399
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
380
400
  nodes: Optional[pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]]] = None,
381
- placement_group_id: Optional[pulumi.Input[str]] = None,
382
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
383
- region: Optional[pulumi.Input[str]] = None,
384
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
385
- root_volume_type: Optional[pulumi.Input[str]] = None,
386
- size: Optional[pulumi.Input[int]] = None,
387
- status: Optional[pulumi.Input[str]] = None,
388
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
389
- updated_at: Optional[pulumi.Input[str]] = None,
401
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
402
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
403
+ region: Optional[pulumi.Input[_builtins.str]] = None,
404
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
405
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
406
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
407
+ size: Optional[pulumi.Input[_builtins.int]] = None,
408
+ status: Optional[pulumi.Input[_builtins.str]] = None,
409
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
410
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
390
411
  upgrade_policy: Optional[pulumi.Input['PoolUpgradePolicyArgs']] = None,
391
- version: Optional[pulumi.Input[str]] = None,
392
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
393
- zone: Optional[pulumi.Input[str]] = None):
412
+ version: Optional[pulumi.Input[_builtins.str]] = None,
413
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
414
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
394
415
  """
395
416
  Input properties used for looking up and filtering Pool resources.
396
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
397
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
417
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
418
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
398
419
 
399
420
  > **Important:** When enabled, an update of the `size` will not be taken into account.
400
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
401
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
421
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
422
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
402
423
 
403
424
  > **Important:** Updates to this field will recreate a new resource.
404
- :param pulumi.Input[str] created_at: The creation date of the pool.
405
- :param pulumi.Input[int] current_size: The actual size of the pool
406
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
407
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
408
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
409
- :param pulumi.Input[str] name: The name for the pool.
425
+ :param pulumi.Input[_builtins.str] created_at: The creation date of the pool.
426
+ :param pulumi.Input[_builtins.int] current_size: The actual size of the pool
427
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
428
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
429
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
430
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
410
431
 
411
432
  > **Important:** Updates to this field will recreate a new resource.
412
- :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
433
+ :param pulumi.Input[_builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
413
434
 
414
435
  > **Important:** Updates to this field will recreate a new resource.
415
436
  :param pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]] nodes: (List of) The nodes in the default pool.
416
- :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
437
+ :param pulumi.Input[_builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
438
+
439
+ > **Important:** Updates to this field will recreate a new resource.
440
+ :param pulumi.Input[_builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
417
441
 
418
442
  > **Important:** Updates to this field will recreate a new resource.
419
- :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
443
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
444
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
445
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
446
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
420
447
 
421
448
  > **Important:** Updates to this field will recreate a new resource.
422
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
423
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
424
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
425
- :param pulumi.Input[int] size: The size of the pool.
449
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
426
450
 
427
451
  > **Important:** This field will only be used at creation if autoscaling is enabled.
428
- :param pulumi.Input[str] status: The status of the node.
429
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
452
+ :param pulumi.Input[_builtins.str] status: The status of the node.
453
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
430
454
 
431
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
432
- :param pulumi.Input[str] updated_at: The last update date of the pool.
455
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
456
+ :param pulumi.Input[_builtins.str] updated_at: The last update date of the pool.
433
457
  :param pulumi.Input['PoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
434
- :param pulumi.Input[str] version: The version of the pool.
435
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
436
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
458
+ :param pulumi.Input[_builtins.str] version: The version of the pool.
459
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
460
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
437
461
 
438
462
  > **Important:** Updates to this field will recreate a new resource.
439
463
  """
@@ -471,6 +495,8 @@ class _PoolState:
471
495
  pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
472
496
  if root_volume_type is not None:
473
497
  pulumi.set(__self__, "root_volume_type", root_volume_type)
498
+ if security_group_id is not None:
499
+ pulumi.set(__self__, "security_group_id", security_group_id)
474
500
  if size is not None:
475
501
  pulumi.set(__self__, "size", size)
476
502
  if status is not None:
@@ -488,21 +514,21 @@ class _PoolState:
488
514
  if zone is not None:
489
515
  pulumi.set(__self__, "zone", zone)
490
516
 
491
- @property
517
+ @_builtins.property
492
518
  @pulumi.getter
493
- def autohealing(self) -> Optional[pulumi.Input[bool]]:
519
+ def autohealing(self) -> Optional[pulumi.Input[_builtins.bool]]:
494
520
  """
495
521
  Enables the autohealing feature for this pool.
496
522
  """
497
523
  return pulumi.get(self, "autohealing")
498
524
 
499
525
  @autohealing.setter
500
- def autohealing(self, value: Optional[pulumi.Input[bool]]):
526
+ def autohealing(self, value: Optional[pulumi.Input[_builtins.bool]]):
501
527
  pulumi.set(self, "autohealing", value)
502
528
 
503
- @property
529
+ @_builtins.property
504
530
  @pulumi.getter
505
- def autoscaling(self) -> Optional[pulumi.Input[bool]]:
531
+ def autoscaling(self) -> Optional[pulumi.Input[_builtins.bool]]:
506
532
  """
507
533
  Enables the autoscaling feature for this pool.
508
534
 
@@ -511,24 +537,24 @@ class _PoolState:
511
537
  return pulumi.get(self, "autoscaling")
512
538
 
513
539
  @autoscaling.setter
514
- def autoscaling(self, value: Optional[pulumi.Input[bool]]):
540
+ def autoscaling(self, value: Optional[pulumi.Input[_builtins.bool]]):
515
541
  pulumi.set(self, "autoscaling", value)
516
542
 
517
- @property
543
+ @_builtins.property
518
544
  @pulumi.getter(name="clusterId")
519
- def cluster_id(self) -> Optional[pulumi.Input[str]]:
545
+ def cluster_id(self) -> Optional[pulumi.Input[_builtins.str]]:
520
546
  """
521
547
  The ID of the Kubernetes cluster on which this pool will be created.
522
548
  """
523
549
  return pulumi.get(self, "cluster_id")
524
550
 
525
551
  @cluster_id.setter
526
- def cluster_id(self, value: Optional[pulumi.Input[str]]):
552
+ def cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
527
553
  pulumi.set(self, "cluster_id", value)
528
554
 
529
- @property
555
+ @_builtins.property
530
556
  @pulumi.getter(name="containerRuntime")
531
- def container_runtime(self) -> Optional[pulumi.Input[str]]:
557
+ def container_runtime(self) -> Optional[pulumi.Input[_builtins.str]]:
532
558
  """
533
559
  The container runtime of the pool.
534
560
 
@@ -537,72 +563,72 @@ class _PoolState:
537
563
  return pulumi.get(self, "container_runtime")
538
564
 
539
565
  @container_runtime.setter
540
- def container_runtime(self, value: Optional[pulumi.Input[str]]):
566
+ def container_runtime(self, value: Optional[pulumi.Input[_builtins.str]]):
541
567
  pulumi.set(self, "container_runtime", value)
542
568
 
543
- @property
569
+ @_builtins.property
544
570
  @pulumi.getter(name="createdAt")
545
- def created_at(self) -> Optional[pulumi.Input[str]]:
571
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
546
572
  """
547
573
  The creation date of the pool.
548
574
  """
549
575
  return pulumi.get(self, "created_at")
550
576
 
551
577
  @created_at.setter
552
- def created_at(self, value: Optional[pulumi.Input[str]]):
578
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
553
579
  pulumi.set(self, "created_at", value)
554
580
 
555
- @property
581
+ @_builtins.property
556
582
  @pulumi.getter(name="currentSize")
557
- def current_size(self) -> Optional[pulumi.Input[int]]:
583
+ def current_size(self) -> Optional[pulumi.Input[_builtins.int]]:
558
584
  """
559
585
  The actual size of the pool
560
586
  """
561
587
  return pulumi.get(self, "current_size")
562
588
 
563
589
  @current_size.setter
564
- def current_size(self, value: Optional[pulumi.Input[int]]):
590
+ def current_size(self, value: Optional[pulumi.Input[_builtins.int]]):
565
591
  pulumi.set(self, "current_size", value)
566
592
 
567
- @property
593
+ @_builtins.property
568
594
  @pulumi.getter(name="kubeletArgs")
569
- def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
595
+ def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
570
596
  """
571
597
  The Kubelet arguments to be used by this pool
572
598
  """
573
599
  return pulumi.get(self, "kubelet_args")
574
600
 
575
601
  @kubelet_args.setter
576
- def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
602
+ def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
577
603
  pulumi.set(self, "kubelet_args", value)
578
604
 
579
- @property
605
+ @_builtins.property
580
606
  @pulumi.getter(name="maxSize")
581
- def max_size(self) -> Optional[pulumi.Input[int]]:
607
+ def max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
582
608
  """
583
609
  The maximum size of the pool, used by the autoscaling feature.
584
610
  """
585
611
  return pulumi.get(self, "max_size")
586
612
 
587
613
  @max_size.setter
588
- def max_size(self, value: Optional[pulumi.Input[int]]):
614
+ def max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
589
615
  pulumi.set(self, "max_size", value)
590
616
 
591
- @property
617
+ @_builtins.property
592
618
  @pulumi.getter(name="minSize")
593
- def min_size(self) -> Optional[pulumi.Input[int]]:
619
+ def min_size(self) -> Optional[pulumi.Input[_builtins.int]]:
594
620
  """
595
621
  The minimum size of the pool, used by the autoscaling feature.
596
622
  """
597
623
  return pulumi.get(self, "min_size")
598
624
 
599
625
  @min_size.setter
600
- def min_size(self, value: Optional[pulumi.Input[int]]):
626
+ def min_size(self, value: Optional[pulumi.Input[_builtins.int]]):
601
627
  pulumi.set(self, "min_size", value)
602
628
 
603
- @property
629
+ @_builtins.property
604
630
  @pulumi.getter
605
- def name(self) -> Optional[pulumi.Input[str]]:
631
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
606
632
  """
607
633
  The name for the pool.
608
634
 
@@ -611,12 +637,12 @@ class _PoolState:
611
637
  return pulumi.get(self, "name")
612
638
 
613
639
  @name.setter
614
- def name(self, value: Optional[pulumi.Input[str]]):
640
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
615
641
  pulumi.set(self, "name", value)
616
642
 
617
- @property
643
+ @_builtins.property
618
644
  @pulumi.getter(name="nodeType")
619
- def node_type(self) -> Optional[pulumi.Input[str]]:
645
+ def node_type(self) -> Optional[pulumi.Input[_builtins.str]]:
620
646
  """
621
647
  The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
622
648
 
@@ -625,10 +651,10 @@ class _PoolState:
625
651
  return pulumi.get(self, "node_type")
626
652
 
627
653
  @node_type.setter
628
- def node_type(self, value: Optional[pulumi.Input[str]]):
654
+ def node_type(self, value: Optional[pulumi.Input[_builtins.str]]):
629
655
  pulumi.set(self, "node_type", value)
630
656
 
631
- @property
657
+ @_builtins.property
632
658
  @pulumi.getter
633
659
  def nodes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]]]:
634
660
  """
@@ -640,9 +666,9 @@ class _PoolState:
640
666
  def nodes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]]]):
641
667
  pulumi.set(self, "nodes", value)
642
668
 
643
- @property
669
+ @_builtins.property
644
670
  @pulumi.getter(name="placementGroupId")
645
- def placement_group_id(self) -> Optional[pulumi.Input[str]]:
671
+ def placement_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
646
672
  """
647
673
  The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
648
674
 
@@ -651,12 +677,12 @@ class _PoolState:
651
677
  return pulumi.get(self, "placement_group_id")
652
678
 
653
679
  @placement_group_id.setter
654
- def placement_group_id(self, value: Optional[pulumi.Input[str]]):
680
+ def placement_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
655
681
  pulumi.set(self, "placement_group_id", value)
656
682
 
657
- @property
683
+ @_builtins.property
658
684
  @pulumi.getter(name="publicIpDisabled")
659
- def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
685
+ def public_ip_disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
660
686
  """
661
687
  Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
662
688
 
@@ -665,48 +691,62 @@ class _PoolState:
665
691
  return pulumi.get(self, "public_ip_disabled")
666
692
 
667
693
  @public_ip_disabled.setter
668
- def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
694
+ def public_ip_disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
669
695
  pulumi.set(self, "public_ip_disabled", value)
670
696
 
671
- @property
697
+ @_builtins.property
672
698
  @pulumi.getter
673
- def region(self) -> Optional[pulumi.Input[str]]:
699
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
674
700
  """
675
701
  `region`) The region in which the pool should be created.
676
702
  """
677
703
  return pulumi.get(self, "region")
678
704
 
679
705
  @region.setter
680
- def region(self, value: Optional[pulumi.Input[str]]):
706
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
681
707
  pulumi.set(self, "region", value)
682
708
 
683
- @property
709
+ @_builtins.property
684
710
  @pulumi.getter(name="rootVolumeSizeInGb")
685
- def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
711
+ def root_volume_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
686
712
  """
687
713
  The size of the system volume of the nodes in gigabyte
688
714
  """
689
715
  return pulumi.get(self, "root_volume_size_in_gb")
690
716
 
691
717
  @root_volume_size_in_gb.setter
692
- def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
718
+ def root_volume_size_in_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
693
719
  pulumi.set(self, "root_volume_size_in_gb", value)
694
720
 
695
- @property
721
+ @_builtins.property
696
722
  @pulumi.getter(name="rootVolumeType")
697
- def root_volume_type(self) -> Optional[pulumi.Input[str]]:
723
+ def root_volume_type(self) -> Optional[pulumi.Input[_builtins.str]]:
698
724
  """
699
725
  System volume type of the nodes composing the pool
700
726
  """
701
727
  return pulumi.get(self, "root_volume_type")
702
728
 
703
729
  @root_volume_type.setter
704
- def root_volume_type(self, value: Optional[pulumi.Input[str]]):
730
+ def root_volume_type(self, value: Optional[pulumi.Input[_builtins.str]]):
705
731
  pulumi.set(self, "root_volume_type", value)
706
732
 
707
- @property
733
+ @_builtins.property
734
+ @pulumi.getter(name="securityGroupId")
735
+ def security_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
736
+ """
737
+ The ID of the security group
738
+
739
+ > **Important:** Updates to this field will recreate a new resource.
740
+ """
741
+ return pulumi.get(self, "security_group_id")
742
+
743
+ @security_group_id.setter
744
+ def security_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
745
+ pulumi.set(self, "security_group_id", value)
746
+
747
+ @_builtins.property
708
748
  @pulumi.getter
709
- def size(self) -> Optional[pulumi.Input[int]]:
749
+ def size(self) -> Optional[pulumi.Input[_builtins.int]]:
710
750
  """
711
751
  The size of the pool.
712
752
 
@@ -715,48 +755,48 @@ class _PoolState:
715
755
  return pulumi.get(self, "size")
716
756
 
717
757
  @size.setter
718
- def size(self, value: Optional[pulumi.Input[int]]):
758
+ def size(self, value: Optional[pulumi.Input[_builtins.int]]):
719
759
  pulumi.set(self, "size", value)
720
760
 
721
- @property
761
+ @_builtins.property
722
762
  @pulumi.getter
723
- def status(self) -> Optional[pulumi.Input[str]]:
763
+ def status(self) -> Optional[pulumi.Input[_builtins.str]]:
724
764
  """
725
765
  The status of the node.
726
766
  """
727
767
  return pulumi.get(self, "status")
728
768
 
729
769
  @status.setter
730
- def status(self, value: Optional[pulumi.Input[str]]):
770
+ def status(self, value: Optional[pulumi.Input[_builtins.str]]):
731
771
  pulumi.set(self, "status", value)
732
772
 
733
- @property
773
+ @_builtins.property
734
774
  @pulumi.getter
735
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
775
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
736
776
  """
737
777
  The tags associated with the pool.
738
778
 
739
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
779
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
740
780
  """
741
781
  return pulumi.get(self, "tags")
742
782
 
743
783
  @tags.setter
744
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
784
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
745
785
  pulumi.set(self, "tags", value)
746
786
 
747
- @property
787
+ @_builtins.property
748
788
  @pulumi.getter(name="updatedAt")
749
- def updated_at(self) -> Optional[pulumi.Input[str]]:
789
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
750
790
  """
751
791
  The last update date of the pool.
752
792
  """
753
793
  return pulumi.get(self, "updated_at")
754
794
 
755
795
  @updated_at.setter
756
- def updated_at(self, value: Optional[pulumi.Input[str]]):
796
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
757
797
  pulumi.set(self, "updated_at", value)
758
798
 
759
- @property
799
+ @_builtins.property
760
800
  @pulumi.getter(name="upgradePolicy")
761
801
  def upgrade_policy(self) -> Optional[pulumi.Input['PoolUpgradePolicyArgs']]:
762
802
  """
@@ -768,33 +808,33 @@ class _PoolState:
768
808
  def upgrade_policy(self, value: Optional[pulumi.Input['PoolUpgradePolicyArgs']]):
769
809
  pulumi.set(self, "upgrade_policy", value)
770
810
 
771
- @property
811
+ @_builtins.property
772
812
  @pulumi.getter
773
- def version(self) -> Optional[pulumi.Input[str]]:
813
+ def version(self) -> Optional[pulumi.Input[_builtins.str]]:
774
814
  """
775
815
  The version of the pool.
776
816
  """
777
817
  return pulumi.get(self, "version")
778
818
 
779
819
  @version.setter
780
- def version(self, value: Optional[pulumi.Input[str]]):
820
+ def version(self, value: Optional[pulumi.Input[_builtins.str]]):
781
821
  pulumi.set(self, "version", value)
782
822
 
783
- @property
823
+ @_builtins.property
784
824
  @pulumi.getter(name="waitForPoolReady")
785
- def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
825
+ def wait_for_pool_ready(self) -> Optional[pulumi.Input[_builtins.bool]]:
786
826
  """
787
827
  Whether to wait for the pool to be ready.
788
828
  """
789
829
  return pulumi.get(self, "wait_for_pool_ready")
790
830
 
791
831
  @wait_for_pool_ready.setter
792
- def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
832
+ def wait_for_pool_ready(self, value: Optional[pulumi.Input[_builtins.bool]]):
793
833
  pulumi.set(self, "wait_for_pool_ready", value)
794
834
 
795
- @property
835
+ @_builtins.property
796
836
  @pulumi.getter
797
- def zone(self) -> Optional[pulumi.Input[str]]:
837
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
798
838
  """
799
839
  `zone`) The zone in which the pool should be created.
800
840
 
@@ -803,34 +843,36 @@ class _PoolState:
803
843
  return pulumi.get(self, "zone")
804
844
 
805
845
  @zone.setter
806
- def zone(self, value: Optional[pulumi.Input[str]]):
846
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
807
847
  pulumi.set(self, "zone", value)
808
848
 
809
849
 
850
+ @pulumi.type_token("scaleway:kubernetes/pool:Pool")
810
851
  class Pool(pulumi.CustomResource):
811
852
  @overload
812
853
  def __init__(__self__,
813
854
  resource_name: str,
814
855
  opts: Optional[pulumi.ResourceOptions] = None,
815
- autohealing: Optional[pulumi.Input[bool]] = None,
816
- autoscaling: Optional[pulumi.Input[bool]] = None,
817
- cluster_id: Optional[pulumi.Input[str]] = None,
818
- container_runtime: Optional[pulumi.Input[str]] = None,
819
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
820
- max_size: Optional[pulumi.Input[int]] = None,
821
- min_size: Optional[pulumi.Input[int]] = None,
822
- name: Optional[pulumi.Input[str]] = None,
823
- node_type: Optional[pulumi.Input[str]] = None,
824
- placement_group_id: Optional[pulumi.Input[str]] = None,
825
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
826
- region: Optional[pulumi.Input[str]] = None,
827
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
828
- root_volume_type: Optional[pulumi.Input[str]] = None,
829
- size: Optional[pulumi.Input[int]] = None,
830
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
856
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
857
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
858
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
859
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
860
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
861
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
862
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
863
+ name: Optional[pulumi.Input[_builtins.str]] = None,
864
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
865
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
866
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
867
+ region: Optional[pulumi.Input[_builtins.str]] = None,
868
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
869
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
870
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
871
+ size: Optional[pulumi.Input[_builtins.int]] = None,
872
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
831
873
  upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
832
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
833
- zone: Optional[pulumi.Input[str]] = None,
874
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
875
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
834
876
  __props__=None):
835
877
  """
836
878
  ## Import
@@ -845,41 +887,44 @@ class Pool(pulumi.CustomResource):
845
887
 
846
888
  :param str resource_name: The name of the resource.
847
889
  :param pulumi.ResourceOptions opts: Options for the resource.
848
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
849
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
890
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
891
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
850
892
 
851
893
  > **Important:** When enabled, an update of the `size` will not be taken into account.
852
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
853
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
894
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
895
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
854
896
 
855
897
  > **Important:** Updates to this field will recreate a new resource.
856
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
857
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
858
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
859
- :param pulumi.Input[str] name: The name for the pool.
898
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
899
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
900
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
901
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
860
902
 
861
903
  > **Important:** Updates to this field will recreate a new resource.
862
- :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
904
+ :param pulumi.Input[_builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
863
905
 
864
906
  > **Important:** Updates to this field will recreate a new resource.
865
- :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
907
+ :param pulumi.Input[_builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
866
908
 
867
909
  > **Important:** Updates to this field will recreate a new resource.
868
- :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
910
+ :param pulumi.Input[_builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
869
911
 
870
912
  > **Important:** Updates to this field will recreate a new resource.
871
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
872
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
873
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
874
- :param pulumi.Input[int] size: The size of the pool.
913
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
914
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
915
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
916
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
917
+
918
+ > **Important:** Updates to this field will recreate a new resource.
919
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
875
920
 
876
921
  > **Important:** This field will only be used at creation if autoscaling is enabled.
877
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
922
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
878
923
 
879
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
924
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
880
925
  :param pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
881
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
882
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
926
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
927
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
883
928
 
884
929
  > **Important:** Updates to this field will recreate a new resource.
885
930
  """
@@ -915,25 +960,26 @@ class Pool(pulumi.CustomResource):
915
960
  def _internal_init(__self__,
916
961
  resource_name: str,
917
962
  opts: Optional[pulumi.ResourceOptions] = None,
918
- autohealing: Optional[pulumi.Input[bool]] = None,
919
- autoscaling: Optional[pulumi.Input[bool]] = None,
920
- cluster_id: Optional[pulumi.Input[str]] = None,
921
- container_runtime: Optional[pulumi.Input[str]] = None,
922
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
923
- max_size: Optional[pulumi.Input[int]] = None,
924
- min_size: Optional[pulumi.Input[int]] = None,
925
- name: Optional[pulumi.Input[str]] = None,
926
- node_type: Optional[pulumi.Input[str]] = None,
927
- placement_group_id: Optional[pulumi.Input[str]] = None,
928
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
929
- region: Optional[pulumi.Input[str]] = None,
930
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
931
- root_volume_type: Optional[pulumi.Input[str]] = None,
932
- size: Optional[pulumi.Input[int]] = None,
933
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
963
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
964
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
965
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
966
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
967
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
968
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
969
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
970
+ name: Optional[pulumi.Input[_builtins.str]] = None,
971
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
972
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
973
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
974
+ region: Optional[pulumi.Input[_builtins.str]] = None,
975
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
976
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
977
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
978
+ size: Optional[pulumi.Input[_builtins.int]] = None,
979
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
934
980
  upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
935
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
936
- zone: Optional[pulumi.Input[str]] = None,
981
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
982
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
937
983
  __props__=None):
938
984
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
939
985
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -961,6 +1007,7 @@ class Pool(pulumi.CustomResource):
961
1007
  __props__.__dict__["region"] = region
962
1008
  __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
963
1009
  __props__.__dict__["root_volume_type"] = root_volume_type
1010
+ __props__.__dict__["security_group_id"] = security_group_id
964
1011
  if size is None and not opts.urn:
965
1012
  raise TypeError("Missing required property 'size'")
966
1013
  __props__.__dict__["size"] = size
@@ -986,31 +1033,32 @@ class Pool(pulumi.CustomResource):
986
1033
  def get(resource_name: str,
987
1034
  id: pulumi.Input[str],
988
1035
  opts: Optional[pulumi.ResourceOptions] = None,
989
- autohealing: Optional[pulumi.Input[bool]] = None,
990
- autoscaling: Optional[pulumi.Input[bool]] = None,
991
- cluster_id: Optional[pulumi.Input[str]] = None,
992
- container_runtime: Optional[pulumi.Input[str]] = None,
993
- created_at: Optional[pulumi.Input[str]] = None,
994
- current_size: Optional[pulumi.Input[int]] = None,
995
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
996
- max_size: Optional[pulumi.Input[int]] = None,
997
- min_size: Optional[pulumi.Input[int]] = None,
998
- name: Optional[pulumi.Input[str]] = None,
999
- node_type: Optional[pulumi.Input[str]] = None,
1036
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
1037
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
1038
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
1039
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
1040
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
1041
+ current_size: Optional[pulumi.Input[_builtins.int]] = None,
1042
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
1043
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
1044
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
1045
+ name: Optional[pulumi.Input[_builtins.str]] = None,
1046
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
1000
1047
  nodes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PoolNodeArgs', 'PoolNodeArgsDict']]]]] = None,
1001
- placement_group_id: Optional[pulumi.Input[str]] = None,
1002
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
1003
- region: Optional[pulumi.Input[str]] = None,
1004
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
1005
- root_volume_type: Optional[pulumi.Input[str]] = None,
1006
- size: Optional[pulumi.Input[int]] = None,
1007
- status: Optional[pulumi.Input[str]] = None,
1008
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1009
- updated_at: Optional[pulumi.Input[str]] = None,
1048
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
1049
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
1050
+ region: Optional[pulumi.Input[_builtins.str]] = None,
1051
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
1052
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
1053
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
1054
+ size: Optional[pulumi.Input[_builtins.int]] = None,
1055
+ status: Optional[pulumi.Input[_builtins.str]] = None,
1056
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1057
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
1010
1058
  upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
1011
- version: Optional[pulumi.Input[str]] = None,
1012
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
1013
- zone: Optional[pulumi.Input[str]] = None) -> 'Pool':
1059
+ version: Optional[pulumi.Input[_builtins.str]] = None,
1060
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
1061
+ zone: Optional[pulumi.Input[_builtins.str]] = None) -> 'Pool':
1014
1062
  """
1015
1063
  Get an existing Pool resource's state with the given name, id, and optional extra
1016
1064
  properties used to qualify the lookup.
@@ -1018,47 +1066,50 @@ class Pool(pulumi.CustomResource):
1018
1066
  :param str resource_name: The unique name of the resulting resource.
1019
1067
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1020
1068
  :param pulumi.ResourceOptions opts: Options for the resource.
1021
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
1022
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
1069
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
1070
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
1023
1071
 
1024
1072
  > **Important:** When enabled, an update of the `size` will not be taken into account.
1025
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
1026
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
1073
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
1074
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
1027
1075
 
1028
1076
  > **Important:** Updates to this field will recreate a new resource.
1029
- :param pulumi.Input[str] created_at: The creation date of the pool.
1030
- :param pulumi.Input[int] current_size: The actual size of the pool
1031
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
1032
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
1033
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
1034
- :param pulumi.Input[str] name: The name for the pool.
1077
+ :param pulumi.Input[_builtins.str] created_at: The creation date of the pool.
1078
+ :param pulumi.Input[_builtins.int] current_size: The actual size of the pool
1079
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
1080
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
1081
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
1082
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
1035
1083
 
1036
1084
  > **Important:** Updates to this field will recreate a new resource.
1037
- :param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
1085
+ :param pulumi.Input[_builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
1038
1086
 
1039
1087
  > **Important:** Updates to this field will recreate a new resource.
1040
1088
  :param pulumi.Input[Sequence[pulumi.Input[Union['PoolNodeArgs', 'PoolNodeArgsDict']]]] nodes: (List of) The nodes in the default pool.
1041
- :param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
1089
+ :param pulumi.Input[_builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
1090
+
1091
+ > **Important:** Updates to this field will recreate a new resource.
1092
+ :param pulumi.Input[_builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1042
1093
 
1043
1094
  > **Important:** Updates to this field will recreate a new resource.
1044
- :param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1095
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
1096
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
1097
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
1098
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
1045
1099
 
1046
1100
  > **Important:** Updates to this field will recreate a new resource.
1047
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
1048
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
1049
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
1050
- :param pulumi.Input[int] size: The size of the pool.
1101
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
1051
1102
 
1052
1103
  > **Important:** This field will only be used at creation if autoscaling is enabled.
1053
- :param pulumi.Input[str] status: The status of the node.
1054
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
1104
+ :param pulumi.Input[_builtins.str] status: The status of the node.
1105
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
1055
1106
 
1056
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
1057
- :param pulumi.Input[str] updated_at: The last update date of the pool.
1107
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
1108
+ :param pulumi.Input[_builtins.str] updated_at: The last update date of the pool.
1058
1109
  :param pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
1059
- :param pulumi.Input[str] version: The version of the pool.
1060
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
1061
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
1110
+ :param pulumi.Input[_builtins.str] version: The version of the pool.
1111
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
1112
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
1062
1113
 
1063
1114
  > **Important:** Updates to this field will recreate a new resource.
1064
1115
  """
@@ -1083,6 +1134,7 @@ class Pool(pulumi.CustomResource):
1083
1134
  __props__.__dict__["region"] = region
1084
1135
  __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
1085
1136
  __props__.__dict__["root_volume_type"] = root_volume_type
1137
+ __props__.__dict__["security_group_id"] = security_group_id
1086
1138
  __props__.__dict__["size"] = size
1087
1139
  __props__.__dict__["status"] = status
1088
1140
  __props__.__dict__["tags"] = tags
@@ -1093,17 +1145,17 @@ class Pool(pulumi.CustomResource):
1093
1145
  __props__.__dict__["zone"] = zone
1094
1146
  return Pool(resource_name, opts=opts, __props__=__props__)
1095
1147
 
1096
- @property
1148
+ @_builtins.property
1097
1149
  @pulumi.getter
1098
- def autohealing(self) -> pulumi.Output[Optional[bool]]:
1150
+ def autohealing(self) -> pulumi.Output[Optional[_builtins.bool]]:
1099
1151
  """
1100
1152
  Enables the autohealing feature for this pool.
1101
1153
  """
1102
1154
  return pulumi.get(self, "autohealing")
1103
1155
 
1104
- @property
1156
+ @_builtins.property
1105
1157
  @pulumi.getter
1106
- def autoscaling(self) -> pulumi.Output[Optional[bool]]:
1158
+ def autoscaling(self) -> pulumi.Output[Optional[_builtins.bool]]:
1107
1159
  """
1108
1160
  Enables the autoscaling feature for this pool.
1109
1161
 
@@ -1111,17 +1163,17 @@ class Pool(pulumi.CustomResource):
1111
1163
  """
1112
1164
  return pulumi.get(self, "autoscaling")
1113
1165
 
1114
- @property
1166
+ @_builtins.property
1115
1167
  @pulumi.getter(name="clusterId")
1116
- def cluster_id(self) -> pulumi.Output[str]:
1168
+ def cluster_id(self) -> pulumi.Output[_builtins.str]:
1117
1169
  """
1118
1170
  The ID of the Kubernetes cluster on which this pool will be created.
1119
1171
  """
1120
1172
  return pulumi.get(self, "cluster_id")
1121
1173
 
1122
- @property
1174
+ @_builtins.property
1123
1175
  @pulumi.getter(name="containerRuntime")
1124
- def container_runtime(self) -> pulumi.Output[Optional[str]]:
1176
+ def container_runtime(self) -> pulumi.Output[Optional[_builtins.str]]:
1125
1177
  """
1126
1178
  The container runtime of the pool.
1127
1179
 
@@ -1129,49 +1181,49 @@ class Pool(pulumi.CustomResource):
1129
1181
  """
1130
1182
  return pulumi.get(self, "container_runtime")
1131
1183
 
1132
- @property
1184
+ @_builtins.property
1133
1185
  @pulumi.getter(name="createdAt")
1134
- def created_at(self) -> pulumi.Output[str]:
1186
+ def created_at(self) -> pulumi.Output[_builtins.str]:
1135
1187
  """
1136
1188
  The creation date of the pool.
1137
1189
  """
1138
1190
  return pulumi.get(self, "created_at")
1139
1191
 
1140
- @property
1192
+ @_builtins.property
1141
1193
  @pulumi.getter(name="currentSize")
1142
- def current_size(self) -> pulumi.Output[int]:
1194
+ def current_size(self) -> pulumi.Output[_builtins.int]:
1143
1195
  """
1144
1196
  The actual size of the pool
1145
1197
  """
1146
1198
  return pulumi.get(self, "current_size")
1147
1199
 
1148
- @property
1200
+ @_builtins.property
1149
1201
  @pulumi.getter(name="kubeletArgs")
1150
- def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1202
+ def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
1151
1203
  """
1152
1204
  The Kubelet arguments to be used by this pool
1153
1205
  """
1154
1206
  return pulumi.get(self, "kubelet_args")
1155
1207
 
1156
- @property
1208
+ @_builtins.property
1157
1209
  @pulumi.getter(name="maxSize")
1158
- def max_size(self) -> pulumi.Output[int]:
1210
+ def max_size(self) -> pulumi.Output[_builtins.int]:
1159
1211
  """
1160
1212
  The maximum size of the pool, used by the autoscaling feature.
1161
1213
  """
1162
1214
  return pulumi.get(self, "max_size")
1163
1215
 
1164
- @property
1216
+ @_builtins.property
1165
1217
  @pulumi.getter(name="minSize")
1166
- def min_size(self) -> pulumi.Output[Optional[int]]:
1218
+ def min_size(self) -> pulumi.Output[Optional[_builtins.int]]:
1167
1219
  """
1168
1220
  The minimum size of the pool, used by the autoscaling feature.
1169
1221
  """
1170
1222
  return pulumi.get(self, "min_size")
1171
1223
 
1172
- @property
1224
+ @_builtins.property
1173
1225
  @pulumi.getter
1174
- def name(self) -> pulumi.Output[str]:
1226
+ def name(self) -> pulumi.Output[_builtins.str]:
1175
1227
  """
1176
1228
  The name for the pool.
1177
1229
 
@@ -1179,9 +1231,9 @@ class Pool(pulumi.CustomResource):
1179
1231
  """
1180
1232
  return pulumi.get(self, "name")
1181
1233
 
1182
- @property
1234
+ @_builtins.property
1183
1235
  @pulumi.getter(name="nodeType")
1184
- def node_type(self) -> pulumi.Output[str]:
1236
+ def node_type(self) -> pulumi.Output[_builtins.str]:
1185
1237
  """
1186
1238
  The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
1187
1239
 
@@ -1189,7 +1241,7 @@ class Pool(pulumi.CustomResource):
1189
1241
  """
1190
1242
  return pulumi.get(self, "node_type")
1191
1243
 
1192
- @property
1244
+ @_builtins.property
1193
1245
  @pulumi.getter
1194
1246
  def nodes(self) -> pulumi.Output[Sequence['outputs.PoolNode']]:
1195
1247
  """
@@ -1197,9 +1249,9 @@ class Pool(pulumi.CustomResource):
1197
1249
  """
1198
1250
  return pulumi.get(self, "nodes")
1199
1251
 
1200
- @property
1252
+ @_builtins.property
1201
1253
  @pulumi.getter(name="placementGroupId")
1202
- def placement_group_id(self) -> pulumi.Output[Optional[str]]:
1254
+ def placement_group_id(self) -> pulumi.Output[Optional[_builtins.str]]:
1203
1255
  """
1204
1256
  The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
1205
1257
 
@@ -1207,9 +1259,9 @@ class Pool(pulumi.CustomResource):
1207
1259
  """
1208
1260
  return pulumi.get(self, "placement_group_id")
1209
1261
 
1210
- @property
1262
+ @_builtins.property
1211
1263
  @pulumi.getter(name="publicIpDisabled")
1212
- def public_ip_disabled(self) -> pulumi.Output[Optional[bool]]:
1264
+ def public_ip_disabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1213
1265
  """
1214
1266
  Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1215
1267
 
@@ -1217,33 +1269,43 @@ class Pool(pulumi.CustomResource):
1217
1269
  """
1218
1270
  return pulumi.get(self, "public_ip_disabled")
1219
1271
 
1220
- @property
1272
+ @_builtins.property
1221
1273
  @pulumi.getter
1222
- def region(self) -> pulumi.Output[str]:
1274
+ def region(self) -> pulumi.Output[Optional[_builtins.str]]:
1223
1275
  """
1224
1276
  `region`) The region in which the pool should be created.
1225
1277
  """
1226
1278
  return pulumi.get(self, "region")
1227
1279
 
1228
- @property
1280
+ @_builtins.property
1229
1281
  @pulumi.getter(name="rootVolumeSizeInGb")
1230
- def root_volume_size_in_gb(self) -> pulumi.Output[int]:
1282
+ def root_volume_size_in_gb(self) -> pulumi.Output[_builtins.int]:
1231
1283
  """
1232
1284
  The size of the system volume of the nodes in gigabyte
1233
1285
  """
1234
1286
  return pulumi.get(self, "root_volume_size_in_gb")
1235
1287
 
1236
- @property
1288
+ @_builtins.property
1237
1289
  @pulumi.getter(name="rootVolumeType")
1238
- def root_volume_type(self) -> pulumi.Output[str]:
1290
+ def root_volume_type(self) -> pulumi.Output[_builtins.str]:
1239
1291
  """
1240
1292
  System volume type of the nodes composing the pool
1241
1293
  """
1242
1294
  return pulumi.get(self, "root_volume_type")
1243
1295
 
1244
- @property
1296
+ @_builtins.property
1297
+ @pulumi.getter(name="securityGroupId")
1298
+ def security_group_id(self) -> pulumi.Output[_builtins.str]:
1299
+ """
1300
+ The ID of the security group
1301
+
1302
+ > **Important:** Updates to this field will recreate a new resource.
1303
+ """
1304
+ return pulumi.get(self, "security_group_id")
1305
+
1306
+ @_builtins.property
1245
1307
  @pulumi.getter
1246
- def size(self) -> pulumi.Output[int]:
1308
+ def size(self) -> pulumi.Output[_builtins.int]:
1247
1309
  """
1248
1310
  The size of the pool.
1249
1311
 
@@ -1251,33 +1313,33 @@ class Pool(pulumi.CustomResource):
1251
1313
  """
1252
1314
  return pulumi.get(self, "size")
1253
1315
 
1254
- @property
1316
+ @_builtins.property
1255
1317
  @pulumi.getter
1256
- def status(self) -> pulumi.Output[str]:
1318
+ def status(self) -> pulumi.Output[_builtins.str]:
1257
1319
  """
1258
1320
  The status of the node.
1259
1321
  """
1260
1322
  return pulumi.get(self, "status")
1261
1323
 
1262
- @property
1324
+ @_builtins.property
1263
1325
  @pulumi.getter
1264
- def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
1326
+ def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
1265
1327
  """
1266
1328
  The tags associated with the pool.
1267
1329
 
1268
- > Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
1330
+ > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
1269
1331
  """
1270
1332
  return pulumi.get(self, "tags")
1271
1333
 
1272
- @property
1334
+ @_builtins.property
1273
1335
  @pulumi.getter(name="updatedAt")
1274
- def updated_at(self) -> pulumi.Output[str]:
1336
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
1275
1337
  """
1276
1338
  The last update date of the pool.
1277
1339
  """
1278
1340
  return pulumi.get(self, "updated_at")
1279
1341
 
1280
- @property
1342
+ @_builtins.property
1281
1343
  @pulumi.getter(name="upgradePolicy")
1282
1344
  def upgrade_policy(self) -> pulumi.Output['outputs.PoolUpgradePolicy']:
1283
1345
  """
@@ -1285,25 +1347,25 @@ class Pool(pulumi.CustomResource):
1285
1347
  """
1286
1348
  return pulumi.get(self, "upgrade_policy")
1287
1349
 
1288
- @property
1350
+ @_builtins.property
1289
1351
  @pulumi.getter
1290
- def version(self) -> pulumi.Output[str]:
1352
+ def version(self) -> pulumi.Output[_builtins.str]:
1291
1353
  """
1292
1354
  The version of the pool.
1293
1355
  """
1294
1356
  return pulumi.get(self, "version")
1295
1357
 
1296
- @property
1358
+ @_builtins.property
1297
1359
  @pulumi.getter(name="waitForPoolReady")
1298
- def wait_for_pool_ready(self) -> pulumi.Output[Optional[bool]]:
1360
+ def wait_for_pool_ready(self) -> pulumi.Output[Optional[_builtins.bool]]:
1299
1361
  """
1300
1362
  Whether to wait for the pool to be ready.
1301
1363
  """
1302
1364
  return pulumi.get(self, "wait_for_pool_ready")
1303
1365
 
1304
- @property
1366
+ @_builtins.property
1305
1367
  @pulumi.getter
1306
- def zone(self) -> pulumi.Output[str]:
1368
+ def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
1307
1369
  """
1308
1370
  `zone`) The zone in which the pool should be created.
1309
1371