pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__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.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
  488. pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
  489. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
  490. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.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
@@ -21,28 +22,28 @@ __all__ = ['VpcGatewayNetworkArgs', 'VpcGatewayNetwork']
21
22
  @pulumi.input_type
22
23
  class VpcGatewayNetworkArgs:
23
24
  def __init__(__self__, *,
24
- gateway_id: pulumi.Input[str],
25
- private_network_id: pulumi.Input[str],
26
- cleanup_dhcp: Optional[pulumi.Input[bool]] = None,
27
- dhcp_id: Optional[pulumi.Input[str]] = None,
28
- enable_dhcp: Optional[pulumi.Input[bool]] = None,
29
- enable_masquerade: Optional[pulumi.Input[bool]] = None,
25
+ gateway_id: pulumi.Input[builtins.str],
26
+ private_network_id: pulumi.Input[builtins.str],
27
+ cleanup_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
28
+ dhcp_id: Optional[pulumi.Input[builtins.str]] = None,
29
+ enable_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
30
+ enable_masquerade: Optional[pulumi.Input[builtins.bool]] = None,
30
31
  ipam_configs: Optional[pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkIpamConfigArgs']]]] = None,
31
32
  private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]]] = None,
32
- static_address: Optional[pulumi.Input[str]] = None,
33
- zone: Optional[pulumi.Input[str]] = None):
33
+ static_address: Optional[pulumi.Input[builtins.str]] = None,
34
+ zone: Optional[pulumi.Input[builtins.str]] = None):
34
35
  """
35
36
  The set of arguments for constructing a VpcGatewayNetwork resource.
36
- :param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
37
- :param pulumi.Input[str] private_network_id: The ID of the Private Network.
38
- :param pulumi.Input[bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
39
- :param pulumi.Input[str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
40
- :param pulumi.Input[bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
41
- :param pulumi.Input[bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
37
+ :param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
38
+ :param pulumi.Input[builtins.str] private_network_id: The ID of the Private Network.
39
+ :param pulumi.Input[builtins.bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
40
+ :param pulumi.Input[builtins.str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
41
+ :param pulumi.Input[builtins.bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
42
+ :param pulumi.Input[builtins.bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
42
43
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkIpamConfigArgs']]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
43
44
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]] private_ips: The private IPv4 address associated with the resource.
44
- :param pulumi.Input[str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
45
- :param pulumi.Input[str] zone: `zone`) The zone in which the gateway network should be created.
45
+ :param pulumi.Input[builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
46
+ :param pulumi.Input[builtins.str] zone: `zone`) The zone in which the gateway network should be created.
46
47
 
47
48
  > **Important:**
48
49
  In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP fields are now deprecated.
@@ -81,77 +82,77 @@ class VpcGatewayNetworkArgs:
81
82
 
82
83
  @property
83
84
  @pulumi.getter(name="gatewayId")
84
- def gateway_id(self) -> pulumi.Input[str]:
85
+ def gateway_id(self) -> pulumi.Input[builtins.str]:
85
86
  """
86
87
  The ID of the Public Gateway.
87
88
  """
88
89
  return pulumi.get(self, "gateway_id")
89
90
 
90
91
  @gateway_id.setter
91
- def gateway_id(self, value: pulumi.Input[str]):
92
+ def gateway_id(self, value: pulumi.Input[builtins.str]):
92
93
  pulumi.set(self, "gateway_id", value)
93
94
 
94
95
  @property
95
96
  @pulumi.getter(name="privateNetworkId")
96
- def private_network_id(self) -> pulumi.Input[str]:
97
+ def private_network_id(self) -> pulumi.Input[builtins.str]:
97
98
  """
98
99
  The ID of the Private Network.
99
100
  """
100
101
  return pulumi.get(self, "private_network_id")
101
102
 
102
103
  @private_network_id.setter
103
- def private_network_id(self, value: pulumi.Input[str]):
104
+ def private_network_id(self, value: pulumi.Input[builtins.str]):
104
105
  pulumi.set(self, "private_network_id", value)
105
106
 
106
107
  @property
107
108
  @pulumi.getter(name="cleanupDhcp")
108
109
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
109
- def cleanup_dhcp(self) -> Optional[pulumi.Input[bool]]:
110
+ def cleanup_dhcp(self) -> Optional[pulumi.Input[builtins.bool]]:
110
111
  """
111
112
  Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
112
113
  """
113
114
  return pulumi.get(self, "cleanup_dhcp")
114
115
 
115
116
  @cleanup_dhcp.setter
116
- def cleanup_dhcp(self, value: Optional[pulumi.Input[bool]]):
117
+ def cleanup_dhcp(self, value: Optional[pulumi.Input[builtins.bool]]):
117
118
  pulumi.set(self, "cleanup_dhcp", value)
118
119
 
119
120
  @property
120
121
  @pulumi.getter(name="dhcpId")
121
122
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
122
- def dhcp_id(self) -> Optional[pulumi.Input[str]]:
123
+ def dhcp_id(self) -> Optional[pulumi.Input[builtins.str]]:
123
124
  """
124
125
  Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
125
126
  """
126
127
  return pulumi.get(self, "dhcp_id")
127
128
 
128
129
  @dhcp_id.setter
129
- def dhcp_id(self, value: Optional[pulumi.Input[str]]):
130
+ def dhcp_id(self, value: Optional[pulumi.Input[builtins.str]]):
130
131
  pulumi.set(self, "dhcp_id", value)
131
132
 
132
133
  @property
133
134
  @pulumi.getter(name="enableDhcp")
134
135
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
135
- def enable_dhcp(self) -> Optional[pulumi.Input[bool]]:
136
+ def enable_dhcp(self) -> Optional[pulumi.Input[builtins.bool]]:
136
137
  """
137
138
  Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
138
139
  """
139
140
  return pulumi.get(self, "enable_dhcp")
140
141
 
141
142
  @enable_dhcp.setter
142
- def enable_dhcp(self, value: Optional[pulumi.Input[bool]]):
143
+ def enable_dhcp(self, value: Optional[pulumi.Input[builtins.bool]]):
143
144
  pulumi.set(self, "enable_dhcp", value)
144
145
 
145
146
  @property
146
147
  @pulumi.getter(name="enableMasquerade")
147
- def enable_masquerade(self) -> Optional[pulumi.Input[bool]]:
148
+ def enable_masquerade(self) -> Optional[pulumi.Input[builtins.bool]]:
148
149
  """
149
150
  Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
150
151
  """
151
152
  return pulumi.get(self, "enable_masquerade")
152
153
 
153
154
  @enable_masquerade.setter
154
- def enable_masquerade(self, value: Optional[pulumi.Input[bool]]):
155
+ def enable_masquerade(self, value: Optional[pulumi.Input[builtins.bool]]):
155
156
  pulumi.set(self, "enable_masquerade", value)
156
157
 
157
158
  @property
@@ -181,19 +182,19 @@ class VpcGatewayNetworkArgs:
181
182
  @property
182
183
  @pulumi.getter(name="staticAddress")
183
184
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
184
- def static_address(self) -> Optional[pulumi.Input[str]]:
185
+ def static_address(self) -> Optional[pulumi.Input[builtins.str]]:
185
186
  """
186
187
  Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
187
188
  """
188
189
  return pulumi.get(self, "static_address")
189
190
 
190
191
  @static_address.setter
191
- def static_address(self, value: Optional[pulumi.Input[str]]):
192
+ def static_address(self, value: Optional[pulumi.Input[builtins.str]]):
192
193
  pulumi.set(self, "static_address", value)
193
194
 
194
195
  @property
195
196
  @pulumi.getter
196
- def zone(self) -> Optional[pulumi.Input[str]]:
197
+ def zone(self) -> Optional[pulumi.Input[builtins.str]]:
197
198
  """
198
199
  `zone`) The zone in which the gateway network should be created.
199
200
 
@@ -204,43 +205,43 @@ class VpcGatewayNetworkArgs:
204
205
  return pulumi.get(self, "zone")
205
206
 
206
207
  @zone.setter
207
- def zone(self, value: Optional[pulumi.Input[str]]):
208
+ def zone(self, value: Optional[pulumi.Input[builtins.str]]):
208
209
  pulumi.set(self, "zone", value)
209
210
 
210
211
 
211
212
  @pulumi.input_type
212
213
  class _VpcGatewayNetworkState:
213
214
  def __init__(__self__, *,
214
- cleanup_dhcp: Optional[pulumi.Input[bool]] = None,
215
- created_at: Optional[pulumi.Input[str]] = None,
216
- dhcp_id: Optional[pulumi.Input[str]] = None,
217
- enable_dhcp: Optional[pulumi.Input[bool]] = None,
218
- enable_masquerade: Optional[pulumi.Input[bool]] = None,
219
- gateway_id: Optional[pulumi.Input[str]] = None,
215
+ cleanup_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
216
+ created_at: Optional[pulumi.Input[builtins.str]] = None,
217
+ dhcp_id: Optional[pulumi.Input[builtins.str]] = None,
218
+ enable_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
219
+ enable_masquerade: Optional[pulumi.Input[builtins.bool]] = None,
220
+ gateway_id: Optional[pulumi.Input[builtins.str]] = None,
220
221
  ipam_configs: Optional[pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkIpamConfigArgs']]]] = None,
221
- mac_address: Optional[pulumi.Input[str]] = None,
222
+ mac_address: Optional[pulumi.Input[builtins.str]] = None,
222
223
  private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]]] = None,
223
- private_network_id: Optional[pulumi.Input[str]] = None,
224
- static_address: Optional[pulumi.Input[str]] = None,
225
- status: Optional[pulumi.Input[str]] = None,
226
- updated_at: Optional[pulumi.Input[str]] = None,
227
- zone: Optional[pulumi.Input[str]] = None):
224
+ private_network_id: Optional[pulumi.Input[builtins.str]] = None,
225
+ static_address: Optional[pulumi.Input[builtins.str]] = None,
226
+ status: Optional[pulumi.Input[builtins.str]] = None,
227
+ updated_at: Optional[pulumi.Input[builtins.str]] = None,
228
+ zone: Optional[pulumi.Input[builtins.str]] = None):
228
229
  """
229
230
  Input properties used for looking up and filtering VpcGatewayNetwork resources.
230
- :param pulumi.Input[bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
231
- :param pulumi.Input[str] created_at: The date and time of the creation of the GatewayNetwork.
232
- :param pulumi.Input[str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
233
- :param pulumi.Input[bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
234
- :param pulumi.Input[bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
235
- :param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
231
+ :param pulumi.Input[builtins.bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
232
+ :param pulumi.Input[builtins.str] created_at: The date and time of the creation of the GatewayNetwork.
233
+ :param pulumi.Input[builtins.str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
234
+ :param pulumi.Input[builtins.bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
235
+ :param pulumi.Input[builtins.bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
236
+ :param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
236
237
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkIpamConfigArgs']]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
237
- :param pulumi.Input[str] mac_address: The MAC address of the GatewayNetwork.
238
+ :param pulumi.Input[builtins.str] mac_address: The MAC address of the GatewayNetwork.
238
239
  :param pulumi.Input[Sequence[pulumi.Input['VpcGatewayNetworkPrivateIpArgs']]] private_ips: The private IPv4 address associated with the resource.
239
- :param pulumi.Input[str] private_network_id: The ID of the Private Network.
240
- :param pulumi.Input[str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
241
- :param pulumi.Input[str] status: The status of the Public Gateway's connection to the Private Network.
242
- :param pulumi.Input[str] updated_at: The date and time of the last update of the GatewayNetwork.
243
- :param pulumi.Input[str] zone: `zone`) The zone in which the gateway network should be created.
240
+ :param pulumi.Input[builtins.str] private_network_id: The ID of the Private Network.
241
+ :param pulumi.Input[builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
242
+ :param pulumi.Input[builtins.str] status: The status of the Public Gateway's connection to the Private Network.
243
+ :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the GatewayNetwork.
244
+ :param pulumi.Input[builtins.str] zone: `zone`) The zone in which the gateway network should be created.
244
245
 
245
246
  > **Important:**
246
247
  In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP fields are now deprecated.
@@ -290,76 +291,76 @@ class _VpcGatewayNetworkState:
290
291
  @property
291
292
  @pulumi.getter(name="cleanupDhcp")
292
293
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
293
- def cleanup_dhcp(self) -> Optional[pulumi.Input[bool]]:
294
+ def cleanup_dhcp(self) -> Optional[pulumi.Input[builtins.bool]]:
294
295
  """
295
296
  Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
296
297
  """
297
298
  return pulumi.get(self, "cleanup_dhcp")
298
299
 
299
300
  @cleanup_dhcp.setter
300
- def cleanup_dhcp(self, value: Optional[pulumi.Input[bool]]):
301
+ def cleanup_dhcp(self, value: Optional[pulumi.Input[builtins.bool]]):
301
302
  pulumi.set(self, "cleanup_dhcp", value)
302
303
 
303
304
  @property
304
305
  @pulumi.getter(name="createdAt")
305
- def created_at(self) -> Optional[pulumi.Input[str]]:
306
+ def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
306
307
  """
307
308
  The date and time of the creation of the GatewayNetwork.
308
309
  """
309
310
  return pulumi.get(self, "created_at")
310
311
 
311
312
  @created_at.setter
312
- def created_at(self, value: Optional[pulumi.Input[str]]):
313
+ def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
313
314
  pulumi.set(self, "created_at", value)
314
315
 
315
316
  @property
316
317
  @pulumi.getter(name="dhcpId")
317
318
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
318
- def dhcp_id(self) -> Optional[pulumi.Input[str]]:
319
+ def dhcp_id(self) -> Optional[pulumi.Input[builtins.str]]:
319
320
  """
320
321
  Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
321
322
  """
322
323
  return pulumi.get(self, "dhcp_id")
323
324
 
324
325
  @dhcp_id.setter
325
- def dhcp_id(self, value: Optional[pulumi.Input[str]]):
326
+ def dhcp_id(self, value: Optional[pulumi.Input[builtins.str]]):
326
327
  pulumi.set(self, "dhcp_id", value)
327
328
 
328
329
  @property
329
330
  @pulumi.getter(name="enableDhcp")
330
331
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
331
- def enable_dhcp(self) -> Optional[pulumi.Input[bool]]:
332
+ def enable_dhcp(self) -> Optional[pulumi.Input[builtins.bool]]:
332
333
  """
333
334
  Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
334
335
  """
335
336
  return pulumi.get(self, "enable_dhcp")
336
337
 
337
338
  @enable_dhcp.setter
338
- def enable_dhcp(self, value: Optional[pulumi.Input[bool]]):
339
+ def enable_dhcp(self, value: Optional[pulumi.Input[builtins.bool]]):
339
340
  pulumi.set(self, "enable_dhcp", value)
340
341
 
341
342
  @property
342
343
  @pulumi.getter(name="enableMasquerade")
343
- def enable_masquerade(self) -> Optional[pulumi.Input[bool]]:
344
+ def enable_masquerade(self) -> Optional[pulumi.Input[builtins.bool]]:
344
345
  """
345
346
  Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
346
347
  """
347
348
  return pulumi.get(self, "enable_masquerade")
348
349
 
349
350
  @enable_masquerade.setter
350
- def enable_masquerade(self, value: Optional[pulumi.Input[bool]]):
351
+ def enable_masquerade(self, value: Optional[pulumi.Input[builtins.bool]]):
351
352
  pulumi.set(self, "enable_masquerade", value)
352
353
 
353
354
  @property
354
355
  @pulumi.getter(name="gatewayId")
355
- def gateway_id(self) -> Optional[pulumi.Input[str]]:
356
+ def gateway_id(self) -> Optional[pulumi.Input[builtins.str]]:
356
357
  """
357
358
  The ID of the Public Gateway.
358
359
  """
359
360
  return pulumi.get(self, "gateway_id")
360
361
 
361
362
  @gateway_id.setter
362
- def gateway_id(self, value: Optional[pulumi.Input[str]]):
363
+ def gateway_id(self, value: Optional[pulumi.Input[builtins.str]]):
363
364
  pulumi.set(self, "gateway_id", value)
364
365
 
365
366
  @property
@@ -376,14 +377,14 @@ class _VpcGatewayNetworkState:
376
377
 
377
378
  @property
378
379
  @pulumi.getter(name="macAddress")
379
- def mac_address(self) -> Optional[pulumi.Input[str]]:
380
+ def mac_address(self) -> Optional[pulumi.Input[builtins.str]]:
380
381
  """
381
382
  The MAC address of the GatewayNetwork.
382
383
  """
383
384
  return pulumi.get(self, "mac_address")
384
385
 
385
386
  @mac_address.setter
386
- def mac_address(self, value: Optional[pulumi.Input[str]]):
387
+ def mac_address(self, value: Optional[pulumi.Input[builtins.str]]):
387
388
  pulumi.set(self, "mac_address", value)
388
389
 
389
390
  @property
@@ -400,56 +401,56 @@ class _VpcGatewayNetworkState:
400
401
 
401
402
  @property
402
403
  @pulumi.getter(name="privateNetworkId")
403
- def private_network_id(self) -> Optional[pulumi.Input[str]]:
404
+ def private_network_id(self) -> Optional[pulumi.Input[builtins.str]]:
404
405
  """
405
406
  The ID of the Private Network.
406
407
  """
407
408
  return pulumi.get(self, "private_network_id")
408
409
 
409
410
  @private_network_id.setter
410
- def private_network_id(self, value: Optional[pulumi.Input[str]]):
411
+ def private_network_id(self, value: Optional[pulumi.Input[builtins.str]]):
411
412
  pulumi.set(self, "private_network_id", value)
412
413
 
413
414
  @property
414
415
  @pulumi.getter(name="staticAddress")
415
416
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
416
- def static_address(self) -> Optional[pulumi.Input[str]]:
417
+ def static_address(self) -> Optional[pulumi.Input[builtins.str]]:
417
418
  """
418
419
  Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
419
420
  """
420
421
  return pulumi.get(self, "static_address")
421
422
 
422
423
  @static_address.setter
423
- def static_address(self, value: Optional[pulumi.Input[str]]):
424
+ def static_address(self, value: Optional[pulumi.Input[builtins.str]]):
424
425
  pulumi.set(self, "static_address", value)
425
426
 
426
427
  @property
427
428
  @pulumi.getter
428
- def status(self) -> Optional[pulumi.Input[str]]:
429
+ def status(self) -> Optional[pulumi.Input[builtins.str]]:
429
430
  """
430
431
  The status of the Public Gateway's connection to the Private Network.
431
432
  """
432
433
  return pulumi.get(self, "status")
433
434
 
434
435
  @status.setter
435
- def status(self, value: Optional[pulumi.Input[str]]):
436
+ def status(self, value: Optional[pulumi.Input[builtins.str]]):
436
437
  pulumi.set(self, "status", value)
437
438
 
438
439
  @property
439
440
  @pulumi.getter(name="updatedAt")
440
- def updated_at(self) -> Optional[pulumi.Input[str]]:
441
+ def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
441
442
  """
442
443
  The date and time of the last update of the GatewayNetwork.
443
444
  """
444
445
  return pulumi.get(self, "updated_at")
445
446
 
446
447
  @updated_at.setter
447
- def updated_at(self, value: Optional[pulumi.Input[str]]):
448
+ def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
448
449
  pulumi.set(self, "updated_at", value)
449
450
 
450
451
  @property
451
452
  @pulumi.getter
452
- def zone(self) -> Optional[pulumi.Input[str]]:
453
+ def zone(self) -> Optional[pulumi.Input[builtins.str]]:
453
454
  """
454
455
  `zone`) The zone in which the gateway network should be created.
455
456
 
@@ -460,13 +461,14 @@ class _VpcGatewayNetworkState:
460
461
  return pulumi.get(self, "zone")
461
462
 
462
463
  @zone.setter
463
- def zone(self, value: Optional[pulumi.Input[str]]):
464
+ def zone(self, value: Optional[pulumi.Input[builtins.str]]):
464
465
  pulumi.set(self, "zone", value)
465
466
 
466
467
 
467
468
  warnings.warn("""scaleway.index/vpcgatewaynetwork.VpcGatewayNetwork has been deprecated in favor of scaleway.network/gatewaynetwork.GatewayNetwork""", DeprecationWarning)
468
469
 
469
470
 
471
+ @pulumi.type_token("scaleway:index/vpcGatewayNetwork:VpcGatewayNetwork")
470
472
  class VpcGatewayNetwork(pulumi.CustomResource):
471
473
  warnings.warn("""scaleway.index/vpcgatewaynetwork.VpcGatewayNetwork has been deprecated in favor of scaleway.network/gatewaynetwork.GatewayNetwork""", DeprecationWarning)
472
474
 
@@ -474,16 +476,16 @@ class VpcGatewayNetwork(pulumi.CustomResource):
474
476
  def __init__(__self__,
475
477
  resource_name: str,
476
478
  opts: Optional[pulumi.ResourceOptions] = None,
477
- cleanup_dhcp: Optional[pulumi.Input[bool]] = None,
478
- dhcp_id: Optional[pulumi.Input[str]] = None,
479
- enable_dhcp: Optional[pulumi.Input[bool]] = None,
480
- enable_masquerade: Optional[pulumi.Input[bool]] = None,
481
- gateway_id: Optional[pulumi.Input[str]] = None,
479
+ cleanup_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
480
+ dhcp_id: Optional[pulumi.Input[builtins.str]] = None,
481
+ enable_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
482
+ enable_masquerade: Optional[pulumi.Input[builtins.bool]] = None,
483
+ gateway_id: Optional[pulumi.Input[builtins.str]] = None,
482
484
  ipam_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]]] = None,
483
485
  private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]]] = None,
484
- private_network_id: Optional[pulumi.Input[str]] = None,
485
- static_address: Optional[pulumi.Input[str]] = None,
486
- zone: Optional[pulumi.Input[str]] = None,
486
+ private_network_id: Optional[pulumi.Input[builtins.str]] = None,
487
+ static_address: Optional[pulumi.Input[builtins.str]] = None,
488
+ zone: Optional[pulumi.Input[builtins.str]] = None,
487
489
  __props__=None):
488
490
  """
489
491
  Creates and manages GatewayNetworks (connections between a Public Gateway and a Private Network).
@@ -561,16 +563,16 @@ class VpcGatewayNetwork(pulumi.CustomResource):
561
563
 
562
564
  :param str resource_name: The name of the resource.
563
565
  :param pulumi.ResourceOptions opts: Options for the resource.
564
- :param pulumi.Input[bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
565
- :param pulumi.Input[str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
566
- :param pulumi.Input[bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
567
- :param pulumi.Input[bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
568
- :param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
566
+ :param pulumi.Input[builtins.bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
567
+ :param pulumi.Input[builtins.str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
568
+ :param pulumi.Input[builtins.bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
569
+ :param pulumi.Input[builtins.bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
570
+ :param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
569
571
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
570
572
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]] private_ips: The private IPv4 address associated with the resource.
571
- :param pulumi.Input[str] private_network_id: The ID of the Private Network.
572
- :param pulumi.Input[str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
573
- :param pulumi.Input[str] zone: `zone`) The zone in which the gateway network should be created.
573
+ :param pulumi.Input[builtins.str] private_network_id: The ID of the Private Network.
574
+ :param pulumi.Input[builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
575
+ :param pulumi.Input[builtins.str] zone: `zone`) The zone in which the gateway network should be created.
574
576
 
575
577
  > **Important:**
576
578
  In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP fields are now deprecated.
@@ -671,16 +673,16 @@ class VpcGatewayNetwork(pulumi.CustomResource):
671
673
  def _internal_init(__self__,
672
674
  resource_name: str,
673
675
  opts: Optional[pulumi.ResourceOptions] = None,
674
- cleanup_dhcp: Optional[pulumi.Input[bool]] = None,
675
- dhcp_id: Optional[pulumi.Input[str]] = None,
676
- enable_dhcp: Optional[pulumi.Input[bool]] = None,
677
- enable_masquerade: Optional[pulumi.Input[bool]] = None,
678
- gateway_id: Optional[pulumi.Input[str]] = None,
676
+ cleanup_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
677
+ dhcp_id: Optional[pulumi.Input[builtins.str]] = None,
678
+ enable_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
679
+ enable_masquerade: Optional[pulumi.Input[builtins.bool]] = None,
680
+ gateway_id: Optional[pulumi.Input[builtins.str]] = None,
679
681
  ipam_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]]] = None,
680
682
  private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]]] = None,
681
- private_network_id: Optional[pulumi.Input[str]] = None,
682
- static_address: Optional[pulumi.Input[str]] = None,
683
- zone: Optional[pulumi.Input[str]] = None,
683
+ private_network_id: Optional[pulumi.Input[builtins.str]] = None,
684
+ static_address: Optional[pulumi.Input[builtins.str]] = None,
685
+ zone: Optional[pulumi.Input[builtins.str]] = None,
684
686
  __props__=None):
685
687
  pulumi.log.warn("""VpcGatewayNetwork is deprecated: scaleway.index/vpcgatewaynetwork.VpcGatewayNetwork has been deprecated in favor of scaleway.network/gatewaynetwork.GatewayNetwork""")
686
688
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -719,20 +721,20 @@ class VpcGatewayNetwork(pulumi.CustomResource):
719
721
  def get(resource_name: str,
720
722
  id: pulumi.Input[str],
721
723
  opts: Optional[pulumi.ResourceOptions] = None,
722
- cleanup_dhcp: Optional[pulumi.Input[bool]] = None,
723
- created_at: Optional[pulumi.Input[str]] = None,
724
- dhcp_id: Optional[pulumi.Input[str]] = None,
725
- enable_dhcp: Optional[pulumi.Input[bool]] = None,
726
- enable_masquerade: Optional[pulumi.Input[bool]] = None,
727
- gateway_id: Optional[pulumi.Input[str]] = None,
724
+ cleanup_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
725
+ created_at: Optional[pulumi.Input[builtins.str]] = None,
726
+ dhcp_id: Optional[pulumi.Input[builtins.str]] = None,
727
+ enable_dhcp: Optional[pulumi.Input[builtins.bool]] = None,
728
+ enable_masquerade: Optional[pulumi.Input[builtins.bool]] = None,
729
+ gateway_id: Optional[pulumi.Input[builtins.str]] = None,
728
730
  ipam_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]]] = None,
729
- mac_address: Optional[pulumi.Input[str]] = None,
731
+ mac_address: Optional[pulumi.Input[builtins.str]] = None,
730
732
  private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]]] = None,
731
- private_network_id: Optional[pulumi.Input[str]] = None,
732
- static_address: Optional[pulumi.Input[str]] = None,
733
- status: Optional[pulumi.Input[str]] = None,
734
- updated_at: Optional[pulumi.Input[str]] = None,
735
- zone: Optional[pulumi.Input[str]] = None) -> 'VpcGatewayNetwork':
733
+ private_network_id: Optional[pulumi.Input[builtins.str]] = None,
734
+ static_address: Optional[pulumi.Input[builtins.str]] = None,
735
+ status: Optional[pulumi.Input[builtins.str]] = None,
736
+ updated_at: Optional[pulumi.Input[builtins.str]] = None,
737
+ zone: Optional[pulumi.Input[builtins.str]] = None) -> 'VpcGatewayNetwork':
736
738
  """
737
739
  Get an existing VpcGatewayNetwork resource's state with the given name, id, and optional extra
738
740
  properties used to qualify the lookup.
@@ -740,20 +742,20 @@ class VpcGatewayNetwork(pulumi.CustomResource):
740
742
  :param str resource_name: The unique name of the resulting resource.
741
743
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
742
744
  :param pulumi.ResourceOptions opts: Options for the resource.
743
- :param pulumi.Input[bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
744
- :param pulumi.Input[str] created_at: The date and time of the creation of the GatewayNetwork.
745
- :param pulumi.Input[str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
746
- :param pulumi.Input[bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
747
- :param pulumi.Input[bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
748
- :param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
745
+ :param pulumi.Input[builtins.bool] cleanup_dhcp: Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
746
+ :param pulumi.Input[builtins.str] created_at: The date and time of the creation of the GatewayNetwork.
747
+ :param pulumi.Input[builtins.str] dhcp_id: Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
748
+ :param pulumi.Input[builtins.bool] enable_dhcp: Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
749
+ :param pulumi.Input[builtins.bool] enable_masquerade: Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
750
+ :param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
749
751
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkIpamConfigArgs', 'VpcGatewayNetworkIpamConfigArgsDict']]]] ipam_configs: Auto-configure the GatewayNetwork using Scaleway's IPAM (IP address management service). Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
750
- :param pulumi.Input[str] mac_address: The MAC address of the GatewayNetwork.
752
+ :param pulumi.Input[builtins.str] mac_address: The MAC address of the GatewayNetwork.
751
753
  :param pulumi.Input[Sequence[pulumi.Input[Union['VpcGatewayNetworkPrivateIpArgs', 'VpcGatewayNetworkPrivateIpArgsDict']]]] private_ips: The private IPv4 address associated with the resource.
752
- :param pulumi.Input[str] private_network_id: The ID of the Private Network.
753
- :param pulumi.Input[str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
754
- :param pulumi.Input[str] status: The status of the Public Gateway's connection to the Private Network.
755
- :param pulumi.Input[str] updated_at: The date and time of the last update of the GatewayNetwork.
756
- :param pulumi.Input[str] zone: `zone`) The zone in which the gateway network should be created.
754
+ :param pulumi.Input[builtins.str] private_network_id: The ID of the Private Network.
755
+ :param pulumi.Input[builtins.str] static_address: Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
756
+ :param pulumi.Input[builtins.str] status: The status of the Public Gateway's connection to the Private Network.
757
+ :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the GatewayNetwork.
758
+ :param pulumi.Input[builtins.str] zone: `zone`) The zone in which the gateway network should be created.
757
759
 
758
760
  > **Important:**
759
761
  In 2023, DHCP functionality was moved from Public Gateways to Private Networks, DHCP fields are now deprecated.
@@ -782,7 +784,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
782
784
  @property
783
785
  @pulumi.getter(name="cleanupDhcp")
784
786
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
785
- def cleanup_dhcp(self) -> pulumi.Output[bool]:
787
+ def cleanup_dhcp(self) -> pulumi.Output[builtins.bool]:
786
788
  """
787
789
  Please use `ipam_config`. Whether to remove DHCP configuration on this GatewayNetwork upon destroy. Requires DHCP ID.
788
790
  """
@@ -790,7 +792,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
790
792
 
791
793
  @property
792
794
  @pulumi.getter(name="createdAt")
793
- def created_at(self) -> pulumi.Output[str]:
795
+ def created_at(self) -> pulumi.Output[builtins.str]:
794
796
  """
795
797
  The date and time of the creation of the GatewayNetwork.
796
798
  """
@@ -799,7 +801,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
799
801
  @property
800
802
  @pulumi.getter(name="dhcpId")
801
803
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
802
- def dhcp_id(self) -> pulumi.Output[Optional[str]]:
804
+ def dhcp_id(self) -> pulumi.Output[Optional[builtins.str]]:
803
805
  """
804
806
  Please use `ipam_config`. The ID of the Public Gateway DHCP configuration. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
805
807
  """
@@ -808,7 +810,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
808
810
  @property
809
811
  @pulumi.getter(name="enableDhcp")
810
812
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
811
- def enable_dhcp(self) -> pulumi.Output[Optional[bool]]:
813
+ def enable_dhcp(self) -> pulumi.Output[Optional[builtins.bool]]:
812
814
  """
813
815
  Please use `ipam_config`. Whether a DHCP configuration should be enabled on this GatewayNetwork. Requires a DHCP ID.
814
816
  """
@@ -816,7 +818,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
816
818
 
817
819
  @property
818
820
  @pulumi.getter(name="enableMasquerade")
819
- def enable_masquerade(self) -> pulumi.Output[Optional[bool]]:
821
+ def enable_masquerade(self) -> pulumi.Output[Optional[builtins.bool]]:
820
822
  """
821
823
  Whether masquerade (dynamic NAT) should be enabled on this GatewayNetwork.
822
824
  """
@@ -824,7 +826,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
824
826
 
825
827
  @property
826
828
  @pulumi.getter(name="gatewayId")
827
- def gateway_id(self) -> pulumi.Output[str]:
829
+ def gateway_id(self) -> pulumi.Output[builtins.str]:
828
830
  """
829
831
  The ID of the Public Gateway.
830
832
  """
@@ -840,7 +842,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
840
842
 
841
843
  @property
842
844
  @pulumi.getter(name="macAddress")
843
- def mac_address(self) -> pulumi.Output[str]:
845
+ def mac_address(self) -> pulumi.Output[builtins.str]:
844
846
  """
845
847
  The MAC address of the GatewayNetwork.
846
848
  """
@@ -856,7 +858,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
856
858
 
857
859
  @property
858
860
  @pulumi.getter(name="privateNetworkId")
859
- def private_network_id(self) -> pulumi.Output[str]:
861
+ def private_network_id(self) -> pulumi.Output[builtins.str]:
860
862
  """
861
863
  The ID of the Private Network.
862
864
  """
@@ -865,7 +867,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
865
867
  @property
866
868
  @pulumi.getter(name="staticAddress")
867
869
  @_utilities.deprecated("""Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md""")
868
- def static_address(self) -> pulumi.Output[str]:
870
+ def static_address(self) -> pulumi.Output[builtins.str]:
869
871
  """
870
872
  Please use `ipam_config`. Enable DHCP configration on this GatewayNetwork. Only one of `dhcp_id`, `static_address` and `ipam_config` should be specified.
871
873
  """
@@ -873,7 +875,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
873
875
 
874
876
  @property
875
877
  @pulumi.getter
876
- def status(self) -> pulumi.Output[str]:
878
+ def status(self) -> pulumi.Output[builtins.str]:
877
879
  """
878
880
  The status of the Public Gateway's connection to the Private Network.
879
881
  """
@@ -881,7 +883,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
881
883
 
882
884
  @property
883
885
  @pulumi.getter(name="updatedAt")
884
- def updated_at(self) -> pulumi.Output[str]:
886
+ def updated_at(self) -> pulumi.Output[builtins.str]:
885
887
  """
886
888
  The date and time of the last update of the GatewayNetwork.
887
889
  """
@@ -889,7 +891,7 @@ class VpcGatewayNetwork(pulumi.CustomResource):
889
891
 
890
892
  @property
891
893
  @pulumi.getter
892
- def zone(self) -> pulumi.Output[str]:
894
+ def zone(self) -> pulumi.Output[builtins.str]:
893
895
  """
894
896
  `zone`) The zone in which the gateway network should be created.
895
897