pulumiverse-scaleway 1.29.0a1748333343__py3-none-any.whl → 1.30.0__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 (490) hide show
  1. pulumiverse_scaleway/__init__.py +11 -1
  2. pulumiverse_scaleway/_inputs.py +2252 -2143
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +2 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +9 -8
  6. pulumiverse_scaleway/account/get_project.py +21 -20
  7. pulumiverse_scaleway/account/get_projects.py +28 -21
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +20 -19
  10. pulumiverse_scaleway/account/project.py +59 -57
  11. pulumiverse_scaleway/account/ssh_key.py +87 -85
  12. pulumiverse_scaleway/account_project.py +59 -57
  13. pulumiverse_scaleway/account_ssh_key.py +87 -85
  14. pulumiverse_scaleway/apple_silicon_server.py +204 -155
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
  17. pulumiverse_scaleway/applesilicon/outputs.py +54 -21
  18. pulumiverse_scaleway/applesilicon/server.py +204 -155
  19. pulumiverse_scaleway/baremetal_server.py +262 -260
  20. pulumiverse_scaleway/billing/__init__.py +2 -1
  21. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  22. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  23. pulumiverse_scaleway/billing/outputs.py +73 -72
  24. pulumiverse_scaleway/block/__init__.py +2 -1
  25. pulumiverse_scaleway/block/_inputs.py +12 -11
  26. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  27. pulumiverse_scaleway/block/get_volume.py +28 -27
  28. pulumiverse_scaleway/block/outputs.py +14 -13
  29. pulumiverse_scaleway/block/snapshot.py +73 -71
  30. pulumiverse_scaleway/block/volume.py +115 -113
  31. pulumiverse_scaleway/block_snapshot.py +73 -71
  32. pulumiverse_scaleway/block_volume.py +115 -113
  33. pulumiverse_scaleway/cockpit.py +38 -36
  34. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  35. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  36. pulumiverse_scaleway/cockpit_source.py +115 -113
  37. pulumiverse_scaleway/cockpit_token.py +66 -64
  38. pulumiverse_scaleway/config/__init__.py +2 -1
  39. pulumiverse_scaleway/config/__init__.pyi +2 -1
  40. pulumiverse_scaleway/config/vars.py +2 -1
  41. pulumiverse_scaleway/container.py +573 -343
  42. pulumiverse_scaleway/container_cron.py +80 -78
  43. pulumiverse_scaleway/container_domain.py +52 -50
  44. pulumiverse_scaleway/container_namespace.py +211 -140
  45. pulumiverse_scaleway/container_token.py +80 -78
  46. pulumiverse_scaleway/container_trigger.py +59 -57
  47. pulumiverse_scaleway/containers/__init__.py +2 -1
  48. pulumiverse_scaleway/containers/_inputs.py +72 -71
  49. pulumiverse_scaleway/containers/container.py +573 -343
  50. pulumiverse_scaleway/containers/cron.py +80 -78
  51. pulumiverse_scaleway/containers/domain.py +52 -50
  52. pulumiverse_scaleway/containers/get_container.py +87 -42
  53. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  54. pulumiverse_scaleway/containers/namespace.py +211 -140
  55. pulumiverse_scaleway/containers/outputs.py +62 -61
  56. pulumiverse_scaleway/containers/token.py +80 -78
  57. pulumiverse_scaleway/containers/trigger.py +59 -57
  58. pulumiverse_scaleway/database.py +66 -64
  59. pulumiverse_scaleway/database_acl.py +31 -29
  60. pulumiverse_scaleway/database_backup.py +101 -99
  61. pulumiverse_scaleway/database_instance.py +297 -295
  62. pulumiverse_scaleway/database_privilege.py +73 -71
  63. pulumiverse_scaleway/database_read_replica.py +45 -43
  64. pulumiverse_scaleway/database_user.py +73 -71
  65. pulumiverse_scaleway/databases/__init__.py +2 -1
  66. pulumiverse_scaleway/databases/_inputs.py +191 -190
  67. pulumiverse_scaleway/databases/acl.py +31 -29
  68. pulumiverse_scaleway/databases/database.py +66 -64
  69. pulumiverse_scaleway/databases/database_backup.py +101 -99
  70. pulumiverse_scaleway/databases/get_acl.py +13 -12
  71. pulumiverse_scaleway/databases/get_database.py +19 -18
  72. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  73. pulumiverse_scaleway/databases/get_instance.py +43 -42
  74. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  75. pulumiverse_scaleway/databases/instance.py +297 -295
  76. pulumiverse_scaleway/databases/outputs.py +188 -187
  77. pulumiverse_scaleway/databases/privilege.py +73 -71
  78. pulumiverse_scaleway/databases/read_replica.py +45 -43
  79. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  80. pulumiverse_scaleway/databases/snapshot.py +101 -99
  81. pulumiverse_scaleway/databases/user.py +73 -71
  82. pulumiverse_scaleway/domain/__init__.py +2 -1
  83. pulumiverse_scaleway/domain/_inputs.py +531 -530
  84. pulumiverse_scaleway/domain/get_record.py +38 -37
  85. pulumiverse_scaleway/domain/get_zone.py +24 -23
  86. pulumiverse_scaleway/domain/outputs.py +358 -357
  87. pulumiverse_scaleway/domain/record.py +129 -127
  88. pulumiverse_scaleway/domain/registration.py +94 -92
  89. pulumiverse_scaleway/domain/zone.py +87 -85
  90. pulumiverse_scaleway/domain_record.py +129 -127
  91. pulumiverse_scaleway/domain_zone.py +87 -85
  92. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  93. pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
  94. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  95. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  96. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  97. pulumiverse_scaleway/edge_services_plan.py +31 -29
  98. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  99. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  100. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  101. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  102. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  103. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  104. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  105. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  106. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  107. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  108. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  109. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  110. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  111. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  112. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  113. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  114. pulumiverse_scaleway/file_filesystem.py +552 -0
  115. pulumiverse_scaleway/flexible_ip.py +139 -137
  116. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  117. pulumiverse_scaleway/function.py +394 -284
  118. pulumiverse_scaleway/function_cron.py +80 -78
  119. pulumiverse_scaleway/function_domain.py +52 -50
  120. pulumiverse_scaleway/function_namespace.py +197 -126
  121. pulumiverse_scaleway/function_token.py +80 -78
  122. pulumiverse_scaleway/function_trigger.py +59 -57
  123. pulumiverse_scaleway/functions/__init__.py +2 -1
  124. pulumiverse_scaleway/functions/_inputs.py +42 -41
  125. pulumiverse_scaleway/functions/cron.py +80 -78
  126. pulumiverse_scaleway/functions/domain.py +52 -50
  127. pulumiverse_scaleway/functions/function.py +394 -284
  128. pulumiverse_scaleway/functions/get_function.py +69 -46
  129. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  130. pulumiverse_scaleway/functions/namespace.py +197 -126
  131. pulumiverse_scaleway/functions/outputs.py +26 -25
  132. pulumiverse_scaleway/functions/token.py +80 -78
  133. pulumiverse_scaleway/functions/trigger.py +59 -57
  134. pulumiverse_scaleway/get_account_project.py +21 -20
  135. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  136. pulumiverse_scaleway/get_availability_zones.py +9 -8
  137. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  138. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  139. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  140. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  141. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  142. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  143. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  144. pulumiverse_scaleway/get_block_volume.py +28 -27
  145. pulumiverse_scaleway/get_cockpit.py +10 -9
  146. pulumiverse_scaleway/get_cockpit_source.py +33 -32
  147. pulumiverse_scaleway/get_config.py +13 -12
  148. pulumiverse_scaleway/get_container.py +87 -42
  149. pulumiverse_scaleway/get_container_namespace.py +43 -31
  150. pulumiverse_scaleway/get_database.py +19 -18
  151. pulumiverse_scaleway/get_database_acl.py +13 -12
  152. pulumiverse_scaleway/get_database_backup.py +34 -33
  153. pulumiverse_scaleway/get_database_instance.py +43 -42
  154. pulumiverse_scaleway/get_database_privilege.py +24 -23
  155. pulumiverse_scaleway/get_domain_record.py +38 -37
  156. pulumiverse_scaleway/get_domain_zone.py +24 -23
  157. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  158. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  159. pulumiverse_scaleway/get_function.py +69 -46
  160. pulumiverse_scaleway/get_function_namespace.py +42 -30
  161. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  162. pulumiverse_scaleway/get_iam_application.py +23 -22
  163. pulumiverse_scaleway/get_iam_group.py +25 -24
  164. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  165. pulumiverse_scaleway/get_iam_user.py +23 -22
  166. pulumiverse_scaleway/get_instance_image.py +42 -41
  167. pulumiverse_scaleway/get_instance_ip.py +20 -19
  168. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  169. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  170. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  171. pulumiverse_scaleway/get_instance_server.py +59 -47
  172. pulumiverse_scaleway/get_instance_servers.py +24 -23
  173. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  174. pulumiverse_scaleway/get_instance_volume.py +30 -29
  175. pulumiverse_scaleway/get_iot_device.py +31 -30
  176. pulumiverse_scaleway/get_iot_hub.py +39 -38
  177. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  178. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  179. pulumiverse_scaleway/get_k8s_version.py +16 -15
  180. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  181. pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
  182. pulumiverse_scaleway/get_lb_acls.py +22 -21
  183. pulumiverse_scaleway/get_lb_backend.py +43 -42
  184. pulumiverse_scaleway/get_lb_backends.py +22 -21
  185. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  186. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  187. pulumiverse_scaleway/get_lb_ips.py +29 -28
  188. pulumiverse_scaleway/get_lb_route.py +16 -15
  189. pulumiverse_scaleway/get_lb_routes.py +17 -16
  190. pulumiverse_scaleway/get_lbs.py +24 -23
  191. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  192. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  193. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  194. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  195. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  196. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  197. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  198. pulumiverse_scaleway/get_object_bucket.py +22 -21
  199. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  200. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  201. pulumiverse_scaleway/get_registry_image.py +37 -36
  202. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  203. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  204. pulumiverse_scaleway/get_secret.py +41 -40
  205. pulumiverse_scaleway/get_secret_version.py +34 -33
  206. pulumiverse_scaleway/get_tem_domain.py +43 -42
  207. pulumiverse_scaleway/get_vpc.py +35 -34
  208. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  209. pulumiverse_scaleway/get_vpc_private_network.py +32 -31
  210. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  211. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  212. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  213. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  214. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  215. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  216. pulumiverse_scaleway/get_vpcs.py +24 -23
  217. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  218. pulumiverse_scaleway/get_webhosting.py +36 -35
  219. pulumiverse_scaleway/hosting/__init__.py +2 -1
  220. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  221. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  222. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  223. pulumiverse_scaleway/hosting/hosting.py +164 -162
  224. pulumiverse_scaleway/hosting/outputs.py +139 -138
  225. pulumiverse_scaleway/iam/__init__.py +2 -1
  226. pulumiverse_scaleway/iam/_inputs.py +22 -21
  227. pulumiverse_scaleway/iam/api_key.py +115 -113
  228. pulumiverse_scaleway/iam/application.py +80 -78
  229. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  230. pulumiverse_scaleway/iam/get_application.py +23 -22
  231. pulumiverse_scaleway/iam/get_group.py +25 -24
  232. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  233. pulumiverse_scaleway/iam/get_user.py +23 -22
  234. pulumiverse_scaleway/iam/group.py +115 -113
  235. pulumiverse_scaleway/iam/group_membership.py +45 -43
  236. pulumiverse_scaleway/iam/outputs.py +14 -13
  237. pulumiverse_scaleway/iam/policy.py +136 -134
  238. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  239. pulumiverse_scaleway/iam/user.py +284 -273
  240. pulumiverse_scaleway/iam_api_key.py +115 -113
  241. pulumiverse_scaleway/iam_application.py +80 -78
  242. pulumiverse_scaleway/iam_group.py +115 -113
  243. pulumiverse_scaleway/iam_group_membership.py +45 -43
  244. pulumiverse_scaleway/iam_policy.py +136 -134
  245. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  246. pulumiverse_scaleway/iam_user.py +284 -273
  247. pulumiverse_scaleway/inference/__init__.py +2 -1
  248. pulumiverse_scaleway/inference/_inputs.py +116 -61
  249. pulumiverse_scaleway/inference/deployment.py +225 -176
  250. pulumiverse_scaleway/inference/get_model.py +27 -26
  251. pulumiverse_scaleway/inference/model.py +129 -127
  252. pulumiverse_scaleway/inference/outputs.py +82 -49
  253. pulumiverse_scaleway/inference_deployment.py +225 -176
  254. pulumiverse_scaleway/instance/__init__.py +2 -1
  255. pulumiverse_scaleway/instance/_inputs.py +296 -295
  256. pulumiverse_scaleway/instance/get_image.py +42 -41
  257. pulumiverse_scaleway/instance/get_ip.py +20 -19
  258. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  259. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  260. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  261. pulumiverse_scaleway/instance/get_server.py +59 -47
  262. pulumiverse_scaleway/instance/get_servers.py +24 -23
  263. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  264. pulumiverse_scaleway/instance/get_volume.py +30 -29
  265. pulumiverse_scaleway/instance/image.py +150 -148
  266. pulumiverse_scaleway/instance/ip.py +94 -92
  267. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  268. pulumiverse_scaleway/instance/outputs.py +349 -348
  269. pulumiverse_scaleway/instance/placement_group.py +101 -99
  270. pulumiverse_scaleway/instance/private_nic.py +94 -92
  271. pulumiverse_scaleway/instance/security_group.py +150 -148
  272. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  273. pulumiverse_scaleway/instance/server.py +393 -330
  274. pulumiverse_scaleway/instance/snapshot.py +108 -106
  275. pulumiverse_scaleway/instance/user_data.py +59 -57
  276. pulumiverse_scaleway/instance/volume.py +129 -127
  277. pulumiverse_scaleway/instance_image.py +150 -148
  278. pulumiverse_scaleway/instance_ip.py +94 -92
  279. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  280. pulumiverse_scaleway/instance_placement_group.py +101 -99
  281. pulumiverse_scaleway/instance_private_nic.py +94 -92
  282. pulumiverse_scaleway/instance_security_group.py +150 -148
  283. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  284. pulumiverse_scaleway/instance_server.py +393 -330
  285. pulumiverse_scaleway/instance_snapshot.py +108 -106
  286. pulumiverse_scaleway/instance_user_data.py +59 -57
  287. pulumiverse_scaleway/instance_volume.py +129 -127
  288. pulumiverse_scaleway/iot/__init__.py +2 -1
  289. pulumiverse_scaleway/iot/_inputs.py +98 -97
  290. pulumiverse_scaleway/iot/device.py +122 -120
  291. pulumiverse_scaleway/iot/get_device.py +31 -30
  292. pulumiverse_scaleway/iot/get_hub.py +39 -38
  293. pulumiverse_scaleway/iot/hub.py +206 -204
  294. pulumiverse_scaleway/iot/network.py +94 -92
  295. pulumiverse_scaleway/iot/outputs.py +78 -77
  296. pulumiverse_scaleway/iot/route.py +66 -64
  297. pulumiverse_scaleway/iot_device.py +122 -120
  298. pulumiverse_scaleway/iot_hub.py +206 -204
  299. pulumiverse_scaleway/iot_network.py +94 -92
  300. pulumiverse_scaleway/iot_route.py +66 -64
  301. pulumiverse_scaleway/ipam/__init__.py +2 -1
  302. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  303. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  304. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  305. pulumiverse_scaleway/ipam/ip.py +94 -92
  306. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  307. pulumiverse_scaleway/ipam/outputs.py +90 -89
  308. pulumiverse_scaleway/ipam_ip.py +94 -92
  309. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  310. pulumiverse_scaleway/job/__init__.py +2 -1
  311. pulumiverse_scaleway/job/_inputs.py +38 -37
  312. pulumiverse_scaleway/job/definition.py +143 -141
  313. pulumiverse_scaleway/job/outputs.py +24 -23
  314. pulumiverse_scaleway/job_definition.py +143 -141
  315. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  316. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  317. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  318. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  319. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  320. pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
  321. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  322. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  323. pulumiverse_scaleway/kubernetes/pool.py +290 -288
  324. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
  326. pulumiverse_scaleway/loadbalancer.py +199 -197
  327. pulumiverse_scaleway/loadbalancer_acl.py +73 -71
  328. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  329. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  330. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  331. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  332. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  333. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  334. pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
  335. pulumiverse_scaleway/loadbalancers/acl.py +73 -71
  336. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  337. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  338. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  339. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  340. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  341. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  342. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  343. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  344. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  345. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  346. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  347. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  348. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  350. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  351. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  352. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  353. pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
  354. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  355. pulumiverse_scaleway/mnq/__init__.py +2 -1
  356. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  357. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  358. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  359. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  360. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  361. pulumiverse_scaleway/mnq/outputs.py +20 -19
  362. pulumiverse_scaleway/mnq/sns.py +38 -36
  363. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  364. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  365. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  366. pulumiverse_scaleway/mnq/sqs.py +38 -36
  367. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  368. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  369. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  370. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  371. pulumiverse_scaleway/mnq_sns.py +38 -36
  372. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  373. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  374. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  375. pulumiverse_scaleway/mnq_sqs.py +38 -36
  376. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  377. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  378. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  379. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  380. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  381. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  382. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  383. pulumiverse_scaleway/mongodb/instance.py +199 -197
  384. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  385. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  386. pulumiverse_scaleway/network/__init__.py +2 -1
  387. pulumiverse_scaleway/network/_inputs.py +140 -139
  388. pulumiverse_scaleway/network/acl.py +59 -57
  389. pulumiverse_scaleway/network/gateway_network.py +143 -141
  390. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  391. pulumiverse_scaleway/network/get_private_network.py +32 -31
  392. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  393. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  394. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  395. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  396. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  397. pulumiverse_scaleway/network/get_routes.py +38 -37
  398. pulumiverse_scaleway/network/get_vpc.py +35 -34
  399. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  400. pulumiverse_scaleway/network/outputs.py +206 -205
  401. pulumiverse_scaleway/network/private_network.py +122 -120
  402. pulumiverse_scaleway/network/public_gateway.py +213 -211
  403. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  404. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  405. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  406. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  407. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  408. pulumiverse_scaleway/network/route.py +115 -113
  409. pulumiverse_scaleway/network/vpc.py +101 -99
  410. pulumiverse_scaleway/object/__init__.py +2 -1
  411. pulumiverse_scaleway/object/_inputs.py +127 -126
  412. pulumiverse_scaleway/object/bucket.py +115 -113
  413. pulumiverse_scaleway/object/bucket_acl.py +73 -71
  414. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  415. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  416. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  417. pulumiverse_scaleway/object/get_bucket.py +22 -21
  418. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  419. pulumiverse_scaleway/object/item.py +232 -183
  420. pulumiverse_scaleway/object/outputs.py +114 -113
  421. pulumiverse_scaleway/object_bucket.py +115 -113
  422. pulumiverse_scaleway/object_bucket_acl.py +73 -71
  423. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  424. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  425. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  426. pulumiverse_scaleway/object_item.py +232 -183
  427. pulumiverse_scaleway/observability/__init__.py +2 -1
  428. pulumiverse_scaleway/observability/_inputs.py +89 -88
  429. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  430. pulumiverse_scaleway/observability/cockpit.py +38 -36
  431. pulumiverse_scaleway/observability/get_instance.py +10 -9
  432. pulumiverse_scaleway/observability/get_source.py +33 -32
  433. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  434. pulumiverse_scaleway/observability/outputs.py +77 -76
  435. pulumiverse_scaleway/observability/source.py +115 -113
  436. pulumiverse_scaleway/observability/token.py +66 -64
  437. pulumiverse_scaleway/outputs.py +2797 -2732
  438. pulumiverse_scaleway/provider.py +87 -65
  439. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  440. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  441. pulumiverse_scaleway/redis/__init__.py +2 -1
  442. pulumiverse_scaleway/redis/_inputs.py +63 -62
  443. pulumiverse_scaleway/redis/cluster.py +178 -176
  444. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  445. pulumiverse_scaleway/redis/outputs.py +74 -73
  446. pulumiverse_scaleway/redis_cluster.py +178 -176
  447. pulumiverse_scaleway/registry/__init__.py +2 -1
  448. pulumiverse_scaleway/registry/get_image.py +37 -36
  449. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  450. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  451. pulumiverse_scaleway/registry/namespace.py +87 -85
  452. pulumiverse_scaleway/registry_namespace.py +87 -85
  453. pulumiverse_scaleway/sdb_database.py +80 -78
  454. pulumiverse_scaleway/secret.py +143 -141
  455. pulumiverse_scaleway/secret_version.py +87 -85
  456. pulumiverse_scaleway/secrets/__init__.py +2 -1
  457. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  458. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  459. pulumiverse_scaleway/secrets/get_version.py +34 -33
  460. pulumiverse_scaleway/secrets/outputs.py +64 -63
  461. pulumiverse_scaleway/secrets/secret.py +143 -141
  462. pulumiverse_scaleway/secrets/version.py +87 -85
  463. pulumiverse_scaleway/tem/__init__.py +2 -1
  464. pulumiverse_scaleway/tem/_inputs.py +28 -27
  465. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  466. pulumiverse_scaleway/tem/domain.py +199 -197
  467. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  468. pulumiverse_scaleway/tem/get_domain.py +43 -42
  469. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  470. pulumiverse_scaleway/tem/outputs.py +34 -33
  471. pulumiverse_scaleway/tem/webhook.py +108 -106
  472. pulumiverse_scaleway/tem_domain.py +199 -197
  473. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem_webhook.py +108 -106
  475. pulumiverse_scaleway/vpc.py +101 -99
  476. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  477. pulumiverse_scaleway/vpc_private_network.py +122 -120
  478. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  479. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  480. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  481. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  482. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  483. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  484. pulumiverse_scaleway/vpc_route.py +115 -113
  485. pulumiverse_scaleway/webhosting.py +164 -162
  486. {pulumiverse_scaleway-1.29.0a1748333343.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0.dist-info/RECORD +493 -0
  488. pulumiverse_scaleway-1.29.0a1748333343.dist-info/RECORD +0 -492
  489. {pulumiverse_scaleway-1.29.0a1748333343.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/WHEEL +0 -0
  490. {pulumiverse_scaleway-1.29.0a1748333343.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +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 builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -65,33 +66,33 @@ class ImageAdditionalVolume(dict):
65
66
  return super().get(key, default)
66
67
 
67
68
  def __init__(__self__, *,
68
- creation_date: Optional[str] = None,
69
- export_uri: Optional[str] = None,
70
- id: Optional[str] = None,
71
- modification_date: Optional[str] = None,
72
- name: Optional[str] = None,
73
- organization: Optional[str] = None,
74
- project: Optional[str] = None,
75
- server: Optional[Mapping[str, str]] = None,
76
- size: Optional[int] = None,
77
- state: Optional[str] = None,
78
- tags: Optional[Sequence[str]] = None,
79
- volume_type: Optional[str] = None,
80
- zone: Optional[str] = None):
81
- """
82
- :param str creation_date: Date of the volume creation.
83
- :param str export_uri: The export URI of the volume.
84
- :param str id: ID of the server containing the volume.
85
- :param str modification_date: Date of volume latest update.
86
- :param str name: The name of the image. If not provided it will be randomly generated.
87
- :param str organization: The organization ID the volume is associated with.
88
- :param str project: ID of the project the volume is associated with
89
- :param Mapping[str, str] server: Description of the server containing the volume (in case the image is a backup from a server).
90
- :param int size: The size of the volume.
91
- :param str state: State of the volume.
92
- :param Sequence[str] tags: A list of tags to apply to the image.
93
- :param str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
94
- :param str zone: The zone in which the image should be created.
69
+ creation_date: Optional[builtins.str] = None,
70
+ export_uri: Optional[builtins.str] = None,
71
+ id: Optional[builtins.str] = None,
72
+ modification_date: Optional[builtins.str] = None,
73
+ name: Optional[builtins.str] = None,
74
+ organization: Optional[builtins.str] = None,
75
+ project: Optional[builtins.str] = None,
76
+ server: Optional[Mapping[str, builtins.str]] = None,
77
+ size: Optional[builtins.int] = None,
78
+ state: Optional[builtins.str] = None,
79
+ tags: Optional[Sequence[builtins.str]] = None,
80
+ volume_type: Optional[builtins.str] = None,
81
+ zone: Optional[builtins.str] = None):
82
+ """
83
+ :param builtins.str creation_date: Date of the volume creation.
84
+ :param builtins.str export_uri: The export URI of the volume.
85
+ :param builtins.str id: ID of the server containing the volume.
86
+ :param builtins.str modification_date: Date of volume latest update.
87
+ :param builtins.str name: The name of the image. If not provided it will be randomly generated.
88
+ :param builtins.str organization: The organization ID the volume is associated with.
89
+ :param builtins.str project: ID of the project the volume is associated with
90
+ :param Mapping[str, builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
91
+ :param builtins.int size: The size of the volume.
92
+ :param builtins.str state: State of the volume.
93
+ :param Sequence[builtins.str] tags: A list of tags to apply to the image.
94
+ :param builtins.str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
95
+ :param builtins.str zone: The zone in which the image should be created.
95
96
  """
96
97
  if creation_date is not None:
97
98
  pulumi.set(__self__, "creation_date", creation_date)
@@ -122,7 +123,7 @@ class ImageAdditionalVolume(dict):
122
123
 
123
124
  @property
124
125
  @pulumi.getter(name="creationDate")
125
- def creation_date(self) -> Optional[str]:
126
+ def creation_date(self) -> Optional[builtins.str]:
126
127
  """
127
128
  Date of the volume creation.
128
129
  """
@@ -130,7 +131,7 @@ class ImageAdditionalVolume(dict):
130
131
 
131
132
  @property
132
133
  @pulumi.getter(name="exportUri")
133
- def export_uri(self) -> Optional[str]:
134
+ def export_uri(self) -> Optional[builtins.str]:
134
135
  """
135
136
  The export URI of the volume.
136
137
  """
@@ -138,7 +139,7 @@ class ImageAdditionalVolume(dict):
138
139
 
139
140
  @property
140
141
  @pulumi.getter
141
- def id(self) -> Optional[str]:
142
+ def id(self) -> Optional[builtins.str]:
142
143
  """
143
144
  ID of the server containing the volume.
144
145
  """
@@ -146,7 +147,7 @@ class ImageAdditionalVolume(dict):
146
147
 
147
148
  @property
148
149
  @pulumi.getter(name="modificationDate")
149
- def modification_date(self) -> Optional[str]:
150
+ def modification_date(self) -> Optional[builtins.str]:
150
151
  """
151
152
  Date of volume latest update.
152
153
  """
@@ -154,7 +155,7 @@ class ImageAdditionalVolume(dict):
154
155
 
155
156
  @property
156
157
  @pulumi.getter
157
- def name(self) -> Optional[str]:
158
+ def name(self) -> Optional[builtins.str]:
158
159
  """
159
160
  The name of the image. If not provided it will be randomly generated.
160
161
  """
@@ -162,7 +163,7 @@ class ImageAdditionalVolume(dict):
162
163
 
163
164
  @property
164
165
  @pulumi.getter
165
- def organization(self) -> Optional[str]:
166
+ def organization(self) -> Optional[builtins.str]:
166
167
  """
167
168
  The organization ID the volume is associated with.
168
169
  """
@@ -170,7 +171,7 @@ class ImageAdditionalVolume(dict):
170
171
 
171
172
  @property
172
173
  @pulumi.getter
173
- def project(self) -> Optional[str]:
174
+ def project(self) -> Optional[builtins.str]:
174
175
  """
175
176
  ID of the project the volume is associated with
176
177
  """
@@ -178,7 +179,7 @@ class ImageAdditionalVolume(dict):
178
179
 
179
180
  @property
180
181
  @pulumi.getter
181
- def server(self) -> Optional[Mapping[str, str]]:
182
+ def server(self) -> Optional[Mapping[str, builtins.str]]:
182
183
  """
183
184
  Description of the server containing the volume (in case the image is a backup from a server).
184
185
  """
@@ -186,7 +187,7 @@ class ImageAdditionalVolume(dict):
186
187
 
187
188
  @property
188
189
  @pulumi.getter
189
- def size(self) -> Optional[int]:
190
+ def size(self) -> Optional[builtins.int]:
190
191
  """
191
192
  The size of the volume.
192
193
  """
@@ -194,7 +195,7 @@ class ImageAdditionalVolume(dict):
194
195
 
195
196
  @property
196
197
  @pulumi.getter
197
- def state(self) -> Optional[str]:
198
+ def state(self) -> Optional[builtins.str]:
198
199
  """
199
200
  State of the volume.
200
201
  """
@@ -202,7 +203,7 @@ class ImageAdditionalVolume(dict):
202
203
 
203
204
  @property
204
205
  @pulumi.getter
205
- def tags(self) -> Optional[Sequence[str]]:
206
+ def tags(self) -> Optional[Sequence[builtins.str]]:
206
207
  """
207
208
  A list of tags to apply to the image.
208
209
  """
@@ -210,7 +211,7 @@ class ImageAdditionalVolume(dict):
210
211
 
211
212
  @property
212
213
  @pulumi.getter(name="volumeType")
213
- def volume_type(self) -> Optional[str]:
214
+ def volume_type(self) -> Optional[builtins.str]:
214
215
  """
215
216
  The type of volume, possible values are `l_ssd` and `b_ssd`.
216
217
  """
@@ -218,7 +219,7 @@ class ImageAdditionalVolume(dict):
218
219
 
219
220
  @property
220
221
  @pulumi.getter
221
- def zone(self) -> Optional[str]:
222
+ def zone(self) -> Optional[builtins.str]:
222
223
  """
223
224
  The zone in which the image should be created.
224
225
  """
@@ -228,11 +229,11 @@ class ImageAdditionalVolume(dict):
228
229
  @pulumi.output_type
229
230
  class PrivateNicPrivateIp(dict):
230
231
  def __init__(__self__, *,
231
- address: Optional[str] = None,
232
- id: Optional[str] = None):
232
+ address: Optional[builtins.str] = None,
233
+ id: Optional[builtins.str] = None):
233
234
  """
234
- :param str address: The private IP address.
235
- :param str id: The ID of the IP address resource.
235
+ :param builtins.str address: The private IP address.
236
+ :param builtins.str id: The ID of the IP address resource.
236
237
  """
237
238
  if address is not None:
238
239
  pulumi.set(__self__, "address", address)
@@ -241,7 +242,7 @@ class PrivateNicPrivateIp(dict):
241
242
 
242
243
  @property
243
244
  @pulumi.getter
244
- def address(self) -> Optional[str]:
245
+ def address(self) -> Optional[builtins.str]:
245
246
  """
246
247
  The private IP address.
247
248
  """
@@ -249,7 +250,7 @@ class PrivateNicPrivateIp(dict):
249
250
 
250
251
  @property
251
252
  @pulumi.getter
252
- def id(self) -> Optional[str]:
253
+ def id(self) -> Optional[builtins.str]:
253
254
  """
254
255
  The ID of the IP address resource.
255
256
  """
@@ -278,19 +279,19 @@ class SecurityGroupInboundRule(dict):
278
279
  return super().get(key, default)
279
280
 
280
281
  def __init__(__self__, *,
281
- action: str,
282
- ip: Optional[str] = None,
283
- ip_range: Optional[str] = None,
284
- port: Optional[int] = None,
285
- port_range: Optional[str] = None,
286
- protocol: Optional[str] = None):
287
- """
288
- :param str action: The action to take when rule match. Possible values are: `accept` or `drop`.
289
- :param str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
290
- :param str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
291
- :param int port: The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
292
- :param str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
293
- :param str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
282
+ action: builtins.str,
283
+ ip: Optional[builtins.str] = None,
284
+ ip_range: Optional[builtins.str] = None,
285
+ port: Optional[builtins.int] = None,
286
+ port_range: Optional[builtins.str] = None,
287
+ protocol: Optional[builtins.str] = None):
288
+ """
289
+ :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
290
+ :param builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
291
+ :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
292
+ :param builtins.int port: The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
293
+ :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
294
+ :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
294
295
  """
295
296
  pulumi.set(__self__, "action", action)
296
297
  if ip is not None:
@@ -306,7 +307,7 @@ class SecurityGroupInboundRule(dict):
306
307
 
307
308
  @property
308
309
  @pulumi.getter
309
- def action(self) -> str:
310
+ def action(self) -> builtins.str:
310
311
  """
311
312
  The action to take when rule match. Possible values are: `accept` or `drop`.
312
313
  """
@@ -315,7 +316,7 @@ class SecurityGroupInboundRule(dict):
315
316
  @property
316
317
  @pulumi.getter
317
318
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
318
- def ip(self) -> Optional[str]:
319
+ def ip(self) -> Optional[builtins.str]:
319
320
  """
320
321
  The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
321
322
  """
@@ -323,7 +324,7 @@ class SecurityGroupInboundRule(dict):
323
324
 
324
325
  @property
325
326
  @pulumi.getter(name="ipRange")
326
- def ip_range(self) -> Optional[str]:
327
+ def ip_range(self) -> Optional[builtins.str]:
327
328
  """
328
329
  The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
329
330
  """
@@ -331,7 +332,7 @@ class SecurityGroupInboundRule(dict):
331
332
 
332
333
  @property
333
334
  @pulumi.getter
334
- def port(self) -> Optional[int]:
335
+ def port(self) -> Optional[builtins.int]:
335
336
  """
336
337
  The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
337
338
  """
@@ -339,7 +340,7 @@ class SecurityGroupInboundRule(dict):
339
340
 
340
341
  @property
341
342
  @pulumi.getter(name="portRange")
342
- def port_range(self) -> Optional[str]:
343
+ def port_range(self) -> Optional[builtins.str]:
343
344
  """
344
345
  Computed port range for this rule (e.g: 1-1024, 22-22)
345
346
  """
@@ -347,7 +348,7 @@ class SecurityGroupInboundRule(dict):
347
348
 
348
349
  @property
349
350
  @pulumi.getter
350
- def protocol(self) -> Optional[str]:
351
+ def protocol(self) -> Optional[builtins.str]:
351
352
  """
352
353
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
353
354
  """
@@ -376,19 +377,19 @@ class SecurityGroupOutboundRule(dict):
376
377
  return super().get(key, default)
377
378
 
378
379
  def __init__(__self__, *,
379
- action: str,
380
- ip: Optional[str] = None,
381
- ip_range: Optional[str] = None,
382
- port: Optional[int] = None,
383
- port_range: Optional[str] = None,
384
- protocol: Optional[str] = None):
385
- """
386
- :param str action: Action when rule match request (drop or accept)
387
- :param str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
388
- :param str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
389
- :param int port: Network port for this rule
390
- :param str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
391
- :param str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
380
+ action: builtins.str,
381
+ ip: Optional[builtins.str] = None,
382
+ ip_range: Optional[builtins.str] = None,
383
+ port: Optional[builtins.int] = None,
384
+ port_range: Optional[builtins.str] = None,
385
+ protocol: Optional[builtins.str] = None):
386
+ """
387
+ :param builtins.str action: Action when rule match request (drop or accept)
388
+ :param builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
389
+ :param builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
390
+ :param builtins.int port: Network port for this rule
391
+ :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
392
+ :param builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
392
393
  """
393
394
  pulumi.set(__self__, "action", action)
394
395
  if ip is not None:
@@ -404,7 +405,7 @@ class SecurityGroupOutboundRule(dict):
404
405
 
405
406
  @property
406
407
  @pulumi.getter
407
- def action(self) -> str:
408
+ def action(self) -> builtins.str:
408
409
  """
409
410
  Action when rule match request (drop or accept)
410
411
  """
@@ -413,7 +414,7 @@ class SecurityGroupOutboundRule(dict):
413
414
  @property
414
415
  @pulumi.getter
415
416
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
416
- def ip(self) -> Optional[str]:
417
+ def ip(self) -> Optional[builtins.str]:
417
418
  """
418
419
  Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
419
420
  """
@@ -421,7 +422,7 @@ class SecurityGroupOutboundRule(dict):
421
422
 
422
423
  @property
423
424
  @pulumi.getter(name="ipRange")
424
- def ip_range(self) -> Optional[str]:
425
+ def ip_range(self) -> Optional[builtins.str]:
425
426
  """
426
427
  Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
427
428
  """
@@ -429,7 +430,7 @@ class SecurityGroupOutboundRule(dict):
429
430
 
430
431
  @property
431
432
  @pulumi.getter
432
- def port(self) -> Optional[int]:
433
+ def port(self) -> Optional[builtins.int]:
433
434
  """
434
435
  Network port for this rule
435
436
  """
@@ -437,7 +438,7 @@ class SecurityGroupOutboundRule(dict):
437
438
 
438
439
  @property
439
440
  @pulumi.getter(name="portRange")
440
- def port_range(self) -> Optional[str]:
441
+ def port_range(self) -> Optional[builtins.str]:
441
442
  """
442
443
  Computed port range for this rule (e.g: 1-1024, 22-22)
443
444
  """
@@ -445,7 +446,7 @@ class SecurityGroupOutboundRule(dict):
445
446
 
446
447
  @property
447
448
  @pulumi.getter
448
- def protocol(self) -> Optional[str]:
449
+ def protocol(self) -> Optional[builtins.str]:
449
450
  """
450
451
  Protocol for this rule (TCP, UDP, ICMP or ANY)
451
452
  """
@@ -474,19 +475,19 @@ class SecurityGroupRulesInboundRule(dict):
474
475
  return super().get(key, default)
475
476
 
476
477
  def __init__(__self__, *,
477
- action: str,
478
- ip: Optional[str] = None,
479
- ip_range: Optional[str] = None,
480
- port: Optional[int] = None,
481
- port_range: Optional[str] = None,
482
- protocol: Optional[str] = None):
483
- """
484
- :param str action: The action to take when rule match. Possible values are: `accept` or `drop`.
485
- :param str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
486
- :param str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
487
- :param int port: The port this rule apply to. If no port is specified, rule will apply to all port.
488
- :param str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
489
- :param str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
478
+ action: builtins.str,
479
+ ip: Optional[builtins.str] = None,
480
+ ip_range: Optional[builtins.str] = None,
481
+ port: Optional[builtins.int] = None,
482
+ port_range: Optional[builtins.str] = None,
483
+ protocol: Optional[builtins.str] = None):
484
+ """
485
+ :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
486
+ :param builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
487
+ :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
488
+ :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
489
+ :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
490
+ :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
490
491
  """
491
492
  pulumi.set(__self__, "action", action)
492
493
  if ip is not None:
@@ -502,7 +503,7 @@ class SecurityGroupRulesInboundRule(dict):
502
503
 
503
504
  @property
504
505
  @pulumi.getter
505
- def action(self) -> str:
506
+ def action(self) -> builtins.str:
506
507
  """
507
508
  The action to take when rule match. Possible values are: `accept` or `drop`.
508
509
  """
@@ -511,7 +512,7 @@ class SecurityGroupRulesInboundRule(dict):
511
512
  @property
512
513
  @pulumi.getter
513
514
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
514
- def ip(self) -> Optional[str]:
515
+ def ip(self) -> Optional[builtins.str]:
515
516
  """
516
517
  The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
517
518
  """
@@ -519,7 +520,7 @@ class SecurityGroupRulesInboundRule(dict):
519
520
 
520
521
  @property
521
522
  @pulumi.getter(name="ipRange")
522
- def ip_range(self) -> Optional[str]:
523
+ def ip_range(self) -> Optional[builtins.str]:
523
524
  """
524
525
  The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
525
526
  """
@@ -527,7 +528,7 @@ class SecurityGroupRulesInboundRule(dict):
527
528
 
528
529
  @property
529
530
  @pulumi.getter
530
- def port(self) -> Optional[int]:
531
+ def port(self) -> Optional[builtins.int]:
531
532
  """
532
533
  The port this rule apply to. If no port is specified, rule will apply to all port.
533
534
  """
@@ -535,7 +536,7 @@ class SecurityGroupRulesInboundRule(dict):
535
536
 
536
537
  @property
537
538
  @pulumi.getter(name="portRange")
538
- def port_range(self) -> Optional[str]:
539
+ def port_range(self) -> Optional[builtins.str]:
539
540
  """
540
541
  Computed port range for this rule (e.g: 1-1024, 22-22)
541
542
  """
@@ -543,7 +544,7 @@ class SecurityGroupRulesInboundRule(dict):
543
544
 
544
545
  @property
545
546
  @pulumi.getter
546
- def protocol(self) -> Optional[str]:
547
+ def protocol(self) -> Optional[builtins.str]:
547
548
  """
548
549
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
549
550
  """
@@ -572,19 +573,19 @@ class SecurityGroupRulesOutboundRule(dict):
572
573
  return super().get(key, default)
573
574
 
574
575
  def __init__(__self__, *,
575
- action: str,
576
- ip: Optional[str] = None,
577
- ip_range: Optional[str] = None,
578
- port: Optional[int] = None,
579
- port_range: Optional[str] = None,
580
- protocol: Optional[str] = None):
581
- """
582
- :param str action: Action when rule match request (drop or accept)
583
- :param str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
584
- :param str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
585
- :param int port: Network port for this rule
586
- :param str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
587
- :param str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
576
+ action: builtins.str,
577
+ ip: Optional[builtins.str] = None,
578
+ ip_range: Optional[builtins.str] = None,
579
+ port: Optional[builtins.int] = None,
580
+ port_range: Optional[builtins.str] = None,
581
+ protocol: Optional[builtins.str] = None):
582
+ """
583
+ :param builtins.str action: Action when rule match request (drop or accept)
584
+ :param builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
585
+ :param builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
586
+ :param builtins.int port: Network port for this rule
587
+ :param builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
588
+ :param builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
588
589
  """
589
590
  pulumi.set(__self__, "action", action)
590
591
  if ip is not None:
@@ -600,7 +601,7 @@ class SecurityGroupRulesOutboundRule(dict):
600
601
 
601
602
  @property
602
603
  @pulumi.getter
603
- def action(self) -> str:
604
+ def action(self) -> builtins.str:
604
605
  """
605
606
  Action when rule match request (drop or accept)
606
607
  """
@@ -609,7 +610,7 @@ class SecurityGroupRulesOutboundRule(dict):
609
610
  @property
610
611
  @pulumi.getter
611
612
  @_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
612
- def ip(self) -> Optional[str]:
613
+ def ip(self) -> Optional[builtins.str]:
613
614
  """
614
615
  Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
615
616
  """
@@ -617,7 +618,7 @@ class SecurityGroupRulesOutboundRule(dict):
617
618
 
618
619
  @property
619
620
  @pulumi.getter(name="ipRange")
620
- def ip_range(self) -> Optional[str]:
621
+ def ip_range(self) -> Optional[builtins.str]:
621
622
  """
622
623
  Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
623
624
  """
@@ -625,7 +626,7 @@ class SecurityGroupRulesOutboundRule(dict):
625
626
 
626
627
  @property
627
628
  @pulumi.getter
628
- def port(self) -> Optional[int]:
629
+ def port(self) -> Optional[builtins.int]:
629
630
  """
630
631
  Network port for this rule
631
632
  """
@@ -633,7 +634,7 @@ class SecurityGroupRulesOutboundRule(dict):
633
634
 
634
635
  @property
635
636
  @pulumi.getter(name="portRange")
636
- def port_range(self) -> Optional[str]:
637
+ def port_range(self) -> Optional[builtins.str]:
637
638
  """
638
639
  Computed port range for this rule (e.g: 1-1024, 22-22)
639
640
  """
@@ -641,7 +642,7 @@ class SecurityGroupRulesOutboundRule(dict):
641
642
 
642
643
  @property
643
644
  @pulumi.getter
644
- def protocol(self) -> Optional[str]:
645
+ def protocol(self) -> Optional[builtins.str]:
645
646
  """
646
647
  Protocol for this rule (TCP, UDP, ICMP or ANY)
647
648
  """
@@ -651,11 +652,11 @@ class SecurityGroupRulesOutboundRule(dict):
651
652
  @pulumi.output_type
652
653
  class ServerPrivateIp(dict):
653
654
  def __init__(__self__, *,
654
- address: Optional[str] = None,
655
- id: Optional[str] = None):
655
+ address: Optional[builtins.str] = None,
656
+ id: Optional[builtins.str] = None):
656
657
  """
657
- :param str address: The private IP address.
658
- :param str id: The ID of the IP address resource.
658
+ :param builtins.str address: The private IP address.
659
+ :param builtins.str id: The ID of the IP address resource.
659
660
  """
660
661
  if address is not None:
661
662
  pulumi.set(__self__, "address", address)
@@ -664,7 +665,7 @@ class ServerPrivateIp(dict):
664
665
 
665
666
  @property
666
667
  @pulumi.getter
667
- def address(self) -> Optional[str]:
668
+ def address(self) -> Optional[builtins.str]:
668
669
  """
669
670
  The private IP address.
670
671
  """
@@ -672,7 +673,7 @@ class ServerPrivateIp(dict):
672
673
 
673
674
  @property
674
675
  @pulumi.getter
675
- def id(self) -> Optional[str]:
676
+ def id(self) -> Optional[builtins.str]:
676
677
  """
677
678
  The ID of the IP address resource.
678
679
  """
@@ -703,17 +704,17 @@ class ServerPrivateNetwork(dict):
703
704
  return super().get(key, default)
704
705
 
705
706
  def __init__(__self__, *,
706
- pn_id: str,
707
- mac_address: Optional[str] = None,
708
- pnic_id: Optional[str] = None,
709
- status: Optional[str] = None,
710
- zone: Optional[str] = None):
711
- """
712
- :param str pn_id: The Private Network ID
713
- :param str mac_address: MAC address of the NIC
714
- :param str pnic_id: The ID of the NIC
715
- :param str status: The private NIC state
716
- :param str zone: `zone`) The zone in which the server should be created.
707
+ pn_id: builtins.str,
708
+ mac_address: Optional[builtins.str] = None,
709
+ pnic_id: Optional[builtins.str] = None,
710
+ status: Optional[builtins.str] = None,
711
+ zone: Optional[builtins.str] = None):
712
+ """
713
+ :param builtins.str pn_id: The Private Network ID
714
+ :param builtins.str mac_address: MAC address of the NIC
715
+ :param builtins.str pnic_id: The ID of the NIC
716
+ :param builtins.str status: The private NIC state
717
+ :param builtins.str zone: `zone`) The zone in which the server should be created.
717
718
  """
718
719
  pulumi.set(__self__, "pn_id", pn_id)
719
720
  if mac_address is not None:
@@ -727,7 +728,7 @@ class ServerPrivateNetwork(dict):
727
728
 
728
729
  @property
729
730
  @pulumi.getter(name="pnId")
730
- def pn_id(self) -> str:
731
+ def pn_id(self) -> builtins.str:
731
732
  """
732
733
  The Private Network ID
733
734
  """
@@ -735,7 +736,7 @@ class ServerPrivateNetwork(dict):
735
736
 
736
737
  @property
737
738
  @pulumi.getter(name="macAddress")
738
- def mac_address(self) -> Optional[str]:
739
+ def mac_address(self) -> Optional[builtins.str]:
739
740
  """
740
741
  MAC address of the NIC
741
742
  """
@@ -743,7 +744,7 @@ class ServerPrivateNetwork(dict):
743
744
 
744
745
  @property
745
746
  @pulumi.getter(name="pnicId")
746
- def pnic_id(self) -> Optional[str]:
747
+ def pnic_id(self) -> Optional[builtins.str]:
747
748
  """
748
749
  The ID of the NIC
749
750
  """
@@ -751,7 +752,7 @@ class ServerPrivateNetwork(dict):
751
752
 
752
753
  @property
753
754
  @pulumi.getter
754
- def status(self) -> Optional[str]:
755
+ def status(self) -> Optional[builtins.str]:
755
756
  """
756
757
  The private NIC state
757
758
  """
@@ -759,7 +760,7 @@ class ServerPrivateNetwork(dict):
759
760
 
760
761
  @property
761
762
  @pulumi.getter
762
- def zone(self) -> Optional[str]:
763
+ def zone(self) -> Optional[builtins.str]:
763
764
  """
764
765
  `zone`) The zone in which the server should be created.
765
766
  """
@@ -769,11 +770,11 @@ class ServerPrivateNetwork(dict):
769
770
  @pulumi.output_type
770
771
  class ServerPublicIp(dict):
771
772
  def __init__(__self__, *,
772
- address: Optional[str] = None,
773
- id: Optional[str] = None):
773
+ address: Optional[builtins.str] = None,
774
+ id: Optional[builtins.str] = None):
774
775
  """
775
- :param str address: The address of the IP
776
- :param str id: The ID of the IP
776
+ :param builtins.str address: The address of the IP
777
+ :param builtins.str id: The ID of the IP
777
778
  """
778
779
  if address is not None:
779
780
  pulumi.set(__self__, "address", address)
@@ -782,7 +783,7 @@ class ServerPublicIp(dict):
782
783
 
783
784
  @property
784
785
  @pulumi.getter
785
- def address(self) -> Optional[str]:
786
+ def address(self) -> Optional[builtins.str]:
786
787
  """
787
788
  The address of the IP
788
789
  """
@@ -790,7 +791,7 @@ class ServerPublicIp(dict):
790
791
 
791
792
  @property
792
793
  @pulumi.getter
793
- def id(self) -> Optional[str]:
794
+ def id(self) -> Optional[builtins.str]:
794
795
  """
795
796
  The ID of the IP
796
797
  """
@@ -825,26 +826,26 @@ class ServerRootVolume(dict):
825
826
  return super().get(key, default)
826
827
 
827
828
  def __init__(__self__, *,
828
- boot: Optional[bool] = None,
829
- delete_on_termination: Optional[bool] = None,
830
- name: Optional[str] = None,
831
- sbs_iops: Optional[int] = None,
832
- size_in_gb: Optional[int] = None,
833
- volume_id: Optional[str] = None,
834
- volume_type: Optional[str] = None):
835
- """
836
- :param bool boot: Set the volume where the boot the server
837
- :param bool delete_on_termination: Forces deletion of the root volume on instance termination.
838
- :param str name: The name of the server.
839
- :param int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
829
+ boot: Optional[builtins.bool] = None,
830
+ delete_on_termination: Optional[builtins.bool] = None,
831
+ name: Optional[builtins.str] = None,
832
+ sbs_iops: Optional[builtins.int] = None,
833
+ size_in_gb: Optional[builtins.int] = None,
834
+ volume_id: Optional[builtins.str] = None,
835
+ volume_type: Optional[builtins.str] = None):
836
+ """
837
+ :param builtins.bool boot: Set the volume where the boot the server
838
+ :param builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
839
+ :param builtins.str name: The name of the server.
840
+ :param builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
840
841
 
841
842
  > **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
842
- :param int size_in_gb: Size of the root volume in gigabytes.
843
+ :param builtins.int size_in_gb: Size of the root volume in gigabytes.
843
844
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
844
845
  check the `volumes_constraint.{min|max}_size` (in bytes) for your `commercial_type`.
845
846
  Depending on `volume_type`, updates to this field may recreate a new resource.
846
- :param str volume_id: The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
847
- :param str volume_type: Volume type of root volume, can be `b_ssd`, `l_ssd` or `sbs_volume`, default value depends on server type
847
+ :param builtins.str volume_id: The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
848
+ :param builtins.str volume_type: Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
848
849
  """
849
850
  if boot is not None:
850
851
  pulumi.set(__self__, "boot", boot)
@@ -863,7 +864,7 @@ class ServerRootVolume(dict):
863
864
 
864
865
  @property
865
866
  @pulumi.getter
866
- def boot(self) -> Optional[bool]:
867
+ def boot(self) -> Optional[builtins.bool]:
867
868
  """
868
869
  Set the volume where the boot the server
869
870
  """
@@ -871,7 +872,7 @@ class ServerRootVolume(dict):
871
872
 
872
873
  @property
873
874
  @pulumi.getter(name="deleteOnTermination")
874
- def delete_on_termination(self) -> Optional[bool]:
875
+ def delete_on_termination(self) -> Optional[builtins.bool]:
875
876
  """
876
877
  Forces deletion of the root volume on instance termination.
877
878
  """
@@ -879,7 +880,7 @@ class ServerRootVolume(dict):
879
880
 
880
881
  @property
881
882
  @pulumi.getter
882
- def name(self) -> Optional[str]:
883
+ def name(self) -> Optional[builtins.str]:
883
884
  """
884
885
  The name of the server.
885
886
  """
@@ -887,7 +888,7 @@ class ServerRootVolume(dict):
887
888
 
888
889
  @property
889
890
  @pulumi.getter(name="sbsIops")
890
- def sbs_iops(self) -> Optional[int]:
891
+ def sbs_iops(self) -> Optional[builtins.int]:
891
892
  """
892
893
  Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
893
894
 
@@ -897,7 +898,7 @@ class ServerRootVolume(dict):
897
898
 
898
899
  @property
899
900
  @pulumi.getter(name="sizeInGb")
900
- def size_in_gb(self) -> Optional[int]:
901
+ def size_in_gb(self) -> Optional[builtins.int]:
901
902
  """
902
903
  Size of the root volume in gigabytes.
903
904
  To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
@@ -908,7 +909,7 @@ class ServerRootVolume(dict):
908
909
 
909
910
  @property
910
911
  @pulumi.getter(name="volumeId")
911
- def volume_id(self) -> Optional[str]:
912
+ def volume_id(self) -> Optional[builtins.str]:
912
913
  """
913
914
  The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
914
915
  """
@@ -916,9 +917,9 @@ class ServerRootVolume(dict):
916
917
 
917
918
  @property
918
919
  @pulumi.getter(name="volumeType")
919
- def volume_type(self) -> Optional[str]:
920
+ def volume_type(self) -> Optional[builtins.str]:
920
921
  """
921
- Volume type of root volume, can be `b_ssd`, `l_ssd` or `sbs_volume`, default value depends on server type
922
+ Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
922
923
  """
923
924
  return pulumi.get(self, "volume_type")
924
925
 
@@ -926,11 +927,11 @@ class ServerRootVolume(dict):
926
927
  @pulumi.output_type
927
928
  class SnapshotImport(dict):
928
929
  def __init__(__self__, *,
929
- bucket: str,
930
- key: str):
930
+ bucket: builtins.str,
931
+ key: builtins.str):
931
932
  """
932
- :param str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
933
- :param str key: Key of the object to import
933
+ :param builtins.str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
934
+ :param builtins.str key: Key of the object to import
934
935
 
935
936
  > **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
936
937
  """
@@ -939,7 +940,7 @@ class SnapshotImport(dict):
939
940
 
940
941
  @property
941
942
  @pulumi.getter
942
- def bucket(self) -> str:
943
+ def bucket(self) -> builtins.str:
943
944
  """
944
945
  Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
945
946
  """
@@ -947,7 +948,7 @@ class SnapshotImport(dict):
947
948
 
948
949
  @property
949
950
  @pulumi.getter
950
- def key(self) -> str:
951
+ def key(self) -> builtins.str:
951
952
  """
952
953
  Key of the object to import
953
954
 
@@ -959,18 +960,18 @@ class SnapshotImport(dict):
959
960
  @pulumi.output_type
960
961
  class GetPrivateNicPrivateIpResult(dict):
961
962
  def __init__(__self__, *,
962
- address: str,
963
- id: str):
963
+ address: builtins.str,
964
+ id: builtins.str):
964
965
  """
965
- :param str address: The private IP address
966
- :param str id: The ID of the IP address resource
966
+ :param builtins.str address: The private IP address
967
+ :param builtins.str id: The ID of the IP address resource
967
968
  """
968
969
  pulumi.set(__self__, "address", address)
969
970
  pulumi.set(__self__, "id", id)
970
971
 
971
972
  @property
972
973
  @pulumi.getter
973
- def address(self) -> str:
974
+ def address(self) -> builtins.str:
974
975
  """
975
976
  The private IP address
976
977
  """
@@ -978,7 +979,7 @@ class GetPrivateNicPrivateIpResult(dict):
978
979
 
979
980
  @property
980
981
  @pulumi.getter
981
- def id(self) -> str:
982
+ def id(self) -> builtins.str:
982
983
  """
983
984
  The ID of the IP address resource
984
985
  """
@@ -988,21 +989,21 @@ class GetPrivateNicPrivateIpResult(dict):
988
989
  @pulumi.output_type
989
990
  class GetSecurityGroupInboundRuleResult(dict):
990
991
  def __init__(__self__, *,
991
- action: str,
992
- ip: str,
993
- ip_range: str,
994
- port: int,
995
- port_range: str,
996
- protocol: str):
997
- """
998
- :param str action: The action to take when rule match. Possible values are: `accept` or `drop`.
999
- :param str ip: The ip this rule apply to.
1000
- :param str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1001
- :param int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1002
- :param str port_range: The port range (e.g `22-23`) this rule applies to.
992
+ action: builtins.str,
993
+ ip: builtins.str,
994
+ ip_range: builtins.str,
995
+ port: builtins.int,
996
+ port_range: builtins.str,
997
+ protocol: builtins.str):
998
+ """
999
+ :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1000
+ :param builtins.str ip: The ip this rule apply to.
1001
+ :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1002
+ :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1003
+ :param builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1003
1004
  If no `port` nor `port_range` are specified, rule will apply to all port.
1004
1005
  Only one of `port` and `port_range` should be specified.
1005
- :param str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1006
+ :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1006
1007
  """
1007
1008
  pulumi.set(__self__, "action", action)
1008
1009
  pulumi.set(__self__, "ip", ip)
@@ -1013,7 +1014,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1013
1014
 
1014
1015
  @property
1015
1016
  @pulumi.getter
1016
- def action(self) -> str:
1017
+ def action(self) -> builtins.str:
1017
1018
  """
1018
1019
  The action to take when rule match. Possible values are: `accept` or `drop`.
1019
1020
  """
@@ -1021,7 +1022,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1021
1022
 
1022
1023
  @property
1023
1024
  @pulumi.getter
1024
- def ip(self) -> str:
1025
+ def ip(self) -> builtins.str:
1025
1026
  """
1026
1027
  The ip this rule apply to.
1027
1028
  """
@@ -1029,7 +1030,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1029
1030
 
1030
1031
  @property
1031
1032
  @pulumi.getter(name="ipRange")
1032
- def ip_range(self) -> str:
1033
+ def ip_range(self) -> builtins.str:
1033
1034
  """
1034
1035
  The ip range (e.g `192.168.1.0/24`) this rule apply to.
1035
1036
  """
@@ -1037,7 +1038,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1037
1038
 
1038
1039
  @property
1039
1040
  @pulumi.getter
1040
- def port(self) -> int:
1041
+ def port(self) -> builtins.int:
1041
1042
  """
1042
1043
  The port this rule apply to. If no port is specified, rule will apply to all port.
1043
1044
  """
@@ -1045,7 +1046,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1045
1046
 
1046
1047
  @property
1047
1048
  @pulumi.getter(name="portRange")
1048
- def port_range(self) -> str:
1049
+ def port_range(self) -> builtins.str:
1049
1050
  """
1050
1051
  The port range (e.g `22-23`) this rule applies to.
1051
1052
  If no `port` nor `port_range` are specified, rule will apply to all port.
@@ -1055,7 +1056,7 @@ class GetSecurityGroupInboundRuleResult(dict):
1055
1056
 
1056
1057
  @property
1057
1058
  @pulumi.getter
1058
- def protocol(self) -> str:
1059
+ def protocol(self) -> builtins.str:
1059
1060
  """
1060
1061
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1061
1062
  """
@@ -1065,21 +1066,21 @@ class GetSecurityGroupInboundRuleResult(dict):
1065
1066
  @pulumi.output_type
1066
1067
  class GetSecurityGroupOutboundRuleResult(dict):
1067
1068
  def __init__(__self__, *,
1068
- action: str,
1069
- ip: str,
1070
- ip_range: str,
1071
- port: int,
1072
- port_range: str,
1073
- protocol: str):
1074
- """
1075
- :param str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1076
- :param str ip: The ip this rule apply to.
1077
- :param str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1078
- :param int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1079
- :param str port_range: The port range (e.g `22-23`) this rule applies to.
1069
+ action: builtins.str,
1070
+ ip: builtins.str,
1071
+ ip_range: builtins.str,
1072
+ port: builtins.int,
1073
+ port_range: builtins.str,
1074
+ protocol: builtins.str):
1075
+ """
1076
+ :param builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
1077
+ :param builtins.str ip: The ip this rule apply to.
1078
+ :param builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
1079
+ :param builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
1080
+ :param builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
1080
1081
  If no `port` nor `port_range` are specified, rule will apply to all port.
1081
1082
  Only one of `port` and `port_range` should be specified.
1082
- :param str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1083
+ :param builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1083
1084
  """
1084
1085
  pulumi.set(__self__, "action", action)
1085
1086
  pulumi.set(__self__, "ip", ip)
@@ -1090,7 +1091,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1090
1091
 
1091
1092
  @property
1092
1093
  @pulumi.getter
1093
- def action(self) -> str:
1094
+ def action(self) -> builtins.str:
1094
1095
  """
1095
1096
  The action to take when rule match. Possible values are: `accept` or `drop`.
1096
1097
  """
@@ -1098,7 +1099,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1098
1099
 
1099
1100
  @property
1100
1101
  @pulumi.getter
1101
- def ip(self) -> str:
1102
+ def ip(self) -> builtins.str:
1102
1103
  """
1103
1104
  The ip this rule apply to.
1104
1105
  """
@@ -1106,7 +1107,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1106
1107
 
1107
1108
  @property
1108
1109
  @pulumi.getter(name="ipRange")
1109
- def ip_range(self) -> str:
1110
+ def ip_range(self) -> builtins.str:
1110
1111
  """
1111
1112
  The ip range (e.g `192.168.1.0/24`) this rule apply to.
1112
1113
  """
@@ -1114,7 +1115,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1114
1115
 
1115
1116
  @property
1116
1117
  @pulumi.getter
1117
- def port(self) -> int:
1118
+ def port(self) -> builtins.int:
1118
1119
  """
1119
1120
  The port this rule apply to. If no port is specified, rule will apply to all port.
1120
1121
  """
@@ -1122,7 +1123,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1122
1123
 
1123
1124
  @property
1124
1125
  @pulumi.getter(name="portRange")
1125
- def port_range(self) -> str:
1126
+ def port_range(self) -> builtins.str:
1126
1127
  """
1127
1128
  The port range (e.g `22-23`) this rule applies to.
1128
1129
  If no `port` nor `port_range` are specified, rule will apply to all port.
@@ -1132,7 +1133,7 @@ class GetSecurityGroupOutboundRuleResult(dict):
1132
1133
 
1133
1134
  @property
1134
1135
  @pulumi.getter
1135
- def protocol(self) -> str:
1136
+ def protocol(self) -> builtins.str:
1136
1137
  """
1137
1138
  The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
1138
1139
  """
@@ -1142,18 +1143,18 @@ class GetSecurityGroupOutboundRuleResult(dict):
1142
1143
  @pulumi.output_type
1143
1144
  class GetServerPrivateIpResult(dict):
1144
1145
  def __init__(__self__, *,
1145
- address: str,
1146
- id: str):
1146
+ address: builtins.str,
1147
+ id: builtins.str):
1147
1148
  """
1148
- :param str address: The address of the IP
1149
- :param str id: The ID of the IP
1149
+ :param builtins.str address: The address of the IP
1150
+ :param builtins.str id: The ID of the IP
1150
1151
  """
1151
1152
  pulumi.set(__self__, "address", address)
1152
1153
  pulumi.set(__self__, "id", id)
1153
1154
 
1154
1155
  @property
1155
1156
  @pulumi.getter
1156
- def address(self) -> str:
1157
+ def address(self) -> builtins.str:
1157
1158
  """
1158
1159
  The address of the IP
1159
1160
  """
@@ -1161,7 +1162,7 @@ class GetServerPrivateIpResult(dict):
1161
1162
 
1162
1163
  @property
1163
1164
  @pulumi.getter
1164
- def id(self) -> str:
1165
+ def id(self) -> builtins.str:
1165
1166
  """
1166
1167
  The ID of the IP
1167
1168
  """
@@ -1171,17 +1172,17 @@ class GetServerPrivateIpResult(dict):
1171
1172
  @pulumi.output_type
1172
1173
  class GetServerPrivateNetworkResult(dict):
1173
1174
  def __init__(__self__, *,
1174
- mac_address: str,
1175
- pn_id: str,
1176
- pnic_id: str,
1177
- status: str,
1178
- zone: str):
1179
- """
1180
- :param str mac_address: MAC address of the NIC
1181
- :param str pn_id: The Private Network ID
1182
- :param str pnic_id: The ID of the NIC
1183
- :param str status: The private NIC state
1184
- :param str zone: `zone`) The zone in which the server exists.
1175
+ mac_address: builtins.str,
1176
+ pn_id: builtins.str,
1177
+ pnic_id: builtins.str,
1178
+ status: builtins.str,
1179
+ zone: builtins.str):
1180
+ """
1181
+ :param builtins.str mac_address: MAC address of the NIC
1182
+ :param builtins.str pn_id: The Private Network ID
1183
+ :param builtins.str pnic_id: The ID of the NIC
1184
+ :param builtins.str status: The private NIC state
1185
+ :param builtins.str zone: `zone`) The zone in which the server exists.
1185
1186
  """
1186
1187
  pulumi.set(__self__, "mac_address", mac_address)
1187
1188
  pulumi.set(__self__, "pn_id", pn_id)
@@ -1191,7 +1192,7 @@ class GetServerPrivateNetworkResult(dict):
1191
1192
 
1192
1193
  @property
1193
1194
  @pulumi.getter(name="macAddress")
1194
- def mac_address(self) -> str:
1195
+ def mac_address(self) -> builtins.str:
1195
1196
  """
1196
1197
  MAC address of the NIC
1197
1198
  """
@@ -1199,7 +1200,7 @@ class GetServerPrivateNetworkResult(dict):
1199
1200
 
1200
1201
  @property
1201
1202
  @pulumi.getter(name="pnId")
1202
- def pn_id(self) -> str:
1203
+ def pn_id(self) -> builtins.str:
1203
1204
  """
1204
1205
  The Private Network ID
1205
1206
  """
@@ -1207,7 +1208,7 @@ class GetServerPrivateNetworkResult(dict):
1207
1208
 
1208
1209
  @property
1209
1210
  @pulumi.getter(name="pnicId")
1210
- def pnic_id(self) -> str:
1211
+ def pnic_id(self) -> builtins.str:
1211
1212
  """
1212
1213
  The ID of the NIC
1213
1214
  """
@@ -1215,7 +1216,7 @@ class GetServerPrivateNetworkResult(dict):
1215
1216
 
1216
1217
  @property
1217
1218
  @pulumi.getter
1218
- def status(self) -> str:
1219
+ def status(self) -> builtins.str:
1219
1220
  """
1220
1221
  The private NIC state
1221
1222
  """
@@ -1223,7 +1224,7 @@ class GetServerPrivateNetworkResult(dict):
1223
1224
 
1224
1225
  @property
1225
1226
  @pulumi.getter
1226
- def zone(self) -> str:
1227
+ def zone(self) -> builtins.str:
1227
1228
  """
1228
1229
  `zone`) The zone in which the server exists.
1229
1230
  """
@@ -1233,18 +1234,18 @@ class GetServerPrivateNetworkResult(dict):
1233
1234
  @pulumi.output_type
1234
1235
  class GetServerPublicIpResult(dict):
1235
1236
  def __init__(__self__, *,
1236
- address: str,
1237
- id: str):
1237
+ address: builtins.str,
1238
+ id: builtins.str):
1238
1239
  """
1239
- :param str address: The address of the IP
1240
- :param str id: The ID of the IP
1240
+ :param builtins.str address: The address of the IP
1241
+ :param builtins.str id: The ID of the IP
1241
1242
  """
1242
1243
  pulumi.set(__self__, "address", address)
1243
1244
  pulumi.set(__self__, "id", id)
1244
1245
 
1245
1246
  @property
1246
1247
  @pulumi.getter
1247
- def address(self) -> str:
1248
+ def address(self) -> builtins.str:
1248
1249
  """
1249
1250
  The address of the IP
1250
1251
  """
@@ -1252,7 +1253,7 @@ class GetServerPublicIpResult(dict):
1252
1253
 
1253
1254
  @property
1254
1255
  @pulumi.getter
1255
- def id(self) -> str:
1256
+ def id(self) -> builtins.str:
1256
1257
  """
1257
1258
  The ID of the IP
1258
1259
  """
@@ -1262,21 +1263,21 @@ class GetServerPublicIpResult(dict):
1262
1263
  @pulumi.output_type
1263
1264
  class GetServerRootVolumeResult(dict):
1264
1265
  def __init__(__self__, *,
1265
- boot: bool,
1266
- delete_on_termination: bool,
1267
- name: str,
1268
- sbs_iops: int,
1269
- size_in_gb: int,
1270
- volume_id: str,
1271
- volume_type: str):
1272
- """
1273
- :param bool boot: Set the volume where the boot the server
1274
- :param bool delete_on_termination: Forces deletion of the root volume on instance termination.
1275
- :param str name: The server name. Only one of `name` and `server_id` should be specified.
1276
- :param int sbs_iops: SBS Volume IOPS, only with volume_type as sbs_volume
1277
- :param int size_in_gb: Size of the root volume in gigabytes.
1278
- :param str volume_id: The volume ID of the root volume of the server.
1279
- :param str volume_type: Volume type of the root volume
1266
+ boot: builtins.bool,
1267
+ delete_on_termination: builtins.bool,
1268
+ name: builtins.str,
1269
+ sbs_iops: builtins.int,
1270
+ size_in_gb: builtins.int,
1271
+ volume_id: builtins.str,
1272
+ volume_type: builtins.str):
1273
+ """
1274
+ :param builtins.bool boot: Set the volume where the boot the server
1275
+ :param builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
1276
+ :param builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
1277
+ :param builtins.int sbs_iops: SBS Volume IOPS, only with volume_type as sbs_volume
1278
+ :param builtins.int size_in_gb: Size of the root volume in gigabytes.
1279
+ :param builtins.str volume_id: The volume ID of the root volume of the server.
1280
+ :param builtins.str volume_type: Volume type of the root volume
1280
1281
  """
1281
1282
  pulumi.set(__self__, "boot", boot)
1282
1283
  pulumi.set(__self__, "delete_on_termination", delete_on_termination)
@@ -1288,7 +1289,7 @@ class GetServerRootVolumeResult(dict):
1288
1289
 
1289
1290
  @property
1290
1291
  @pulumi.getter
1291
- def boot(self) -> bool:
1292
+ def boot(self) -> builtins.bool:
1292
1293
  """
1293
1294
  Set the volume where the boot the server
1294
1295
  """
@@ -1296,7 +1297,7 @@ class GetServerRootVolumeResult(dict):
1296
1297
 
1297
1298
  @property
1298
1299
  @pulumi.getter(name="deleteOnTermination")
1299
- def delete_on_termination(self) -> bool:
1300
+ def delete_on_termination(self) -> builtins.bool:
1300
1301
  """
1301
1302
  Forces deletion of the root volume on instance termination.
1302
1303
  """
@@ -1304,7 +1305,7 @@ class GetServerRootVolumeResult(dict):
1304
1305
 
1305
1306
  @property
1306
1307
  @pulumi.getter
1307
- def name(self) -> str:
1308
+ def name(self) -> builtins.str:
1308
1309
  """
1309
1310
  The server name. Only one of `name` and `server_id` should be specified.
1310
1311
  """
@@ -1312,7 +1313,7 @@ class GetServerRootVolumeResult(dict):
1312
1313
 
1313
1314
  @property
1314
1315
  @pulumi.getter(name="sbsIops")
1315
- def sbs_iops(self) -> int:
1316
+ def sbs_iops(self) -> builtins.int:
1316
1317
  """
1317
1318
  SBS Volume IOPS, only with volume_type as sbs_volume
1318
1319
  """
@@ -1320,7 +1321,7 @@ class GetServerRootVolumeResult(dict):
1320
1321
 
1321
1322
  @property
1322
1323
  @pulumi.getter(name="sizeInGb")
1323
- def size_in_gb(self) -> int:
1324
+ def size_in_gb(self) -> builtins.int:
1324
1325
  """
1325
1326
  Size of the root volume in gigabytes.
1326
1327
  """
@@ -1328,7 +1329,7 @@ class GetServerRootVolumeResult(dict):
1328
1329
 
1329
1330
  @property
1330
1331
  @pulumi.getter(name="volumeId")
1331
- def volume_id(self) -> str:
1332
+ def volume_id(self) -> builtins.str:
1332
1333
  """
1333
1334
  The volume ID of the root volume of the server.
1334
1335
  """
@@ -1336,7 +1337,7 @@ class GetServerRootVolumeResult(dict):
1336
1337
 
1337
1338
  @property
1338
1339
  @pulumi.getter(name="volumeType")
1339
- def volume_type(self) -> str:
1340
+ def volume_type(self) -> builtins.str:
1340
1341
  """
1341
1342
  Volume type of the root volume
1342
1343
  """
@@ -1346,49 +1347,49 @@ class GetServerRootVolumeResult(dict):
1346
1347
  @pulumi.output_type
1347
1348
  class GetServersServerResult(dict):
1348
1349
  def __init__(__self__, *,
1349
- boot_type: str,
1350
- bootscript_id: str,
1351
- enable_dynamic_ip: bool,
1352
- enable_ipv6: bool,
1353
- id: str,
1354
- image: str,
1355
- ipv6_address: str,
1356
- ipv6_gateway: str,
1357
- ipv6_prefix_length: int,
1358
- name: str,
1359
- organization_id: str,
1360
- placement_group_id: str,
1361
- placement_group_policy_respected: bool,
1362
- private_ip: str,
1363
- project_id: str,
1364
- public_ip: str,
1350
+ boot_type: builtins.str,
1351
+ bootscript_id: builtins.str,
1352
+ enable_dynamic_ip: builtins.bool,
1353
+ enable_ipv6: builtins.bool,
1354
+ id: builtins.str,
1355
+ image: builtins.str,
1356
+ ipv6_address: builtins.str,
1357
+ ipv6_gateway: builtins.str,
1358
+ ipv6_prefix_length: builtins.int,
1359
+ name: builtins.str,
1360
+ organization_id: builtins.str,
1361
+ placement_group_id: builtins.str,
1362
+ placement_group_policy_respected: builtins.bool,
1363
+ private_ip: builtins.str,
1364
+ project_id: builtins.str,
1365
+ public_ip: builtins.str,
1365
1366
  public_ips: Sequence['outputs.GetServersServerPublicIpResult'],
1366
- security_group_id: str,
1367
- state: str,
1368
- tags: Sequence[str],
1369
- type: str,
1370
- zone: str):
1371
- """
1372
- :param str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1373
- :param bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
1374
- :param bool enable_ipv6: Determines if IPv6 is enabled for the server.
1375
- :param str id: The ID of the IP
1376
- :param str image: The UUID or the label of the base image used by the server.
1377
- :param str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1378
- :param str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1379
- :param int ipv6_prefix_length: The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
1380
- :param str name: The server name used as filter. Servers with a name like it are listed.
1381
- :param str organization_id: The organization ID the server is associated with.
1382
- :param str placement_group_id: The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
1383
- :param str private_ip: The Scaleway internal IP address of the server.
1384
- :param str project_id: The ID of the project the server is associated with.
1385
- :param str public_ip: The public IP address of the server.
1367
+ security_group_id: builtins.str,
1368
+ state: builtins.str,
1369
+ tags: Sequence[builtins.str],
1370
+ type: builtins.str,
1371
+ zone: builtins.str):
1372
+ """
1373
+ :param builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1374
+ :param builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
1375
+ :param builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
1376
+ :param builtins.str id: The ID of the IP
1377
+ :param builtins.str image: The UUID or the label of the base image used by the server.
1378
+ :param builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1379
+ :param builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1380
+ :param builtins.int ipv6_prefix_length: The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
1381
+ :param builtins.str name: The server name used as filter. Servers with a name like it are listed.
1382
+ :param builtins.str organization_id: The organization ID the server is associated with.
1383
+ :param builtins.str placement_group_id: The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
1384
+ :param builtins.str private_ip: The Scaleway internal IP address of the server.
1385
+ :param builtins.str project_id: The ID of the project the server is associated with.
1386
+ :param builtins.str public_ip: The public IP address of the server.
1386
1387
  :param Sequence['GetServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
1387
- :param str security_group_id: The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
1388
- :param str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
1389
- :param Sequence[str] tags: List of tags used as filter. Servers with these exact tags are listed.
1390
- :param str type: The commercial type of the server.
1391
- :param str zone: `zone`) The zone in which servers exist.
1388
+ :param builtins.str security_group_id: The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
1389
+ :param builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
1390
+ :param Sequence[builtins.str] tags: List of tags used as filter. Servers with these exact tags are listed.
1391
+ :param builtins.str type: The commercial type of the server.
1392
+ :param builtins.str zone: `zone`) The zone in which servers exist.
1392
1393
  """
1393
1394
  pulumi.set(__self__, "boot_type", boot_type)
1394
1395
  pulumi.set(__self__, "bootscript_id", bootscript_id)
@@ -1415,7 +1416,7 @@ class GetServersServerResult(dict):
1415
1416
 
1416
1417
  @property
1417
1418
  @pulumi.getter(name="bootType")
1418
- def boot_type(self) -> str:
1419
+ def boot_type(self) -> builtins.str:
1419
1420
  """
1420
1421
  The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
1421
1422
  """
@@ -1424,12 +1425,12 @@ class GetServersServerResult(dict):
1424
1425
  @property
1425
1426
  @pulumi.getter(name="bootscriptId")
1426
1427
  @_utilities.deprecated("""bootscript are not supported""")
1427
- def bootscript_id(self) -> str:
1428
+ def bootscript_id(self) -> builtins.str:
1428
1429
  return pulumi.get(self, "bootscript_id")
1429
1430
 
1430
1431
  @property
1431
1432
  @pulumi.getter(name="enableDynamicIp")
1432
- def enable_dynamic_ip(self) -> bool:
1433
+ def enable_dynamic_ip(self) -> builtins.bool:
1433
1434
  """
1434
1435
  If true a dynamic IP will be attached to the server.
1435
1436
  """
@@ -1437,7 +1438,7 @@ class GetServersServerResult(dict):
1437
1438
 
1438
1439
  @property
1439
1440
  @pulumi.getter(name="enableIpv6")
1440
- def enable_ipv6(self) -> bool:
1441
+ def enable_ipv6(self) -> builtins.bool:
1441
1442
  """
1442
1443
  Determines if IPv6 is enabled for the server.
1443
1444
  """
@@ -1445,7 +1446,7 @@ class GetServersServerResult(dict):
1445
1446
 
1446
1447
  @property
1447
1448
  @pulumi.getter
1448
- def id(self) -> str:
1449
+ def id(self) -> builtins.str:
1449
1450
  """
1450
1451
  The ID of the IP
1451
1452
  """
@@ -1453,7 +1454,7 @@ class GetServersServerResult(dict):
1453
1454
 
1454
1455
  @property
1455
1456
  @pulumi.getter
1456
- def image(self) -> str:
1457
+ def image(self) -> builtins.str:
1457
1458
  """
1458
1459
  The UUID or the label of the base image used by the server.
1459
1460
  """
@@ -1461,7 +1462,7 @@ class GetServersServerResult(dict):
1461
1462
 
1462
1463
  @property
1463
1464
  @pulumi.getter(name="ipv6Address")
1464
- def ipv6_address(self) -> str:
1465
+ def ipv6_address(self) -> builtins.str:
1465
1466
  """
1466
1467
  The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
1467
1468
  """
@@ -1469,7 +1470,7 @@ class GetServersServerResult(dict):
1469
1470
 
1470
1471
  @property
1471
1472
  @pulumi.getter(name="ipv6Gateway")
1472
- def ipv6_gateway(self) -> str:
1473
+ def ipv6_gateway(self) -> builtins.str:
1473
1474
  """
1474
1475
  The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
1475
1476
  """
@@ -1477,7 +1478,7 @@ class GetServersServerResult(dict):
1477
1478
 
1478
1479
  @property
1479
1480
  @pulumi.getter(name="ipv6PrefixLength")
1480
- def ipv6_prefix_length(self) -> int:
1481
+ def ipv6_prefix_length(self) -> builtins.int:
1481
1482
  """
1482
1483
  The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
1483
1484
  """
@@ -1485,7 +1486,7 @@ class GetServersServerResult(dict):
1485
1486
 
1486
1487
  @property
1487
1488
  @pulumi.getter
1488
- def name(self) -> str:
1489
+ def name(self) -> builtins.str:
1489
1490
  """
1490
1491
  The server name used as filter. Servers with a name like it are listed.
1491
1492
  """
@@ -1493,7 +1494,7 @@ class GetServersServerResult(dict):
1493
1494
 
1494
1495
  @property
1495
1496
  @pulumi.getter(name="organizationId")
1496
- def organization_id(self) -> str:
1497
+ def organization_id(self) -> builtins.str:
1497
1498
  """
1498
1499
  The organization ID the server is associated with.
1499
1500
  """
@@ -1501,7 +1502,7 @@ class GetServersServerResult(dict):
1501
1502
 
1502
1503
  @property
1503
1504
  @pulumi.getter(name="placementGroupId")
1504
- def placement_group_id(self) -> str:
1505
+ def placement_group_id(self) -> builtins.str:
1505
1506
  """
1506
1507
  The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
1507
1508
  """
@@ -1509,12 +1510,12 @@ class GetServersServerResult(dict):
1509
1510
 
1510
1511
  @property
1511
1512
  @pulumi.getter(name="placementGroupPolicyRespected")
1512
- def placement_group_policy_respected(self) -> bool:
1513
+ def placement_group_policy_respected(self) -> builtins.bool:
1513
1514
  return pulumi.get(self, "placement_group_policy_respected")
1514
1515
 
1515
1516
  @property
1516
1517
  @pulumi.getter(name="privateIp")
1517
- def private_ip(self) -> str:
1518
+ def private_ip(self) -> builtins.str:
1518
1519
  """
1519
1520
  The Scaleway internal IP address of the server.
1520
1521
  """
@@ -1522,7 +1523,7 @@ class GetServersServerResult(dict):
1522
1523
 
1523
1524
  @property
1524
1525
  @pulumi.getter(name="projectId")
1525
- def project_id(self) -> str:
1526
+ def project_id(self) -> builtins.str:
1526
1527
  """
1527
1528
  The ID of the project the server is associated with.
1528
1529
  """
@@ -1531,7 +1532,7 @@ class GetServersServerResult(dict):
1531
1532
  @property
1532
1533
  @pulumi.getter(name="publicIp")
1533
1534
  @_utilities.deprecated("""Use public_ips instead""")
1534
- def public_ip(self) -> str:
1535
+ def public_ip(self) -> builtins.str:
1535
1536
  """
1536
1537
  The public IP address of the server.
1537
1538
  """
@@ -1547,7 +1548,7 @@ class GetServersServerResult(dict):
1547
1548
 
1548
1549
  @property
1549
1550
  @pulumi.getter(name="securityGroupId")
1550
- def security_group_id(self) -> str:
1551
+ def security_group_id(self) -> builtins.str:
1551
1552
  """
1552
1553
  The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
1553
1554
  """
@@ -1555,7 +1556,7 @@ class GetServersServerResult(dict):
1555
1556
 
1556
1557
  @property
1557
1558
  @pulumi.getter
1558
- def state(self) -> str:
1559
+ def state(self) -> builtins.str:
1559
1560
  """
1560
1561
  The state of the server. Possible values are: `started`, `stopped` or `standby`.
1561
1562
  """
@@ -1563,7 +1564,7 @@ class GetServersServerResult(dict):
1563
1564
 
1564
1565
  @property
1565
1566
  @pulumi.getter
1566
- def tags(self) -> Sequence[str]:
1567
+ def tags(self) -> Sequence[builtins.str]:
1567
1568
  """
1568
1569
  List of tags used as filter. Servers with these exact tags are listed.
1569
1570
  """
@@ -1571,7 +1572,7 @@ class GetServersServerResult(dict):
1571
1572
 
1572
1573
  @property
1573
1574
  @pulumi.getter
1574
- def type(self) -> str:
1575
+ def type(self) -> builtins.str:
1575
1576
  """
1576
1577
  The commercial type of the server.
1577
1578
  """
@@ -1579,7 +1580,7 @@ class GetServersServerResult(dict):
1579
1580
 
1580
1581
  @property
1581
1582
  @pulumi.getter
1582
- def zone(self) -> str:
1583
+ def zone(self) -> builtins.str:
1583
1584
  """
1584
1585
  `zone`) The zone in which servers exist.
1585
1586
  """
@@ -1589,18 +1590,18 @@ class GetServersServerResult(dict):
1589
1590
  @pulumi.output_type
1590
1591
  class GetServersServerPublicIpResult(dict):
1591
1592
  def __init__(__self__, *,
1592
- address: str,
1593
- id: str):
1593
+ address: builtins.str,
1594
+ id: builtins.str):
1594
1595
  """
1595
- :param str address: The address of the IP
1596
- :param str id: The ID of the IP
1596
+ :param builtins.str address: The address of the IP
1597
+ :param builtins.str id: The ID of the IP
1597
1598
  """
1598
1599
  pulumi.set(__self__, "address", address)
1599
1600
  pulumi.set(__self__, "id", id)
1600
1601
 
1601
1602
  @property
1602
1603
  @pulumi.getter
1603
- def address(self) -> str:
1604
+ def address(self) -> builtins.str:
1604
1605
  """
1605
1606
  The address of the IP
1606
1607
  """
@@ -1608,7 +1609,7 @@ class GetServersServerPublicIpResult(dict):
1608
1609
 
1609
1610
  @property
1610
1611
  @pulumi.getter
1611
- def id(self) -> str:
1612
+ def id(self) -> builtins.str:
1612
1613
  """
1613
1614
  The ID of the IP
1614
1615
  """
@@ -1618,18 +1619,18 @@ class GetServersServerPublicIpResult(dict):
1618
1619
  @pulumi.output_type
1619
1620
  class GetSnapshotImportResult(dict):
1620
1621
  def __init__(__self__, *,
1621
- bucket: str,
1622
- key: str):
1622
+ bucket: builtins.str,
1623
+ key: builtins.str):
1623
1624
  """
1624
- :param str bucket: Bucket containing qcow
1625
- :param str key: Key of the qcow file in the specified bucket
1625
+ :param builtins.str bucket: Bucket containing qcow
1626
+ :param builtins.str key: Key of the qcow file in the specified bucket
1626
1627
  """
1627
1628
  pulumi.set(__self__, "bucket", bucket)
1628
1629
  pulumi.set(__self__, "key", key)
1629
1630
 
1630
1631
  @property
1631
1632
  @pulumi.getter
1632
- def bucket(self) -> str:
1633
+ def bucket(self) -> builtins.str:
1633
1634
  """
1634
1635
  Bucket containing qcow
1635
1636
  """
@@ -1637,7 +1638,7 @@ class GetSnapshotImportResult(dict):
1637
1638
 
1638
1639
  @property
1639
1640
  @pulumi.getter
1640
- def key(self) -> str:
1641
+ def key(self) -> builtins.str:
1641
1642
  """
1642
1643
  Key of the qcow file in the specified bucket
1643
1644
  """