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__ = ['KubernetesNodePoolArgs', 'KubernetesNodePool']
21
21
  @pulumi.input_type
22
22
  class KubernetesNodePoolArgs:
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['KubernetesNodePoolUpgradePolicyArgs']] = 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 KubernetesNodePool 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['KubernetesNodePoolUpgradePolicyArgs'] 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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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 KubernetesNodePoolArgs:
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['KubernetesNodePoolUpgradePolicyArgs']]:
330
350
  """
@@ -336,21 +356,21 @@ class KubernetesNodePoolArgs:
336
356
  def upgrade_policy(self, value: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]):
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 KubernetesNodePoolArgs:
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 _KubernetesNodePoolState:
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['KubernetesNodePoolNodeArgs']]]] = 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['KubernetesNodePoolUpgradePolicyArgs']] = 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 KubernetesNodePool 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['KubernetesNodePoolNodeArgs']]] 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['KubernetesNodePoolUpgradePolicyArgs'] 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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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['KubernetesNodePoolNodeArgs']]]]:
634
660
  """
@@ -640,9 +666,9 @@ class _KubernetesNodePoolState:
640
666
  def nodes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesNodePoolNodeArgs']]]]):
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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 _KubernetesNodePoolState:
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['KubernetesNodePoolUpgradePolicyArgs']]:
762
802
  """
@@ -768,33 +808,33 @@ class _KubernetesNodePoolState:
768
808
  def upgrade_policy(self, value: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']]):
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,13 +843,14 @@ class _KubernetesNodePoolState:
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
 
810
850
  warnings.warn("""scaleway.index/kubernetesnodepool.KubernetesNodePool has been deprecated in favor of scaleway.kubernetes/pool.Pool""", DeprecationWarning)
811
851
 
812
852
 
853
+ @pulumi.type_token("scaleway:index/kubernetesNodePool:KubernetesNodePool")
813
854
  class KubernetesNodePool(pulumi.CustomResource):
814
855
  warnings.warn("""scaleway.index/kubernetesnodepool.KubernetesNodePool has been deprecated in favor of scaleway.kubernetes/pool.Pool""", DeprecationWarning)
815
856
 
@@ -817,25 +858,26 @@ class KubernetesNodePool(pulumi.CustomResource):
817
858
  def __init__(__self__,
818
859
  resource_name: str,
819
860
  opts: Optional[pulumi.ResourceOptions] = None,
820
- autohealing: Optional[pulumi.Input[bool]] = None,
821
- autoscaling: Optional[pulumi.Input[bool]] = None,
822
- cluster_id: Optional[pulumi.Input[str]] = None,
823
- container_runtime: Optional[pulumi.Input[str]] = None,
824
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
825
- max_size: Optional[pulumi.Input[int]] = None,
826
- min_size: Optional[pulumi.Input[int]] = None,
827
- name: Optional[pulumi.Input[str]] = None,
828
- node_type: Optional[pulumi.Input[str]] = None,
829
- placement_group_id: Optional[pulumi.Input[str]] = None,
830
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
831
- region: Optional[pulumi.Input[str]] = None,
832
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
833
- root_volume_type: Optional[pulumi.Input[str]] = None,
834
- size: Optional[pulumi.Input[int]] = None,
835
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
861
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
862
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
863
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
864
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
865
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
866
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
867
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
868
+ name: Optional[pulumi.Input[_builtins.str]] = None,
869
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
870
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
871
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
872
+ region: Optional[pulumi.Input[_builtins.str]] = None,
873
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
874
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
875
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
876
+ size: Optional[pulumi.Input[_builtins.int]] = None,
877
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
836
878
  upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
837
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
838
- zone: Optional[pulumi.Input[str]] = None,
879
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
880
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
839
881
  __props__=None):
840
882
  """
841
883
  ## Import
@@ -850,41 +892,44 @@ class KubernetesNodePool(pulumi.CustomResource):
850
892
 
851
893
  :param str resource_name: The name of the resource.
852
894
  :param pulumi.ResourceOptions opts: Options for the resource.
853
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
854
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
895
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
896
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
855
897
 
856
898
  > **Important:** When enabled, an update of the `size` will not be taken into account.
857
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
858
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
899
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
900
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
859
901
 
860
902
  > **Important:** Updates to this field will recreate a new resource.
861
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
862
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
863
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
864
- :param pulumi.Input[str] name: The name for the pool.
903
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
904
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
905
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
906
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
865
907
 
866
908
  > **Important:** Updates to this field will recreate a new resource.
867
- :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.
909
+ :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.
868
910
 
869
911
  > **Important:** Updates to this field will recreate a new resource.
870
- :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.
912
+ :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.
871
913
 
872
914
  > **Important:** Updates to this field will recreate a new resource.
873
- :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.
915
+ :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.
874
916
 
875
917
  > **Important:** Updates to this field will recreate a new resource.
876
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
877
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
878
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
879
- :param pulumi.Input[int] size: The size of the pool.
918
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
919
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
920
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
921
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
922
+
923
+ > **Important:** Updates to this field will recreate a new resource.
924
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
880
925
 
881
926
  > **Important:** This field will only be used at creation if autoscaling is enabled.
882
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
927
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
883
928
 
884
- > 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"`)
929
+ > 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"`)
885
930
  :param pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
886
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
887
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
931
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
932
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
888
933
 
889
934
  > **Important:** Updates to this field will recreate a new resource.
890
935
  """
@@ -920,25 +965,26 @@ class KubernetesNodePool(pulumi.CustomResource):
920
965
  def _internal_init(__self__,
921
966
  resource_name: str,
922
967
  opts: Optional[pulumi.ResourceOptions] = None,
923
- autohealing: Optional[pulumi.Input[bool]] = None,
924
- autoscaling: Optional[pulumi.Input[bool]] = None,
925
- cluster_id: Optional[pulumi.Input[str]] = None,
926
- container_runtime: Optional[pulumi.Input[str]] = None,
927
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
928
- max_size: Optional[pulumi.Input[int]] = None,
929
- min_size: Optional[pulumi.Input[int]] = None,
930
- name: Optional[pulumi.Input[str]] = None,
931
- node_type: Optional[pulumi.Input[str]] = None,
932
- placement_group_id: Optional[pulumi.Input[str]] = None,
933
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
934
- region: Optional[pulumi.Input[str]] = None,
935
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
936
- root_volume_type: Optional[pulumi.Input[str]] = None,
937
- size: Optional[pulumi.Input[int]] = None,
938
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
968
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
969
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
970
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
971
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
972
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
973
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
974
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
975
+ name: Optional[pulumi.Input[_builtins.str]] = None,
976
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
977
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
978
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
979
+ region: Optional[pulumi.Input[_builtins.str]] = None,
980
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
981
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
982
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
983
+ size: Optional[pulumi.Input[_builtins.int]] = None,
984
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
939
985
  upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
940
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
941
- zone: Optional[pulumi.Input[str]] = None,
986
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
987
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
942
988
  __props__=None):
943
989
  pulumi.log.warn("""KubernetesNodePool is deprecated: scaleway.index/kubernetesnodepool.KubernetesNodePool has been deprecated in favor of scaleway.kubernetes/pool.Pool""")
944
990
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -967,6 +1013,7 @@ class KubernetesNodePool(pulumi.CustomResource):
967
1013
  __props__.__dict__["region"] = region
968
1014
  __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
969
1015
  __props__.__dict__["root_volume_type"] = root_volume_type
1016
+ __props__.__dict__["security_group_id"] = security_group_id
970
1017
  if size is None and not opts.urn:
971
1018
  raise TypeError("Missing required property 'size'")
972
1019
  __props__.__dict__["size"] = size
@@ -990,31 +1037,32 @@ class KubernetesNodePool(pulumi.CustomResource):
990
1037
  def get(resource_name: str,
991
1038
  id: pulumi.Input[str],
992
1039
  opts: Optional[pulumi.ResourceOptions] = None,
993
- autohealing: Optional[pulumi.Input[bool]] = None,
994
- autoscaling: Optional[pulumi.Input[bool]] = None,
995
- cluster_id: Optional[pulumi.Input[str]] = None,
996
- container_runtime: Optional[pulumi.Input[str]] = None,
997
- created_at: Optional[pulumi.Input[str]] = None,
998
- current_size: Optional[pulumi.Input[int]] = None,
999
- kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1000
- max_size: Optional[pulumi.Input[int]] = None,
1001
- min_size: Optional[pulumi.Input[int]] = None,
1002
- name: Optional[pulumi.Input[str]] = None,
1003
- node_type: Optional[pulumi.Input[str]] = None,
1040
+ autohealing: Optional[pulumi.Input[_builtins.bool]] = None,
1041
+ autoscaling: Optional[pulumi.Input[_builtins.bool]] = None,
1042
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
1043
+ container_runtime: Optional[pulumi.Input[_builtins.str]] = None,
1044
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
1045
+ current_size: Optional[pulumi.Input[_builtins.int]] = None,
1046
+ kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
1047
+ max_size: Optional[pulumi.Input[_builtins.int]] = None,
1048
+ min_size: Optional[pulumi.Input[_builtins.int]] = None,
1049
+ name: Optional[pulumi.Input[_builtins.str]] = None,
1050
+ node_type: Optional[pulumi.Input[_builtins.str]] = None,
1004
1051
  nodes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesNodePoolNodeArgs', 'KubernetesNodePoolNodeArgsDict']]]]] = None,
1005
- placement_group_id: Optional[pulumi.Input[str]] = None,
1006
- public_ip_disabled: Optional[pulumi.Input[bool]] = None,
1007
- region: Optional[pulumi.Input[str]] = None,
1008
- root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
1009
- root_volume_type: Optional[pulumi.Input[str]] = None,
1010
- size: Optional[pulumi.Input[int]] = None,
1011
- status: Optional[pulumi.Input[str]] = None,
1012
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1013
- updated_at: Optional[pulumi.Input[str]] = None,
1052
+ placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
1053
+ public_ip_disabled: Optional[pulumi.Input[_builtins.bool]] = None,
1054
+ region: Optional[pulumi.Input[_builtins.str]] = None,
1055
+ root_volume_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
1056
+ root_volume_type: Optional[pulumi.Input[_builtins.str]] = None,
1057
+ security_group_id: Optional[pulumi.Input[_builtins.str]] = None,
1058
+ size: Optional[pulumi.Input[_builtins.int]] = None,
1059
+ status: Optional[pulumi.Input[_builtins.str]] = None,
1060
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1061
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
1014
1062
  upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
1015
- version: Optional[pulumi.Input[str]] = None,
1016
- wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
1017
- zone: Optional[pulumi.Input[str]] = None) -> 'KubernetesNodePool':
1063
+ version: Optional[pulumi.Input[_builtins.str]] = None,
1064
+ wait_for_pool_ready: Optional[pulumi.Input[_builtins.bool]] = None,
1065
+ zone: Optional[pulumi.Input[_builtins.str]] = None) -> 'KubernetesNodePool':
1018
1066
  """
1019
1067
  Get an existing KubernetesNodePool resource's state with the given name, id, and optional extra
1020
1068
  properties used to qualify the lookup.
@@ -1022,47 +1070,50 @@ class KubernetesNodePool(pulumi.CustomResource):
1022
1070
  :param str resource_name: The unique name of the resulting resource.
1023
1071
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1024
1072
  :param pulumi.ResourceOptions opts: Options for the resource.
1025
- :param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
1026
- :param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
1073
+ :param pulumi.Input[_builtins.bool] autohealing: Enables the autohealing feature for this pool.
1074
+ :param pulumi.Input[_builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
1027
1075
 
1028
1076
  > **Important:** When enabled, an update of the `size` will not be taken into account.
1029
- :param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
1030
- :param pulumi.Input[str] container_runtime: The container runtime of the pool.
1077
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
1078
+ :param pulumi.Input[_builtins.str] container_runtime: The container runtime of the pool.
1031
1079
 
1032
1080
  > **Important:** Updates to this field will recreate a new resource.
1033
- :param pulumi.Input[str] created_at: The creation date of the pool.
1034
- :param pulumi.Input[int] current_size: The actual size of the pool
1035
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
1036
- :param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
1037
- :param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
1038
- :param pulumi.Input[str] name: The name for the pool.
1081
+ :param pulumi.Input[_builtins.str] created_at: The creation date of the pool.
1082
+ :param pulumi.Input[_builtins.int] current_size: The actual size of the pool
1083
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
1084
+ :param pulumi.Input[_builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
1085
+ :param pulumi.Input[_builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
1086
+ :param pulumi.Input[_builtins.str] name: The name for the pool.
1039
1087
 
1040
1088
  > **Important:** Updates to this field will recreate a new resource.
1041
- :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.
1089
+ :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.
1042
1090
 
1043
1091
  > **Important:** Updates to this field will recreate a new resource.
1044
1092
  :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesNodePoolNodeArgs', 'KubernetesNodePoolNodeArgsDict']]]] nodes: (List of) The nodes in the default pool.
1045
- :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.
1093
+ :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.
1094
+
1095
+ > **Important:** Updates to this field will recreate a new resource.
1096
+ :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.
1046
1097
 
1047
1098
  > **Important:** Updates to this field will recreate a new resource.
1048
- :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.
1099
+ :param pulumi.Input[_builtins.str] region: `region`) The region in which the pool should be created.
1100
+ :param pulumi.Input[_builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
1101
+ :param pulumi.Input[_builtins.str] root_volume_type: System volume type of the nodes composing the pool
1102
+ :param pulumi.Input[_builtins.str] security_group_id: The ID of the security group
1049
1103
 
1050
1104
  > **Important:** Updates to this field will recreate a new resource.
1051
- :param pulumi.Input[str] region: `region`) The region in which the pool should be created.
1052
- :param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
1053
- :param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
1054
- :param pulumi.Input[int] size: The size of the pool.
1105
+ :param pulumi.Input[_builtins.int] size: The size of the pool.
1055
1106
 
1056
1107
  > **Important:** This field will only be used at creation if autoscaling is enabled.
1057
- :param pulumi.Input[str] status: The status of the node.
1058
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
1108
+ :param pulumi.Input[_builtins.str] status: The status of the node.
1109
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags associated with the pool.
1059
1110
 
1060
- > 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"`)
1061
- :param pulumi.Input[str] updated_at: The last update date of the pool.
1111
+ > 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"`)
1112
+ :param pulumi.Input[_builtins.str] updated_at: The last update date of the pool.
1062
1113
  :param pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
1063
- :param pulumi.Input[str] version: The version of the pool.
1064
- :param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
1065
- :param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
1114
+ :param pulumi.Input[_builtins.str] version: The version of the pool.
1115
+ :param pulumi.Input[_builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
1116
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the pool should be created.
1066
1117
 
1067
1118
  > **Important:** Updates to this field will recreate a new resource.
1068
1119
  """
@@ -1087,6 +1138,7 @@ class KubernetesNodePool(pulumi.CustomResource):
1087
1138
  __props__.__dict__["region"] = region
1088
1139
  __props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
1089
1140
  __props__.__dict__["root_volume_type"] = root_volume_type
1141
+ __props__.__dict__["security_group_id"] = security_group_id
1090
1142
  __props__.__dict__["size"] = size
1091
1143
  __props__.__dict__["status"] = status
1092
1144
  __props__.__dict__["tags"] = tags
@@ -1097,17 +1149,17 @@ class KubernetesNodePool(pulumi.CustomResource):
1097
1149
  __props__.__dict__["zone"] = zone
1098
1150
  return KubernetesNodePool(resource_name, opts=opts, __props__=__props__)
1099
1151
 
1100
- @property
1152
+ @_builtins.property
1101
1153
  @pulumi.getter
1102
- def autohealing(self) -> pulumi.Output[Optional[bool]]:
1154
+ def autohealing(self) -> pulumi.Output[Optional[_builtins.bool]]:
1103
1155
  """
1104
1156
  Enables the autohealing feature for this pool.
1105
1157
  """
1106
1158
  return pulumi.get(self, "autohealing")
1107
1159
 
1108
- @property
1160
+ @_builtins.property
1109
1161
  @pulumi.getter
1110
- def autoscaling(self) -> pulumi.Output[Optional[bool]]:
1162
+ def autoscaling(self) -> pulumi.Output[Optional[_builtins.bool]]:
1111
1163
  """
1112
1164
  Enables the autoscaling feature for this pool.
1113
1165
 
@@ -1115,17 +1167,17 @@ class KubernetesNodePool(pulumi.CustomResource):
1115
1167
  """
1116
1168
  return pulumi.get(self, "autoscaling")
1117
1169
 
1118
- @property
1170
+ @_builtins.property
1119
1171
  @pulumi.getter(name="clusterId")
1120
- def cluster_id(self) -> pulumi.Output[str]:
1172
+ def cluster_id(self) -> pulumi.Output[_builtins.str]:
1121
1173
  """
1122
1174
  The ID of the Kubernetes cluster on which this pool will be created.
1123
1175
  """
1124
1176
  return pulumi.get(self, "cluster_id")
1125
1177
 
1126
- @property
1178
+ @_builtins.property
1127
1179
  @pulumi.getter(name="containerRuntime")
1128
- def container_runtime(self) -> pulumi.Output[Optional[str]]:
1180
+ def container_runtime(self) -> pulumi.Output[Optional[_builtins.str]]:
1129
1181
  """
1130
1182
  The container runtime of the pool.
1131
1183
 
@@ -1133,49 +1185,49 @@ class KubernetesNodePool(pulumi.CustomResource):
1133
1185
  """
1134
1186
  return pulumi.get(self, "container_runtime")
1135
1187
 
1136
- @property
1188
+ @_builtins.property
1137
1189
  @pulumi.getter(name="createdAt")
1138
- def created_at(self) -> pulumi.Output[str]:
1190
+ def created_at(self) -> pulumi.Output[_builtins.str]:
1139
1191
  """
1140
1192
  The creation date of the pool.
1141
1193
  """
1142
1194
  return pulumi.get(self, "created_at")
1143
1195
 
1144
- @property
1196
+ @_builtins.property
1145
1197
  @pulumi.getter(name="currentSize")
1146
- def current_size(self) -> pulumi.Output[int]:
1198
+ def current_size(self) -> pulumi.Output[_builtins.int]:
1147
1199
  """
1148
1200
  The actual size of the pool
1149
1201
  """
1150
1202
  return pulumi.get(self, "current_size")
1151
1203
 
1152
- @property
1204
+ @_builtins.property
1153
1205
  @pulumi.getter(name="kubeletArgs")
1154
- def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1206
+ def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
1155
1207
  """
1156
1208
  The Kubelet arguments to be used by this pool
1157
1209
  """
1158
1210
  return pulumi.get(self, "kubelet_args")
1159
1211
 
1160
- @property
1212
+ @_builtins.property
1161
1213
  @pulumi.getter(name="maxSize")
1162
- def max_size(self) -> pulumi.Output[int]:
1214
+ def max_size(self) -> pulumi.Output[_builtins.int]:
1163
1215
  """
1164
1216
  The maximum size of the pool, used by the autoscaling feature.
1165
1217
  """
1166
1218
  return pulumi.get(self, "max_size")
1167
1219
 
1168
- @property
1220
+ @_builtins.property
1169
1221
  @pulumi.getter(name="minSize")
1170
- def min_size(self) -> pulumi.Output[Optional[int]]:
1222
+ def min_size(self) -> pulumi.Output[Optional[_builtins.int]]:
1171
1223
  """
1172
1224
  The minimum size of the pool, used by the autoscaling feature.
1173
1225
  """
1174
1226
  return pulumi.get(self, "min_size")
1175
1227
 
1176
- @property
1228
+ @_builtins.property
1177
1229
  @pulumi.getter
1178
- def name(self) -> pulumi.Output[str]:
1230
+ def name(self) -> pulumi.Output[_builtins.str]:
1179
1231
  """
1180
1232
  The name for the pool.
1181
1233
 
@@ -1183,9 +1235,9 @@ class KubernetesNodePool(pulumi.CustomResource):
1183
1235
  """
1184
1236
  return pulumi.get(self, "name")
1185
1237
 
1186
- @property
1238
+ @_builtins.property
1187
1239
  @pulumi.getter(name="nodeType")
1188
- def node_type(self) -> pulumi.Output[str]:
1240
+ def node_type(self) -> pulumi.Output[_builtins.str]:
1189
1241
  """
1190
1242
  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.
1191
1243
 
@@ -1193,7 +1245,7 @@ class KubernetesNodePool(pulumi.CustomResource):
1193
1245
  """
1194
1246
  return pulumi.get(self, "node_type")
1195
1247
 
1196
- @property
1248
+ @_builtins.property
1197
1249
  @pulumi.getter
1198
1250
  def nodes(self) -> pulumi.Output[Sequence['outputs.KubernetesNodePoolNode']]:
1199
1251
  """
@@ -1201,9 +1253,9 @@ class KubernetesNodePool(pulumi.CustomResource):
1201
1253
  """
1202
1254
  return pulumi.get(self, "nodes")
1203
1255
 
1204
- @property
1256
+ @_builtins.property
1205
1257
  @pulumi.getter(name="placementGroupId")
1206
- def placement_group_id(self) -> pulumi.Output[Optional[str]]:
1258
+ def placement_group_id(self) -> pulumi.Output[Optional[_builtins.str]]:
1207
1259
  """
1208
1260
  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.
1209
1261
 
@@ -1211,9 +1263,9 @@ class KubernetesNodePool(pulumi.CustomResource):
1211
1263
  """
1212
1264
  return pulumi.get(self, "placement_group_id")
1213
1265
 
1214
- @property
1266
+ @_builtins.property
1215
1267
  @pulumi.getter(name="publicIpDisabled")
1216
- def public_ip_disabled(self) -> pulumi.Output[Optional[bool]]:
1268
+ def public_ip_disabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1217
1269
  """
1218
1270
  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.
1219
1271
 
@@ -1221,33 +1273,43 @@ class KubernetesNodePool(pulumi.CustomResource):
1221
1273
  """
1222
1274
  return pulumi.get(self, "public_ip_disabled")
1223
1275
 
1224
- @property
1276
+ @_builtins.property
1225
1277
  @pulumi.getter
1226
- def region(self) -> pulumi.Output[str]:
1278
+ def region(self) -> pulumi.Output[Optional[_builtins.str]]:
1227
1279
  """
1228
1280
  `region`) The region in which the pool should be created.
1229
1281
  """
1230
1282
  return pulumi.get(self, "region")
1231
1283
 
1232
- @property
1284
+ @_builtins.property
1233
1285
  @pulumi.getter(name="rootVolumeSizeInGb")
1234
- def root_volume_size_in_gb(self) -> pulumi.Output[int]:
1286
+ def root_volume_size_in_gb(self) -> pulumi.Output[_builtins.int]:
1235
1287
  """
1236
1288
  The size of the system volume of the nodes in gigabyte
1237
1289
  """
1238
1290
  return pulumi.get(self, "root_volume_size_in_gb")
1239
1291
 
1240
- @property
1292
+ @_builtins.property
1241
1293
  @pulumi.getter(name="rootVolumeType")
1242
- def root_volume_type(self) -> pulumi.Output[str]:
1294
+ def root_volume_type(self) -> pulumi.Output[_builtins.str]:
1243
1295
  """
1244
1296
  System volume type of the nodes composing the pool
1245
1297
  """
1246
1298
  return pulumi.get(self, "root_volume_type")
1247
1299
 
1248
- @property
1300
+ @_builtins.property
1301
+ @pulumi.getter(name="securityGroupId")
1302
+ def security_group_id(self) -> pulumi.Output[_builtins.str]:
1303
+ """
1304
+ The ID of the security group
1305
+
1306
+ > **Important:** Updates to this field will recreate a new resource.
1307
+ """
1308
+ return pulumi.get(self, "security_group_id")
1309
+
1310
+ @_builtins.property
1249
1311
  @pulumi.getter
1250
- def size(self) -> pulumi.Output[int]:
1312
+ def size(self) -> pulumi.Output[_builtins.int]:
1251
1313
  """
1252
1314
  The size of the pool.
1253
1315
 
@@ -1255,33 +1317,33 @@ class KubernetesNodePool(pulumi.CustomResource):
1255
1317
  """
1256
1318
  return pulumi.get(self, "size")
1257
1319
 
1258
- @property
1320
+ @_builtins.property
1259
1321
  @pulumi.getter
1260
- def status(self) -> pulumi.Output[str]:
1322
+ def status(self) -> pulumi.Output[_builtins.str]:
1261
1323
  """
1262
1324
  The status of the node.
1263
1325
  """
1264
1326
  return pulumi.get(self, "status")
1265
1327
 
1266
- @property
1328
+ @_builtins.property
1267
1329
  @pulumi.getter
1268
- def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
1330
+ def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
1269
1331
  """
1270
1332
  The tags associated with the pool.
1271
1333
 
1272
- > 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"`)
1334
+ > 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"`)
1273
1335
  """
1274
1336
  return pulumi.get(self, "tags")
1275
1337
 
1276
- @property
1338
+ @_builtins.property
1277
1339
  @pulumi.getter(name="updatedAt")
1278
- def updated_at(self) -> pulumi.Output[str]:
1340
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
1279
1341
  """
1280
1342
  The last update date of the pool.
1281
1343
  """
1282
1344
  return pulumi.get(self, "updated_at")
1283
1345
 
1284
- @property
1346
+ @_builtins.property
1285
1347
  @pulumi.getter(name="upgradePolicy")
1286
1348
  def upgrade_policy(self) -> pulumi.Output['outputs.KubernetesNodePoolUpgradePolicy']:
1287
1349
  """
@@ -1289,25 +1351,25 @@ class KubernetesNodePool(pulumi.CustomResource):
1289
1351
  """
1290
1352
  return pulumi.get(self, "upgrade_policy")
1291
1353
 
1292
- @property
1354
+ @_builtins.property
1293
1355
  @pulumi.getter
1294
- def version(self) -> pulumi.Output[str]:
1356
+ def version(self) -> pulumi.Output[_builtins.str]:
1295
1357
  """
1296
1358
  The version of the pool.
1297
1359
  """
1298
1360
  return pulumi.get(self, "version")
1299
1361
 
1300
- @property
1362
+ @_builtins.property
1301
1363
  @pulumi.getter(name="waitForPoolReady")
1302
- def wait_for_pool_ready(self) -> pulumi.Output[Optional[bool]]:
1364
+ def wait_for_pool_ready(self) -> pulumi.Output[Optional[_builtins.bool]]:
1303
1365
  """
1304
1366
  Whether to wait for the pool to be ready.
1305
1367
  """
1306
1368
  return pulumi.get(self, "wait_for_pool_ready")
1307
1369
 
1308
- @property
1370
+ @_builtins.property
1309
1371
  @pulumi.getter
1310
- def zone(self) -> pulumi.Output[str]:
1372
+ def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
1311
1373
  """
1312
1374
  `zone`) The zone in which the pool should be created.
1313
1375