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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (515) hide show
  1. pulumiverse_scaleway/__init__.py +109 -2
  2. pulumiverse_scaleway/_inputs.py +3936 -2603
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +4 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +12 -12
  6. pulumiverse_scaleway/account/get_project.py +28 -28
  7. pulumiverse_scaleway/account/get_projects.py +241 -0
  8. pulumiverse_scaleway/account/get_ssh_key.py +34 -34
  9. pulumiverse_scaleway/account/outputs.py +95 -0
  10. pulumiverse_scaleway/account/project.py +72 -71
  11. pulumiverse_scaleway/account/ssh_key.py +107 -106
  12. pulumiverse_scaleway/account_project.py +72 -71
  13. pulumiverse_scaleway/account_ssh_key.py +107 -106
  14. pulumiverse_scaleway/apple_silicon_server.py +334 -201
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
  17. pulumiverse_scaleway/applesilicon/outputs.py +65 -33
  18. pulumiverse_scaleway/applesilicon/server.py +334 -201
  19. pulumiverse_scaleway/audittrail/__init__.py +10 -0
  20. pulumiverse_scaleway/audittrail/get_event.py +410 -0
  21. pulumiverse_scaleway/audittrail/outputs.py +234 -0
  22. pulumiverse_scaleway/autoscaling/__init__.py +13 -0
  23. pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
  24. pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
  25. pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
  26. pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
  27. pulumiverse_scaleway/autoscaling/outputs.py +438 -0
  28. pulumiverse_scaleway/baremetal_server.py +622 -524
  29. pulumiverse_scaleway/billing/__init__.py +2 -1
  30. pulumiverse_scaleway/billing/get_consumptions.py +19 -15
  31. pulumiverse_scaleway/billing/get_invoices.py +25 -25
  32. pulumiverse_scaleway/billing/outputs.py +96 -96
  33. pulumiverse_scaleway/block/__init__.py +4 -1
  34. pulumiverse_scaleway/block/_inputs.py +125 -0
  35. pulumiverse_scaleway/block/get_snapshot.py +60 -37
  36. pulumiverse_scaleway/block/get_volume.py +38 -38
  37. pulumiverse_scaleway/block/outputs.py +139 -0
  38. pulumiverse_scaleway/block/snapshot.py +272 -98
  39. pulumiverse_scaleway/block/volume.py +145 -144
  40. pulumiverse_scaleway/block_snapshot.py +272 -98
  41. pulumiverse_scaleway/block_volume.py +145 -144
  42. pulumiverse_scaleway/cockpit.py +71 -49
  43. pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
  44. pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
  45. pulumiverse_scaleway/cockpit_source.py +142 -141
  46. pulumiverse_scaleway/cockpit_token.py +84 -83
  47. pulumiverse_scaleway/config/__init__.py +2 -1
  48. pulumiverse_scaleway/config/__init__.pyi +2 -2
  49. pulumiverse_scaleway/config/vars.py +11 -11
  50. pulumiverse_scaleway/container.py +653 -424
  51. pulumiverse_scaleway/container_cron.py +97 -96
  52. pulumiverse_scaleway/container_domain.py +63 -62
  53. pulumiverse_scaleway/container_namespace.py +251 -172
  54. pulumiverse_scaleway/container_token.py +97 -96
  55. pulumiverse_scaleway/container_trigger.py +77 -76
  56. pulumiverse_scaleway/containers/__init__.py +2 -1
  57. pulumiverse_scaleway/containers/_inputs.py +87 -87
  58. pulumiverse_scaleway/containers/container.py +653 -424
  59. pulumiverse_scaleway/containers/cron.py +97 -96
  60. pulumiverse_scaleway/containers/domain.py +63 -62
  61. pulumiverse_scaleway/containers/get_container.py +117 -73
  62. pulumiverse_scaleway/containers/get_namespace.py +56 -45
  63. pulumiverse_scaleway/containers/namespace.py +251 -172
  64. pulumiverse_scaleway/containers/outputs.py +84 -84
  65. pulumiverse_scaleway/containers/token.py +97 -96
  66. pulumiverse_scaleway/containers/trigger.py +77 -76
  67. pulumiverse_scaleway/database.py +81 -80
  68. pulumiverse_scaleway/database_acl.py +148 -39
  69. pulumiverse_scaleway/database_backup.py +124 -123
  70. pulumiverse_scaleway/database_instance.py +531 -436
  71. pulumiverse_scaleway/database_privilege.py +88 -87
  72. pulumiverse_scaleway/database_read_replica.py +60 -59
  73. pulumiverse_scaleway/database_user.py +171 -98
  74. pulumiverse_scaleway/databases/__init__.py +2 -1
  75. pulumiverse_scaleway/databases/_inputs.py +364 -216
  76. pulumiverse_scaleway/databases/acl.py +148 -39
  77. pulumiverse_scaleway/databases/database.py +81 -80
  78. pulumiverse_scaleway/databases/database_backup.py +124 -123
  79. pulumiverse_scaleway/databases/get_acl.py +17 -17
  80. pulumiverse_scaleway/databases/get_database.py +26 -26
  81. pulumiverse_scaleway/databases/get_database_backup.py +46 -46
  82. pulumiverse_scaleway/databases/get_instance.py +95 -73
  83. pulumiverse_scaleway/databases/get_privilege.py +30 -30
  84. pulumiverse_scaleway/databases/instance.py +531 -436
  85. pulumiverse_scaleway/databases/outputs.py +419 -232
  86. pulumiverse_scaleway/databases/privilege.py +88 -87
  87. pulumiverse_scaleway/databases/read_replica.py +60 -59
  88. pulumiverse_scaleway/databases/serverless_database.py +97 -96
  89. pulumiverse_scaleway/databases/snapshot.py +127 -126
  90. pulumiverse_scaleway/databases/user.py +171 -98
  91. pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
  92. pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
  93. pulumiverse_scaleway/datawarehouse/database.py +338 -0
  94. pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
  95. pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
  96. pulumiverse_scaleway/datawarehouse/user.py +451 -0
  97. pulumiverse_scaleway/domain/__init__.py +2 -1
  98. pulumiverse_scaleway/domain/_inputs.py +661 -661
  99. pulumiverse_scaleway/domain/get_record.py +53 -64
  100. pulumiverse_scaleway/domain/get_zone.py +36 -30
  101. pulumiverse_scaleway/domain/outputs.py +501 -501
  102. pulumiverse_scaleway/domain/record.py +156 -202
  103. pulumiverse_scaleway/domain/registration.py +123 -122
  104. pulumiverse_scaleway/domain/zone.py +108 -107
  105. pulumiverse_scaleway/domain_record.py +156 -202
  106. pulumiverse_scaleway/domain_zone.py +108 -107
  107. pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
  108. pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
  109. pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
  110. pulumiverse_scaleway/edge_services_head_stage.py +37 -36
  111. pulumiverse_scaleway/edge_services_pipeline.py +125 -82
  112. pulumiverse_scaleway/edge_services_plan.py +37 -36
  113. pulumiverse_scaleway/edge_services_route_stage.py +75 -74
  114. pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
  115. pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
  116. pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
  117. pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
  118. pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
  119. pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
  120. pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
  121. pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
  122. pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
  123. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
  124. pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
  125. pulumiverse_scaleway/elasticmetal/ip.py +170 -169
  126. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
  127. pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
  128. pulumiverse_scaleway/elasticmetal/server.py +622 -524
  129. pulumiverse_scaleway/file_filesystem.py +555 -0
  130. pulumiverse_scaleway/flexible_ip.py +170 -169
  131. pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
  132. pulumiverse_scaleway/function.py +457 -348
  133. pulumiverse_scaleway/function_cron.py +97 -96
  134. pulumiverse_scaleway/function_domain.py +63 -62
  135. pulumiverse_scaleway/function_namespace.py +234 -155
  136. pulumiverse_scaleway/function_token.py +97 -96
  137. pulumiverse_scaleway/function_trigger.py +77 -76
  138. pulumiverse_scaleway/functions/__init__.py +2 -1
  139. pulumiverse_scaleway/functions/_inputs.py +50 -50
  140. pulumiverse_scaleway/functions/cron.py +97 -96
  141. pulumiverse_scaleway/functions/domain.py +63 -62
  142. pulumiverse_scaleway/functions/function.py +457 -348
  143. pulumiverse_scaleway/functions/get_function.py +93 -71
  144. pulumiverse_scaleway/functions/get_namespace.py +54 -43
  145. pulumiverse_scaleway/functions/namespace.py +234 -155
  146. pulumiverse_scaleway/functions/outputs.py +34 -34
  147. pulumiverse_scaleway/functions/token.py +97 -96
  148. pulumiverse_scaleway/functions/trigger.py +77 -76
  149. pulumiverse_scaleway/get_account_project.py +28 -28
  150. pulumiverse_scaleway/get_account_ssh_key.py +34 -34
  151. pulumiverse_scaleway/get_availability_zones.py +12 -12
  152. pulumiverse_scaleway/get_baremetal_offer.py +43 -41
  153. pulumiverse_scaleway/get_baremetal_option.py +24 -24
  154. pulumiverse_scaleway/get_baremetal_os.py +28 -28
  155. pulumiverse_scaleway/get_baremetal_server.py +101 -68
  156. pulumiverse_scaleway/get_billing_consumptions.py +19 -15
  157. pulumiverse_scaleway/get_billing_invoices.py +25 -25
  158. pulumiverse_scaleway/get_block_snapshot.py +60 -37
  159. pulumiverse_scaleway/get_block_volume.py +38 -38
  160. pulumiverse_scaleway/get_cockpit.py +16 -16
  161. pulumiverse_scaleway/get_cockpit_source.py +88 -45
  162. pulumiverse_scaleway/get_config.py +24 -24
  163. pulumiverse_scaleway/get_container.py +117 -73
  164. pulumiverse_scaleway/get_container_namespace.py +56 -45
  165. pulumiverse_scaleway/get_database.py +26 -26
  166. pulumiverse_scaleway/get_database_acl.py +17 -17
  167. pulumiverse_scaleway/get_database_backup.py +46 -46
  168. pulumiverse_scaleway/get_database_instance.py +95 -73
  169. pulumiverse_scaleway/get_database_privilege.py +30 -30
  170. pulumiverse_scaleway/get_domain_record.py +53 -64
  171. pulumiverse_scaleway/get_domain_zone.py +36 -30
  172. pulumiverse_scaleway/get_flexible_ip.py +70 -54
  173. pulumiverse_scaleway/get_flexible_ips.py +31 -31
  174. pulumiverse_scaleway/get_function.py +93 -71
  175. pulumiverse_scaleway/get_function_namespace.py +54 -43
  176. pulumiverse_scaleway/get_iam_api_key.py +28 -28
  177. pulumiverse_scaleway/get_iam_application.py +32 -32
  178. pulumiverse_scaleway/get_iam_group.py +36 -36
  179. pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
  180. pulumiverse_scaleway/get_iam_user.py +30 -30
  181. pulumiverse_scaleway/get_instance_image.py +58 -58
  182. pulumiverse_scaleway/get_instance_ip.py +42 -30
  183. pulumiverse_scaleway/get_instance_placement_group.py +38 -38
  184. pulumiverse_scaleway/get_instance_private_nic.py +53 -41
  185. pulumiverse_scaleway/get_instance_security_group.py +46 -46
  186. pulumiverse_scaleway/get_instance_server.py +108 -145
  187. pulumiverse_scaleway/get_instance_servers.py +31 -31
  188. pulumiverse_scaleway/get_instance_snapshot.py +41 -41
  189. pulumiverse_scaleway/get_instance_volume.py +42 -42
  190. pulumiverse_scaleway/get_iot_device.py +46 -46
  191. pulumiverse_scaleway/get_iot_hub.py +60 -60
  192. pulumiverse_scaleway/get_ipam_ip.py +65 -65
  193. pulumiverse_scaleway/get_ipam_ips.py +56 -56
  194. pulumiverse_scaleway/get_k8s_version.py +34 -23
  195. pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
  196. pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
  197. pulumiverse_scaleway/get_lb_acls.py +29 -29
  198. pulumiverse_scaleway/get_lb_backend.py +75 -75
  199. pulumiverse_scaleway/get_lb_backends.py +29 -29
  200. pulumiverse_scaleway/get_lb_frontend.py +76 -43
  201. pulumiverse_scaleway/get_lb_frontends.py +29 -29
  202. pulumiverse_scaleway/get_lb_ips.py +37 -37
  203. pulumiverse_scaleway/get_lb_route.py +36 -25
  204. pulumiverse_scaleway/get_lb_routes.py +23 -23
  205. pulumiverse_scaleway/get_lbs.py +31 -31
  206. pulumiverse_scaleway/get_loadbalancer.py +78 -56
  207. pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
  208. pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
  209. pulumiverse_scaleway/get_marketplace_image.py +28 -28
  210. pulumiverse_scaleway/get_mnq_sns.py +18 -18
  211. pulumiverse_scaleway/get_mnq_sqs.py +18 -18
  212. pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
  213. pulumiverse_scaleway/get_object_bucket.py +35 -35
  214. pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
  215. pulumiverse_scaleway/get_redis_cluster.py +65 -54
  216. pulumiverse_scaleway/get_registry_image.py +48 -48
  217. pulumiverse_scaleway/get_registry_image_tag.py +44 -44
  218. pulumiverse_scaleway/get_registry_namespace.py +36 -36
  219. pulumiverse_scaleway/get_secret.py +58 -58
  220. pulumiverse_scaleway/get_secret_version.py +46 -46
  221. pulumiverse_scaleway/get_tem_domain.py +103 -70
  222. pulumiverse_scaleway/get_vpc.py +58 -47
  223. pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
  224. pulumiverse_scaleway/get_vpc_private_network.py +58 -47
  225. pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
  226. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
  227. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
  228. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
  229. pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
  230. pulumiverse_scaleway/get_vpc_routes.py +47 -47
  231. pulumiverse_scaleway/get_vpcs.py +31 -31
  232. pulumiverse_scaleway/get_web_host_offer.py +34 -34
  233. pulumiverse_scaleway/get_webhosting.py +58 -58
  234. pulumiverse_scaleway/hosting/__init__.py +2 -1
  235. pulumiverse_scaleway/hosting/_inputs.py +117 -75
  236. pulumiverse_scaleway/hosting/get_hosting.py +58 -58
  237. pulumiverse_scaleway/hosting/get_offer.py +34 -34
  238. pulumiverse_scaleway/hosting/hosting.py +213 -212
  239. pulumiverse_scaleway/hosting/outputs.py +276 -192
  240. pulumiverse_scaleway/iam/__init__.py +3 -1
  241. pulumiverse_scaleway/iam/_inputs.py +26 -26
  242. pulumiverse_scaleway/iam/api_key.py +142 -141
  243. pulumiverse_scaleway/iam/application.py +98 -97
  244. pulumiverse_scaleway/iam/get_api_key.py +28 -28
  245. pulumiverse_scaleway/iam/get_application.py +32 -32
  246. pulumiverse_scaleway/iam/get_group.py +36 -36
  247. pulumiverse_scaleway/iam/get_policy.py +293 -0
  248. pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
  249. pulumiverse_scaleway/iam/get_user.py +30 -30
  250. pulumiverse_scaleway/iam/group.py +140 -139
  251. pulumiverse_scaleway/iam/group_membership.py +54 -53
  252. pulumiverse_scaleway/iam/outputs.py +70 -18
  253. pulumiverse_scaleway/iam/policy.py +169 -168
  254. pulumiverse_scaleway/iam/ssh_key.py +107 -106
  255. pulumiverse_scaleway/iam/user.py +598 -134
  256. pulumiverse_scaleway/iam_api_key.py +142 -141
  257. pulumiverse_scaleway/iam_application.py +98 -97
  258. pulumiverse_scaleway/iam_group.py +140 -139
  259. pulumiverse_scaleway/iam_group_membership.py +54 -53
  260. pulumiverse_scaleway/iam_policy.py +169 -168
  261. pulumiverse_scaleway/iam_ssh_key.py +107 -106
  262. pulumiverse_scaleway/iam_user.py +598 -134
  263. pulumiverse_scaleway/inference/__init__.py +4 -1
  264. pulumiverse_scaleway/inference/_inputs.py +232 -50
  265. pulumiverse_scaleway/inference/deployment.py +319 -220
  266. pulumiverse_scaleway/inference/get_model.py +299 -0
  267. pulumiverse_scaleway/inference/model.py +684 -0
  268. pulumiverse_scaleway/inference/outputs.py +250 -34
  269. pulumiverse_scaleway/inference_deployment.py +319 -220
  270. pulumiverse_scaleway/instance/__init__.py +3 -1
  271. pulumiverse_scaleway/instance/_inputs.py +650 -437
  272. pulumiverse_scaleway/instance/get_image.py +58 -58
  273. pulumiverse_scaleway/instance/get_ip.py +42 -30
  274. pulumiverse_scaleway/instance/get_placement_group.py +38 -38
  275. pulumiverse_scaleway/instance/get_private_nic.py +53 -41
  276. pulumiverse_scaleway/instance/get_security_group.py +46 -46
  277. pulumiverse_scaleway/instance/get_server.py +108 -145
  278. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  279. pulumiverse_scaleway/instance/get_servers.py +31 -31
  280. pulumiverse_scaleway/instance/get_snapshot.py +41 -41
  281. pulumiverse_scaleway/instance/get_volume.py +42 -42
  282. pulumiverse_scaleway/instance/image.py +260 -205
  283. pulumiverse_scaleway/instance/ip.py +116 -115
  284. pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
  285. pulumiverse_scaleway/instance/outputs.py +981 -548
  286. pulumiverse_scaleway/instance/placement_group.py +123 -122
  287. pulumiverse_scaleway/instance/private_nic.py +163 -113
  288. pulumiverse_scaleway/instance/security_group.py +188 -187
  289. pulumiverse_scaleway/instance/security_group_rules.py +42 -41
  290. pulumiverse_scaleway/instance/server.py +590 -562
  291. pulumiverse_scaleway/instance/snapshot.py +150 -157
  292. pulumiverse_scaleway/instance/user_data.py +75 -74
  293. pulumiverse_scaleway/instance/volume.py +174 -159
  294. pulumiverse_scaleway/instance_image.py +260 -205
  295. pulumiverse_scaleway/instance_ip.py +116 -115
  296. pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
  297. pulumiverse_scaleway/instance_placement_group.py +123 -122
  298. pulumiverse_scaleway/instance_private_nic.py +163 -113
  299. pulumiverse_scaleway/instance_security_group.py +188 -187
  300. pulumiverse_scaleway/instance_security_group_rules.py +42 -41
  301. pulumiverse_scaleway/instance_server.py +590 -562
  302. pulumiverse_scaleway/instance_snapshot.py +150 -157
  303. pulumiverse_scaleway/instance_user_data.py +75 -74
  304. pulumiverse_scaleway/instance_volume.py +174 -159
  305. pulumiverse_scaleway/iot/__init__.py +2 -1
  306. pulumiverse_scaleway/iot/_inputs.py +119 -119
  307. pulumiverse_scaleway/iot/device.py +156 -193
  308. pulumiverse_scaleway/iot/get_device.py +46 -46
  309. pulumiverse_scaleway/iot/get_hub.py +60 -60
  310. pulumiverse_scaleway/iot/hub.py +259 -258
  311. pulumiverse_scaleway/iot/network.py +115 -114
  312. pulumiverse_scaleway/iot/outputs.py +107 -107
  313. pulumiverse_scaleway/iot/route.py +109 -108
  314. pulumiverse_scaleway/iot_device.py +156 -193
  315. pulumiverse_scaleway/iot_hub.py +259 -258
  316. pulumiverse_scaleway/iot_network.py +115 -114
  317. pulumiverse_scaleway/iot_route.py +109 -108
  318. pulumiverse_scaleway/ipam/__init__.py +2 -1
  319. pulumiverse_scaleway/ipam/_inputs.py +108 -108
  320. pulumiverse_scaleway/ipam/get_ip.py +65 -65
  321. pulumiverse_scaleway/ipam/get_ips.py +56 -56
  322. pulumiverse_scaleway/ipam/ip.py +160 -131
  323. pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
  324. pulumiverse_scaleway/ipam/outputs.py +122 -122
  325. pulumiverse_scaleway/ipam_ip.py +160 -131
  326. pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
  327. pulumiverse_scaleway/job/__init__.py +2 -1
  328. pulumiverse_scaleway/job/_inputs.py +127 -14
  329. pulumiverse_scaleway/job/definition.py +283 -175
  330. pulumiverse_scaleway/job/outputs.py +98 -10
  331. pulumiverse_scaleway/job_definition.py +283 -175
  332. pulumiverse_scaleway/key_manager_key.py +939 -0
  333. pulumiverse_scaleway/kubernetes/__init__.py +3 -1
  334. pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
  335. pulumiverse_scaleway/kubernetes/acl.py +447 -0
  336. pulumiverse_scaleway/kubernetes/cluster.py +594 -307
  337. pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
  338. pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
  339. pulumiverse_scaleway/kubernetes/get_version.py +34 -23
  340. pulumiverse_scaleway/kubernetes/outputs.py +444 -250
  341. pulumiverse_scaleway/kubernetes/pool.py +427 -365
  342. pulumiverse_scaleway/kubernetes_cluster.py +594 -307
  343. pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
  344. pulumiverse_scaleway/loadbalancer.py +329 -246
  345. pulumiverse_scaleway/loadbalancer_acl.py +102 -101
  346. pulumiverse_scaleway/loadbalancer_backend.py +534 -487
  347. pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
  348. pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
  349. pulumiverse_scaleway/loadbalancer_ip.py +124 -123
  350. pulumiverse_scaleway/loadbalancer_route.py +244 -119
  351. pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
  352. pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
  353. pulumiverse_scaleway/loadbalancers/acl.py +102 -101
  354. pulumiverse_scaleway/loadbalancers/backend.py +534 -487
  355. pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
  356. pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
  357. pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
  358. pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
  359. pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
  360. pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
  361. pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
  362. pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
  363. pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
  364. pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
  365. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
  366. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
  367. pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
  368. pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
  369. pulumiverse_scaleway/loadbalancers/ip.py +124 -123
  370. pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
  371. pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
  372. pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
  373. pulumiverse_scaleway/loadbalancers/route.py +244 -119
  374. pulumiverse_scaleway/mnq/__init__.py +2 -1
  375. pulumiverse_scaleway/mnq/_inputs.py +90 -38
  376. pulumiverse_scaleway/mnq/get_sns.py +18 -18
  377. pulumiverse_scaleway/mnq/get_sqs.py +18 -18
  378. pulumiverse_scaleway/mnq/nats_account.py +63 -62
  379. pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
  380. pulumiverse_scaleway/mnq/outputs.py +73 -26
  381. pulumiverse_scaleway/mnq/sns.py +46 -45
  382. pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
  383. pulumiverse_scaleway/mnq/sns_topic.py +174 -173
  384. pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
  385. pulumiverse_scaleway/mnq/sqs.py +46 -45
  386. pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
  387. pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
  388. pulumiverse_scaleway/mnq_nats_account.py +63 -62
  389. pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
  390. pulumiverse_scaleway/mnq_sns.py +46 -45
  391. pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
  392. pulumiverse_scaleway/mnq_sns_topic.py +174 -173
  393. pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
  394. pulumiverse_scaleway/mnq_sqs.py +46 -45
  395. pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
  396. pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
  397. pulumiverse_scaleway/mongo_db_instance.py +569 -268
  398. pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
  399. pulumiverse_scaleway/mongodb/__init__.py +3 -1
  400. pulumiverse_scaleway/mongodb/_inputs.py +178 -51
  401. pulumiverse_scaleway/mongodb/get_instance.py +110 -55
  402. pulumiverse_scaleway/mongodb/instance.py +569 -268
  403. pulumiverse_scaleway/mongodb/outputs.py +192 -68
  404. pulumiverse_scaleway/mongodb/snapshot.py +127 -126
  405. pulumiverse_scaleway/mongodb/user.py +507 -0
  406. pulumiverse_scaleway/network/__init__.py +2 -1
  407. pulumiverse_scaleway/network/_inputs.py +209 -155
  408. pulumiverse_scaleway/network/acl.py +100 -101
  409. pulumiverse_scaleway/network/gateway_network.py +228 -180
  410. pulumiverse_scaleway/network/get_gateway_network.py +55 -44
  411. pulumiverse_scaleway/network/get_private_network.py +58 -47
  412. pulumiverse_scaleway/network/get_public_gateway.py +56 -56
  413. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
  414. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
  415. pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
  416. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
  417. pulumiverse_scaleway/network/get_routes.py +47 -47
  418. pulumiverse_scaleway/network/get_vpc.py +58 -47
  419. pulumiverse_scaleway/network/get_vpcs.py +31 -31
  420. pulumiverse_scaleway/network/outputs.py +338 -270
  421. pulumiverse_scaleway/network/private_network.py +203 -155
  422. pulumiverse_scaleway/network/public_gateway.py +261 -260
  423. pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
  424. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
  425. pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
  426. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
  427. pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
  428. pulumiverse_scaleway/network/route.py +230 -141
  429. pulumiverse_scaleway/network/vpc.py +172 -124
  430. pulumiverse_scaleway/object/__init__.py +3 -1
  431. pulumiverse_scaleway/object/_inputs.py +202 -166
  432. pulumiverse_scaleway/object/bucket.py +162 -148
  433. pulumiverse_scaleway/object/bucket_acl.py +97 -94
  434. pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
  435. pulumiverse_scaleway/object/bucket_policy.py +71 -134
  436. pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
  437. pulumiverse_scaleway/object/get.py +290 -0
  438. pulumiverse_scaleway/object/get_bucket.py +35 -35
  439. pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
  440. pulumiverse_scaleway/object/item.py +301 -223
  441. pulumiverse_scaleway/object/outputs.py +210 -166
  442. pulumiverse_scaleway/object_bucket.py +162 -148
  443. pulumiverse_scaleway/object_bucket_acl.py +97 -94
  444. pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
  445. pulumiverse_scaleway/object_bucket_policy.py +71 -134
  446. pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
  447. pulumiverse_scaleway/object_item.py +301 -223
  448. pulumiverse_scaleway/observability/__init__.py +4 -2
  449. pulumiverse_scaleway/observability/_inputs.py +106 -106
  450. pulumiverse_scaleway/observability/alert_manager.py +66 -65
  451. pulumiverse_scaleway/observability/cockpit.py +71 -49
  452. pulumiverse_scaleway/observability/get_grafana.py +103 -0
  453. pulumiverse_scaleway/observability/get_instance.py +16 -16
  454. pulumiverse_scaleway/observability/get_source.py +88 -45
  455. pulumiverse_scaleway/observability/get_sources.py +375 -0
  456. pulumiverse_scaleway/observability/grafana_user.py +72 -113
  457. pulumiverse_scaleway/observability/outputs.py +241 -101
  458. pulumiverse_scaleway/observability/source.py +142 -141
  459. pulumiverse_scaleway/observability/token.py +84 -83
  460. pulumiverse_scaleway/outputs.py +5235 -3665
  461. pulumiverse_scaleway/provider.py +107 -82
  462. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  463. pulumiverse_scaleway/rdb_snapshot.py +127 -126
  464. pulumiverse_scaleway/redis/__init__.py +2 -1
  465. pulumiverse_scaleway/redis/_inputs.py +163 -69
  466. pulumiverse_scaleway/redis/cluster.py +273 -225
  467. pulumiverse_scaleway/redis/get_cluster.py +65 -54
  468. pulumiverse_scaleway/redis/outputs.py +199 -87
  469. pulumiverse_scaleway/redis_cluster.py +273 -225
  470. pulumiverse_scaleway/registry/__init__.py +2 -1
  471. pulumiverse_scaleway/registry/get_image.py +48 -48
  472. pulumiverse_scaleway/registry/get_image_tag.py +44 -44
  473. pulumiverse_scaleway/registry/get_namespace.py +36 -36
  474. pulumiverse_scaleway/registry/namespace.py +106 -105
  475. pulumiverse_scaleway/registry_namespace.py +106 -105
  476. pulumiverse_scaleway/sdb_database.py +97 -96
  477. pulumiverse_scaleway/secret.py +188 -179
  478. pulumiverse_scaleway/secret_version.py +107 -106
  479. pulumiverse_scaleway/secrets/__init__.py +2 -1
  480. pulumiverse_scaleway/secrets/_inputs.py +63 -63
  481. pulumiverse_scaleway/secrets/get_secret.py +58 -58
  482. pulumiverse_scaleway/secrets/get_version.py +46 -46
  483. pulumiverse_scaleway/secrets/outputs.py +84 -84
  484. pulumiverse_scaleway/secrets/secret.py +188 -179
  485. pulumiverse_scaleway/secrets/version.py +107 -106
  486. pulumiverse_scaleway/tem/__init__.py +2 -1
  487. pulumiverse_scaleway/tem/_inputs.py +33 -33
  488. pulumiverse_scaleway/tem/blocked_list.py +105 -104
  489. pulumiverse_scaleway/tem/domain.py +384 -257
  490. pulumiverse_scaleway/tem/domain_validation.py +63 -62
  491. pulumiverse_scaleway/tem/get_domain.py +103 -70
  492. pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
  493. pulumiverse_scaleway/tem/outputs.py +44 -44
  494. pulumiverse_scaleway/tem/webhook.py +132 -131
  495. pulumiverse_scaleway/tem_domain.py +384 -257
  496. pulumiverse_scaleway/tem_domain_validation.py +63 -62
  497. pulumiverse_scaleway/tem_webhook.py +132 -131
  498. pulumiverse_scaleway/vpc.py +172 -124
  499. pulumiverse_scaleway/vpc_gateway_network.py +228 -180
  500. pulumiverse_scaleway/vpc_private_network.py +203 -155
  501. pulumiverse_scaleway/vpc_public_gateway.py +261 -260
  502. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
  503. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
  504. pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
  505. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
  506. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
  507. pulumiverse_scaleway/vpc_route.py +230 -141
  508. pulumiverse_scaleway/webhosting.py +213 -212
  509. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
  510. pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
  511. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
  512. pulumiverse_scaleway/get_cockpit_plan.py +0 -129
  513. pulumiverse_scaleway/observability/get_plan.py +0 -125
  514. pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
  515. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -19,32 +19,32 @@ __all__ = ['VpcPublicGatewayArgs', 'VpcPublicGateway']
19
19
  @pulumi.input_type
20
20
  class VpcPublicGatewayArgs:
21
21
  def __init__(__self__, *,
22
- type: pulumi.Input[str],
23
- allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
- bastion_enabled: Optional[pulumi.Input[bool]] = None,
25
- bastion_port: Optional[pulumi.Input[int]] = None,
26
- enable_smtp: Optional[pulumi.Input[bool]] = None,
27
- ip_id: Optional[pulumi.Input[str]] = None,
28
- move_to_ipam: Optional[pulumi.Input[bool]] = None,
29
- name: Optional[pulumi.Input[str]] = None,
30
- project_id: Optional[pulumi.Input[str]] = None,
31
- refresh_ssh_keys: Optional[pulumi.Input[str]] = None,
32
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
33
- zone: Optional[pulumi.Input[str]] = None):
22
+ type: pulumi.Input[_builtins.str],
23
+ allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
24
+ bastion_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ bastion_port: Optional[pulumi.Input[_builtins.int]] = None,
26
+ enable_smtp: Optional[pulumi.Input[_builtins.bool]] = None,
27
+ ip_id: Optional[pulumi.Input[_builtins.str]] = None,
28
+ move_to_ipam: Optional[pulumi.Input[_builtins.bool]] = None,
29
+ name: Optional[pulumi.Input[_builtins.str]] = None,
30
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
31
+ refresh_ssh_keys: Optional[pulumi.Input[_builtins.str]] = None,
32
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
33
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
34
34
  """
35
35
  The set of arguments for constructing a VpcPublicGateway resource.
36
- :param pulumi.Input[str] type: The gateway type.
37
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
38
- :param pulumi.Input[bool] bastion_enabled: Enable SSH bastion on the gateway.
39
- :param pulumi.Input[int] bastion_port: The port on which the SSH bastion will listen.
40
- :param pulumi.Input[bool] enable_smtp: Enable SMTP on the gateway.
41
- :param pulumi.Input[str] ip_id: Attach an existing flexible IP to the gateway.
42
- :param pulumi.Input[bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
43
- :param pulumi.Input[str] name: The name for the Public Gateway. If not provided it will be randomly generated.
44
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the public gateway is associated with.
45
- :param pulumi.Input[str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
46
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags to associate with the Public Gateway.
47
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway should be created.
36
+ :param pulumi.Input[_builtins.str] type: The gateway type.
37
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
38
+ :param pulumi.Input[_builtins.bool] bastion_enabled: Enable SSH bastion on the gateway.
39
+ :param pulumi.Input[_builtins.int] bastion_port: The port on which the SSH bastion will listen.
40
+ :param pulumi.Input[_builtins.bool] enable_smtp: Enable SMTP on the gateway.
41
+ :param pulumi.Input[_builtins.str] ip_id: Attach an existing flexible IP to the gateway.
42
+ :param pulumi.Input[_builtins.bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
43
+ :param pulumi.Input[_builtins.str] name: The name for the Public Gateway. If not provided it will be randomly generated.
44
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the public gateway is associated with.
45
+ :param pulumi.Input[_builtins.str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
46
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags to associate with the Public Gateway.
47
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway should be created.
48
48
  """
49
49
  pulumi.set(__self__, "type", type)
50
50
  if allowed_ip_ranges is not None:
@@ -70,192 +70,192 @@ class VpcPublicGatewayArgs:
70
70
  if zone is not None:
71
71
  pulumi.set(__self__, "zone", zone)
72
72
 
73
- @property
73
+ @_builtins.property
74
74
  @pulumi.getter
75
- def type(self) -> pulumi.Input[str]:
75
+ def type(self) -> pulumi.Input[_builtins.str]:
76
76
  """
77
77
  The gateway type.
78
78
  """
79
79
  return pulumi.get(self, "type")
80
80
 
81
81
  @type.setter
82
- def type(self, value: pulumi.Input[str]):
82
+ def type(self, value: pulumi.Input[_builtins.str]):
83
83
  pulumi.set(self, "type", value)
84
84
 
85
- @property
85
+ @_builtins.property
86
86
  @pulumi.getter(name="allowedIpRanges")
87
- def allowed_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
87
+ def allowed_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
88
88
  """
89
89
  Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
90
90
  """
91
91
  return pulumi.get(self, "allowed_ip_ranges")
92
92
 
93
93
  @allowed_ip_ranges.setter
94
- def allowed_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
94
+ def allowed_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
95
95
  pulumi.set(self, "allowed_ip_ranges", value)
96
96
 
97
- @property
97
+ @_builtins.property
98
98
  @pulumi.getter(name="bastionEnabled")
99
- def bastion_enabled(self) -> Optional[pulumi.Input[bool]]:
99
+ def bastion_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
100
100
  """
101
101
  Enable SSH bastion on the gateway.
102
102
  """
103
103
  return pulumi.get(self, "bastion_enabled")
104
104
 
105
105
  @bastion_enabled.setter
106
- def bastion_enabled(self, value: Optional[pulumi.Input[bool]]):
106
+ def bastion_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
107
107
  pulumi.set(self, "bastion_enabled", value)
108
108
 
109
- @property
109
+ @_builtins.property
110
110
  @pulumi.getter(name="bastionPort")
111
- def bastion_port(self) -> Optional[pulumi.Input[int]]:
111
+ def bastion_port(self) -> Optional[pulumi.Input[_builtins.int]]:
112
112
  """
113
113
  The port on which the SSH bastion will listen.
114
114
  """
115
115
  return pulumi.get(self, "bastion_port")
116
116
 
117
117
  @bastion_port.setter
118
- def bastion_port(self, value: Optional[pulumi.Input[int]]):
118
+ def bastion_port(self, value: Optional[pulumi.Input[_builtins.int]]):
119
119
  pulumi.set(self, "bastion_port", value)
120
120
 
121
- @property
121
+ @_builtins.property
122
122
  @pulumi.getter(name="enableSmtp")
123
- def enable_smtp(self) -> Optional[pulumi.Input[bool]]:
123
+ def enable_smtp(self) -> Optional[pulumi.Input[_builtins.bool]]:
124
124
  """
125
125
  Enable SMTP on the gateway.
126
126
  """
127
127
  return pulumi.get(self, "enable_smtp")
128
128
 
129
129
  @enable_smtp.setter
130
- def enable_smtp(self, value: Optional[pulumi.Input[bool]]):
130
+ def enable_smtp(self, value: Optional[pulumi.Input[_builtins.bool]]):
131
131
  pulumi.set(self, "enable_smtp", value)
132
132
 
133
- @property
133
+ @_builtins.property
134
134
  @pulumi.getter(name="ipId")
135
- def ip_id(self) -> Optional[pulumi.Input[str]]:
135
+ def ip_id(self) -> Optional[pulumi.Input[_builtins.str]]:
136
136
  """
137
137
  Attach an existing flexible IP to the gateway.
138
138
  """
139
139
  return pulumi.get(self, "ip_id")
140
140
 
141
141
  @ip_id.setter
142
- def ip_id(self, value: Optional[pulumi.Input[str]]):
142
+ def ip_id(self, value: Optional[pulumi.Input[_builtins.str]]):
143
143
  pulumi.set(self, "ip_id", value)
144
144
 
145
- @property
145
+ @_builtins.property
146
146
  @pulumi.getter(name="moveToIpam")
147
- def move_to_ipam(self) -> Optional[pulumi.Input[bool]]:
147
+ def move_to_ipam(self) -> Optional[pulumi.Input[_builtins.bool]]:
148
148
  """
149
149
  Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
150
150
  """
151
151
  return pulumi.get(self, "move_to_ipam")
152
152
 
153
153
  @move_to_ipam.setter
154
- def move_to_ipam(self, value: Optional[pulumi.Input[bool]]):
154
+ def move_to_ipam(self, value: Optional[pulumi.Input[_builtins.bool]]):
155
155
  pulumi.set(self, "move_to_ipam", value)
156
156
 
157
- @property
157
+ @_builtins.property
158
158
  @pulumi.getter
159
- def name(self) -> Optional[pulumi.Input[str]]:
159
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
160
160
  """
161
161
  The name for the Public Gateway. If not provided it will be randomly generated.
162
162
  """
163
163
  return pulumi.get(self, "name")
164
164
 
165
165
  @name.setter
166
- def name(self, value: Optional[pulumi.Input[str]]):
166
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
167
167
  pulumi.set(self, "name", value)
168
168
 
169
- @property
169
+ @_builtins.property
170
170
  @pulumi.getter(name="projectId")
171
- def project_id(self) -> Optional[pulumi.Input[str]]:
171
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
172
172
  """
173
173
  `project_id`) The ID of the project the public gateway is associated with.
174
174
  """
175
175
  return pulumi.get(self, "project_id")
176
176
 
177
177
  @project_id.setter
178
- def project_id(self, value: Optional[pulumi.Input[str]]):
178
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
179
179
  pulumi.set(self, "project_id", value)
180
180
 
181
- @property
181
+ @_builtins.property
182
182
  @pulumi.getter(name="refreshSshKeys")
183
- def refresh_ssh_keys(self) -> Optional[pulumi.Input[str]]:
183
+ def refresh_ssh_keys(self) -> Optional[pulumi.Input[_builtins.str]]:
184
184
  """
185
185
  Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
186
186
  """
187
187
  return pulumi.get(self, "refresh_ssh_keys")
188
188
 
189
189
  @refresh_ssh_keys.setter
190
- def refresh_ssh_keys(self, value: Optional[pulumi.Input[str]]):
190
+ def refresh_ssh_keys(self, value: Optional[pulumi.Input[_builtins.str]]):
191
191
  pulumi.set(self, "refresh_ssh_keys", value)
192
192
 
193
- @property
193
+ @_builtins.property
194
194
  @pulumi.getter
195
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
195
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
196
196
  """
197
197
  The tags to associate with the Public Gateway.
198
198
  """
199
199
  return pulumi.get(self, "tags")
200
200
 
201
201
  @tags.setter
202
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
202
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
203
203
  pulumi.set(self, "tags", value)
204
204
 
205
- @property
205
+ @_builtins.property
206
206
  @pulumi.getter
207
- def zone(self) -> Optional[pulumi.Input[str]]:
207
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
208
208
  """
209
209
  `zone`) The zone in which the Public Gateway should be created.
210
210
  """
211
211
  return pulumi.get(self, "zone")
212
212
 
213
213
  @zone.setter
214
- def zone(self, value: Optional[pulumi.Input[str]]):
214
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
215
215
  pulumi.set(self, "zone", value)
216
216
 
217
217
 
218
218
  @pulumi.input_type
219
219
  class _VpcPublicGatewayState:
220
220
  def __init__(__self__, *,
221
- allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
222
- bandwidth: Optional[pulumi.Input[int]] = None,
223
- bastion_enabled: Optional[pulumi.Input[bool]] = None,
224
- bastion_port: Optional[pulumi.Input[int]] = None,
225
- created_at: Optional[pulumi.Input[str]] = None,
226
- enable_smtp: Optional[pulumi.Input[bool]] = None,
227
- ip_id: Optional[pulumi.Input[str]] = None,
228
- move_to_ipam: Optional[pulumi.Input[bool]] = None,
229
- name: Optional[pulumi.Input[str]] = None,
230
- organization_id: Optional[pulumi.Input[str]] = None,
231
- project_id: Optional[pulumi.Input[str]] = None,
232
- refresh_ssh_keys: Optional[pulumi.Input[str]] = None,
233
- status: Optional[pulumi.Input[str]] = None,
234
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
235
- type: Optional[pulumi.Input[str]] = None,
236
- updated_at: Optional[pulumi.Input[str]] = None,
237
- upstream_dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
238
- zone: Optional[pulumi.Input[str]] = None):
221
+ allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
222
+ bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
223
+ bastion_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
224
+ bastion_port: Optional[pulumi.Input[_builtins.int]] = None,
225
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
226
+ enable_smtp: Optional[pulumi.Input[_builtins.bool]] = None,
227
+ ip_id: Optional[pulumi.Input[_builtins.str]] = None,
228
+ move_to_ipam: Optional[pulumi.Input[_builtins.bool]] = None,
229
+ name: Optional[pulumi.Input[_builtins.str]] = None,
230
+ organization_id: Optional[pulumi.Input[_builtins.str]] = None,
231
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
232
+ refresh_ssh_keys: Optional[pulumi.Input[_builtins.str]] = None,
233
+ status: Optional[pulumi.Input[_builtins.str]] = None,
234
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
235
+ type: Optional[pulumi.Input[_builtins.str]] = None,
236
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
237
+ upstream_dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
238
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
239
239
  """
240
240
  Input properties used for looking up and filtering VpcPublicGateway resources.
241
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
242
- :param pulumi.Input[int] bandwidth: The bandwidth available of the gateway
243
- :param pulumi.Input[bool] bastion_enabled: Enable SSH bastion on the gateway.
244
- :param pulumi.Input[int] bastion_port: The port on which the SSH bastion will listen.
245
- :param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway.
246
- :param pulumi.Input[bool] enable_smtp: Enable SMTP on the gateway.
247
- :param pulumi.Input[str] ip_id: Attach an existing flexible IP to the gateway.
248
- :param pulumi.Input[bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
249
- :param pulumi.Input[str] name: The name for the Public Gateway. If not provided it will be randomly generated.
250
- :param pulumi.Input[str] organization_id: The Organization ID the Public Gateway is associated with.
251
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the public gateway is associated with.
252
- :param pulumi.Input[str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
253
- :param pulumi.Input[str] status: The status of the public gateway.
254
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags to associate with the Public Gateway.
255
- :param pulumi.Input[str] type: The gateway type.
256
- :param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway.
257
- :param pulumi.Input[Sequence[pulumi.Input[str]]] upstream_dns_servers: Override the gateway's default recursive DNS servers, if DNS features are enabled.
258
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway should be created.
241
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
242
+ :param pulumi.Input[_builtins.int] bandwidth: The bandwidth available of the gateway
243
+ :param pulumi.Input[_builtins.bool] bastion_enabled: Enable SSH bastion on the gateway.
244
+ :param pulumi.Input[_builtins.int] bastion_port: The port on which the SSH bastion will listen.
245
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the Public Gateway.
246
+ :param pulumi.Input[_builtins.bool] enable_smtp: Enable SMTP on the gateway.
247
+ :param pulumi.Input[_builtins.str] ip_id: Attach an existing flexible IP to the gateway.
248
+ :param pulumi.Input[_builtins.bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
249
+ :param pulumi.Input[_builtins.str] name: The name for the Public Gateway. If not provided it will be randomly generated.
250
+ :param pulumi.Input[_builtins.str] organization_id: The Organization ID the Public Gateway is associated with.
251
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the public gateway is associated with.
252
+ :param pulumi.Input[_builtins.str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
253
+ :param pulumi.Input[_builtins.str] status: The status of the public gateway.
254
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags to associate with the Public Gateway.
255
+ :param pulumi.Input[_builtins.str] type: The gateway type.
256
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the Public Gateway.
257
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] upstream_dns_servers: Override the gateway's default recursive DNS servers, if DNS features are enabled.
258
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway should be created.
259
259
  """
260
260
  if allowed_ip_ranges is not None:
261
261
  pulumi.set(__self__, "allowed_ip_ranges", allowed_ip_ranges)
@@ -294,226 +294,227 @@ class _VpcPublicGatewayState:
294
294
  if zone is not None:
295
295
  pulumi.set(__self__, "zone", zone)
296
296
 
297
- @property
297
+ @_builtins.property
298
298
  @pulumi.getter(name="allowedIpRanges")
299
- def allowed_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
299
+ def allowed_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
300
300
  """
301
301
  Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
302
302
  """
303
303
  return pulumi.get(self, "allowed_ip_ranges")
304
304
 
305
305
  @allowed_ip_ranges.setter
306
- def allowed_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
306
+ def allowed_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
307
307
  pulumi.set(self, "allowed_ip_ranges", value)
308
308
 
309
- @property
309
+ @_builtins.property
310
310
  @pulumi.getter
311
- def bandwidth(self) -> Optional[pulumi.Input[int]]:
311
+ def bandwidth(self) -> Optional[pulumi.Input[_builtins.int]]:
312
312
  """
313
313
  The bandwidth available of the gateway
314
314
  """
315
315
  return pulumi.get(self, "bandwidth")
316
316
 
317
317
  @bandwidth.setter
318
- def bandwidth(self, value: Optional[pulumi.Input[int]]):
318
+ def bandwidth(self, value: Optional[pulumi.Input[_builtins.int]]):
319
319
  pulumi.set(self, "bandwidth", value)
320
320
 
321
- @property
321
+ @_builtins.property
322
322
  @pulumi.getter(name="bastionEnabled")
323
- def bastion_enabled(self) -> Optional[pulumi.Input[bool]]:
323
+ def bastion_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
324
324
  """
325
325
  Enable SSH bastion on the gateway.
326
326
  """
327
327
  return pulumi.get(self, "bastion_enabled")
328
328
 
329
329
  @bastion_enabled.setter
330
- def bastion_enabled(self, value: Optional[pulumi.Input[bool]]):
330
+ def bastion_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
331
331
  pulumi.set(self, "bastion_enabled", value)
332
332
 
333
- @property
333
+ @_builtins.property
334
334
  @pulumi.getter(name="bastionPort")
335
- def bastion_port(self) -> Optional[pulumi.Input[int]]:
335
+ def bastion_port(self) -> Optional[pulumi.Input[_builtins.int]]:
336
336
  """
337
337
  The port on which the SSH bastion will listen.
338
338
  """
339
339
  return pulumi.get(self, "bastion_port")
340
340
 
341
341
  @bastion_port.setter
342
- def bastion_port(self, value: Optional[pulumi.Input[int]]):
342
+ def bastion_port(self, value: Optional[pulumi.Input[_builtins.int]]):
343
343
  pulumi.set(self, "bastion_port", value)
344
344
 
345
- @property
345
+ @_builtins.property
346
346
  @pulumi.getter(name="createdAt")
347
- def created_at(self) -> Optional[pulumi.Input[str]]:
347
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
348
348
  """
349
349
  The date and time of the creation of the Public Gateway.
350
350
  """
351
351
  return pulumi.get(self, "created_at")
352
352
 
353
353
  @created_at.setter
354
- def created_at(self, value: Optional[pulumi.Input[str]]):
354
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
355
355
  pulumi.set(self, "created_at", value)
356
356
 
357
- @property
357
+ @_builtins.property
358
358
  @pulumi.getter(name="enableSmtp")
359
- def enable_smtp(self) -> Optional[pulumi.Input[bool]]:
359
+ def enable_smtp(self) -> Optional[pulumi.Input[_builtins.bool]]:
360
360
  """
361
361
  Enable SMTP on the gateway.
362
362
  """
363
363
  return pulumi.get(self, "enable_smtp")
364
364
 
365
365
  @enable_smtp.setter
366
- def enable_smtp(self, value: Optional[pulumi.Input[bool]]):
366
+ def enable_smtp(self, value: Optional[pulumi.Input[_builtins.bool]]):
367
367
  pulumi.set(self, "enable_smtp", value)
368
368
 
369
- @property
369
+ @_builtins.property
370
370
  @pulumi.getter(name="ipId")
371
- def ip_id(self) -> Optional[pulumi.Input[str]]:
371
+ def ip_id(self) -> Optional[pulumi.Input[_builtins.str]]:
372
372
  """
373
373
  Attach an existing flexible IP to the gateway.
374
374
  """
375
375
  return pulumi.get(self, "ip_id")
376
376
 
377
377
  @ip_id.setter
378
- def ip_id(self, value: Optional[pulumi.Input[str]]):
378
+ def ip_id(self, value: Optional[pulumi.Input[_builtins.str]]):
379
379
  pulumi.set(self, "ip_id", value)
380
380
 
381
- @property
381
+ @_builtins.property
382
382
  @pulumi.getter(name="moveToIpam")
383
- def move_to_ipam(self) -> Optional[pulumi.Input[bool]]:
383
+ def move_to_ipam(self) -> Optional[pulumi.Input[_builtins.bool]]:
384
384
  """
385
385
  Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
386
386
  """
387
387
  return pulumi.get(self, "move_to_ipam")
388
388
 
389
389
  @move_to_ipam.setter
390
- def move_to_ipam(self, value: Optional[pulumi.Input[bool]]):
390
+ def move_to_ipam(self, value: Optional[pulumi.Input[_builtins.bool]]):
391
391
  pulumi.set(self, "move_to_ipam", value)
392
392
 
393
- @property
393
+ @_builtins.property
394
394
  @pulumi.getter
395
- def name(self) -> Optional[pulumi.Input[str]]:
395
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
396
396
  """
397
397
  The name for the Public Gateway. If not provided it will be randomly generated.
398
398
  """
399
399
  return pulumi.get(self, "name")
400
400
 
401
401
  @name.setter
402
- def name(self, value: Optional[pulumi.Input[str]]):
402
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
403
403
  pulumi.set(self, "name", value)
404
404
 
405
- @property
405
+ @_builtins.property
406
406
  @pulumi.getter(name="organizationId")
407
- def organization_id(self) -> Optional[pulumi.Input[str]]:
407
+ def organization_id(self) -> Optional[pulumi.Input[_builtins.str]]:
408
408
  """
409
409
  The Organization ID the Public Gateway is associated with.
410
410
  """
411
411
  return pulumi.get(self, "organization_id")
412
412
 
413
413
  @organization_id.setter
414
- def organization_id(self, value: Optional[pulumi.Input[str]]):
414
+ def organization_id(self, value: Optional[pulumi.Input[_builtins.str]]):
415
415
  pulumi.set(self, "organization_id", value)
416
416
 
417
- @property
417
+ @_builtins.property
418
418
  @pulumi.getter(name="projectId")
419
- def project_id(self) -> Optional[pulumi.Input[str]]:
419
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
420
420
  """
421
421
  `project_id`) The ID of the project the public gateway is associated with.
422
422
  """
423
423
  return pulumi.get(self, "project_id")
424
424
 
425
425
  @project_id.setter
426
- def project_id(self, value: Optional[pulumi.Input[str]]):
426
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
427
427
  pulumi.set(self, "project_id", value)
428
428
 
429
- @property
429
+ @_builtins.property
430
430
  @pulumi.getter(name="refreshSshKeys")
431
- def refresh_ssh_keys(self) -> Optional[pulumi.Input[str]]:
431
+ def refresh_ssh_keys(self) -> Optional[pulumi.Input[_builtins.str]]:
432
432
  """
433
433
  Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
434
434
  """
435
435
  return pulumi.get(self, "refresh_ssh_keys")
436
436
 
437
437
  @refresh_ssh_keys.setter
438
- def refresh_ssh_keys(self, value: Optional[pulumi.Input[str]]):
438
+ def refresh_ssh_keys(self, value: Optional[pulumi.Input[_builtins.str]]):
439
439
  pulumi.set(self, "refresh_ssh_keys", value)
440
440
 
441
- @property
441
+ @_builtins.property
442
442
  @pulumi.getter
443
- def status(self) -> Optional[pulumi.Input[str]]:
443
+ def status(self) -> Optional[pulumi.Input[_builtins.str]]:
444
444
  """
445
445
  The status of the public gateway.
446
446
  """
447
447
  return pulumi.get(self, "status")
448
448
 
449
449
  @status.setter
450
- def status(self, value: Optional[pulumi.Input[str]]):
450
+ def status(self, value: Optional[pulumi.Input[_builtins.str]]):
451
451
  pulumi.set(self, "status", value)
452
452
 
453
- @property
453
+ @_builtins.property
454
454
  @pulumi.getter
455
- def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
455
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
456
456
  """
457
457
  The tags to associate with the Public Gateway.
458
458
  """
459
459
  return pulumi.get(self, "tags")
460
460
 
461
461
  @tags.setter
462
- def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
462
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
463
463
  pulumi.set(self, "tags", value)
464
464
 
465
- @property
465
+ @_builtins.property
466
466
  @pulumi.getter
467
- def type(self) -> Optional[pulumi.Input[str]]:
467
+ def type(self) -> Optional[pulumi.Input[_builtins.str]]:
468
468
  """
469
469
  The gateway type.
470
470
  """
471
471
  return pulumi.get(self, "type")
472
472
 
473
473
  @type.setter
474
- def type(self, value: Optional[pulumi.Input[str]]):
474
+ def type(self, value: Optional[pulumi.Input[_builtins.str]]):
475
475
  pulumi.set(self, "type", value)
476
476
 
477
- @property
477
+ @_builtins.property
478
478
  @pulumi.getter(name="updatedAt")
479
- def updated_at(self) -> Optional[pulumi.Input[str]]:
479
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
480
480
  """
481
481
  The date and time of the last update of the Public Gateway.
482
482
  """
483
483
  return pulumi.get(self, "updated_at")
484
484
 
485
485
  @updated_at.setter
486
- def updated_at(self, value: Optional[pulumi.Input[str]]):
486
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
487
487
  pulumi.set(self, "updated_at", value)
488
488
 
489
- @property
489
+ @_builtins.property
490
490
  @pulumi.getter(name="upstreamDnsServers")
491
- def upstream_dns_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
491
+ def upstream_dns_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
492
492
  """
493
493
  Override the gateway's default recursive DNS servers, if DNS features are enabled.
494
494
  """
495
495
  return pulumi.get(self, "upstream_dns_servers")
496
496
 
497
497
  @upstream_dns_servers.setter
498
- def upstream_dns_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
498
+ def upstream_dns_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
499
499
  pulumi.set(self, "upstream_dns_servers", value)
500
500
 
501
- @property
501
+ @_builtins.property
502
502
  @pulumi.getter
503
- def zone(self) -> Optional[pulumi.Input[str]]:
503
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
504
504
  """
505
505
  `zone`) The zone in which the Public Gateway should be created.
506
506
  """
507
507
  return pulumi.get(self, "zone")
508
508
 
509
509
  @zone.setter
510
- def zone(self, value: Optional[pulumi.Input[str]]):
510
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
511
511
  pulumi.set(self, "zone", value)
512
512
 
513
513
 
514
514
  warnings.warn("""scaleway.index/vpcpublicgateway.VpcPublicGateway has been deprecated in favor of scaleway.network/publicgateway.PublicGateway""", DeprecationWarning)
515
515
 
516
516
 
517
+ @pulumi.type_token("scaleway:index/vpcPublicGateway:VpcPublicGateway")
517
518
  class VpcPublicGateway(pulumi.CustomResource):
518
519
  warnings.warn("""scaleway.index/vpcpublicgateway.VpcPublicGateway has been deprecated in favor of scaleway.network/publicgateway.PublicGateway""", DeprecationWarning)
519
520
 
@@ -521,18 +522,18 @@ class VpcPublicGateway(pulumi.CustomResource):
521
522
  def __init__(__self__,
522
523
  resource_name: str,
523
524
  opts: Optional[pulumi.ResourceOptions] = None,
524
- allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
525
- bastion_enabled: Optional[pulumi.Input[bool]] = None,
526
- bastion_port: Optional[pulumi.Input[int]] = None,
527
- enable_smtp: Optional[pulumi.Input[bool]] = None,
528
- ip_id: Optional[pulumi.Input[str]] = None,
529
- move_to_ipam: Optional[pulumi.Input[bool]] = None,
530
- name: Optional[pulumi.Input[str]] = None,
531
- project_id: Optional[pulumi.Input[str]] = None,
532
- refresh_ssh_keys: Optional[pulumi.Input[str]] = None,
533
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
534
- type: Optional[pulumi.Input[str]] = None,
535
- zone: Optional[pulumi.Input[str]] = None,
525
+ allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
526
+ bastion_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
527
+ bastion_port: Optional[pulumi.Input[_builtins.int]] = None,
528
+ enable_smtp: Optional[pulumi.Input[_builtins.bool]] = None,
529
+ ip_id: Optional[pulumi.Input[_builtins.str]] = None,
530
+ move_to_ipam: Optional[pulumi.Input[_builtins.bool]] = None,
531
+ name: Optional[pulumi.Input[_builtins.str]] = None,
532
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
533
+ refresh_ssh_keys: Optional[pulumi.Input[_builtins.str]] = None,
534
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
535
+ type: Optional[pulumi.Input[_builtins.str]] = None,
536
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
536
537
  __props__=None):
537
538
  """
538
539
  Creates and manages Scaleway Public Gateways.
@@ -567,18 +568,18 @@ class VpcPublicGateway(pulumi.CustomResource):
567
568
 
568
569
  :param str resource_name: The name of the resource.
569
570
  :param pulumi.ResourceOptions opts: Options for the resource.
570
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
571
- :param pulumi.Input[bool] bastion_enabled: Enable SSH bastion on the gateway.
572
- :param pulumi.Input[int] bastion_port: The port on which the SSH bastion will listen.
573
- :param pulumi.Input[bool] enable_smtp: Enable SMTP on the gateway.
574
- :param pulumi.Input[str] ip_id: Attach an existing flexible IP to the gateway.
575
- :param pulumi.Input[bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
576
- :param pulumi.Input[str] name: The name for the Public Gateway. If not provided it will be randomly generated.
577
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the public gateway is associated with.
578
- :param pulumi.Input[str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
579
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags to associate with the Public Gateway.
580
- :param pulumi.Input[str] type: The gateway type.
581
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway should be created.
571
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
572
+ :param pulumi.Input[_builtins.bool] bastion_enabled: Enable SSH bastion on the gateway.
573
+ :param pulumi.Input[_builtins.int] bastion_port: The port on which the SSH bastion will listen.
574
+ :param pulumi.Input[_builtins.bool] enable_smtp: Enable SMTP on the gateway.
575
+ :param pulumi.Input[_builtins.str] ip_id: Attach an existing flexible IP to the gateway.
576
+ :param pulumi.Input[_builtins.bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
577
+ :param pulumi.Input[_builtins.str] name: The name for the Public Gateway. If not provided it will be randomly generated.
578
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the public gateway is associated with.
579
+ :param pulumi.Input[_builtins.str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
580
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags to associate with the Public Gateway.
581
+ :param pulumi.Input[_builtins.str] type: The gateway type.
582
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway should be created.
582
583
  """
583
584
  ...
584
585
  @overload
@@ -632,18 +633,18 @@ class VpcPublicGateway(pulumi.CustomResource):
632
633
  def _internal_init(__self__,
633
634
  resource_name: str,
634
635
  opts: Optional[pulumi.ResourceOptions] = None,
635
- allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
636
- bastion_enabled: Optional[pulumi.Input[bool]] = None,
637
- bastion_port: Optional[pulumi.Input[int]] = None,
638
- enable_smtp: Optional[pulumi.Input[bool]] = None,
639
- ip_id: Optional[pulumi.Input[str]] = None,
640
- move_to_ipam: Optional[pulumi.Input[bool]] = None,
641
- name: Optional[pulumi.Input[str]] = None,
642
- project_id: Optional[pulumi.Input[str]] = None,
643
- refresh_ssh_keys: Optional[pulumi.Input[str]] = None,
644
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
645
- type: Optional[pulumi.Input[str]] = None,
646
- zone: Optional[pulumi.Input[str]] = None,
636
+ allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
637
+ bastion_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
638
+ bastion_port: Optional[pulumi.Input[_builtins.int]] = None,
639
+ enable_smtp: Optional[pulumi.Input[_builtins.bool]] = None,
640
+ ip_id: Optional[pulumi.Input[_builtins.str]] = None,
641
+ move_to_ipam: Optional[pulumi.Input[_builtins.bool]] = None,
642
+ name: Optional[pulumi.Input[_builtins.str]] = None,
643
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
644
+ refresh_ssh_keys: Optional[pulumi.Input[_builtins.str]] = None,
645
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
646
+ type: Optional[pulumi.Input[_builtins.str]] = None,
647
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
647
648
  __props__=None):
648
649
  pulumi.log.warn("""VpcPublicGateway is deprecated: scaleway.index/vpcpublicgateway.VpcPublicGateway has been deprecated in favor of scaleway.network/publicgateway.PublicGateway""")
649
650
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -684,24 +685,24 @@ class VpcPublicGateway(pulumi.CustomResource):
684
685
  def get(resource_name: str,
685
686
  id: pulumi.Input[str],
686
687
  opts: Optional[pulumi.ResourceOptions] = None,
687
- allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
688
- bandwidth: Optional[pulumi.Input[int]] = None,
689
- bastion_enabled: Optional[pulumi.Input[bool]] = None,
690
- bastion_port: Optional[pulumi.Input[int]] = None,
691
- created_at: Optional[pulumi.Input[str]] = None,
692
- enable_smtp: Optional[pulumi.Input[bool]] = None,
693
- ip_id: Optional[pulumi.Input[str]] = None,
694
- move_to_ipam: Optional[pulumi.Input[bool]] = None,
695
- name: Optional[pulumi.Input[str]] = None,
696
- organization_id: Optional[pulumi.Input[str]] = None,
697
- project_id: Optional[pulumi.Input[str]] = None,
698
- refresh_ssh_keys: Optional[pulumi.Input[str]] = None,
699
- status: Optional[pulumi.Input[str]] = None,
700
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
701
- type: Optional[pulumi.Input[str]] = None,
702
- updated_at: Optional[pulumi.Input[str]] = None,
703
- upstream_dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
704
- zone: Optional[pulumi.Input[str]] = None) -> 'VpcPublicGateway':
688
+ allowed_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
689
+ bandwidth: Optional[pulumi.Input[_builtins.int]] = None,
690
+ bastion_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
691
+ bastion_port: Optional[pulumi.Input[_builtins.int]] = None,
692
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
693
+ enable_smtp: Optional[pulumi.Input[_builtins.bool]] = None,
694
+ ip_id: Optional[pulumi.Input[_builtins.str]] = None,
695
+ move_to_ipam: Optional[pulumi.Input[_builtins.bool]] = None,
696
+ name: Optional[pulumi.Input[_builtins.str]] = None,
697
+ organization_id: Optional[pulumi.Input[_builtins.str]] = None,
698
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
699
+ refresh_ssh_keys: Optional[pulumi.Input[_builtins.str]] = None,
700
+ status: Optional[pulumi.Input[_builtins.str]] = None,
701
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
702
+ type: Optional[pulumi.Input[_builtins.str]] = None,
703
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
704
+ upstream_dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
705
+ zone: Optional[pulumi.Input[_builtins.str]] = None) -> 'VpcPublicGateway':
705
706
  """
706
707
  Get an existing VpcPublicGateway resource's state with the given name, id, and optional extra
707
708
  properties used to qualify the lookup.
@@ -709,24 +710,24 @@ class VpcPublicGateway(pulumi.CustomResource):
709
710
  :param str resource_name: The unique name of the resulting resource.
710
711
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
711
712
  :param pulumi.ResourceOptions opts: Options for the resource.
712
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
713
- :param pulumi.Input[int] bandwidth: The bandwidth available of the gateway
714
- :param pulumi.Input[bool] bastion_enabled: Enable SSH bastion on the gateway.
715
- :param pulumi.Input[int] bastion_port: The port on which the SSH bastion will listen.
716
- :param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway.
717
- :param pulumi.Input[bool] enable_smtp: Enable SMTP on the gateway.
718
- :param pulumi.Input[str] ip_id: Attach an existing flexible IP to the gateway.
719
- :param pulumi.Input[bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
720
- :param pulumi.Input[str] name: The name for the Public Gateway. If not provided it will be randomly generated.
721
- :param pulumi.Input[str] organization_id: The Organization ID the Public Gateway is associated with.
722
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the public gateway is associated with.
723
- :param pulumi.Input[str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
724
- :param pulumi.Input[str] status: The status of the public gateway.
725
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags to associate with the Public Gateway.
726
- :param pulumi.Input[str] type: The gateway type.
727
- :param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway.
728
- :param pulumi.Input[Sequence[pulumi.Input[str]]] upstream_dns_servers: Override the gateway's default recursive DNS servers, if DNS features are enabled.
729
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway should be created.
713
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
714
+ :param pulumi.Input[_builtins.int] bandwidth: The bandwidth available of the gateway
715
+ :param pulumi.Input[_builtins.bool] bastion_enabled: Enable SSH bastion on the gateway.
716
+ :param pulumi.Input[_builtins.int] bastion_port: The port on which the SSH bastion will listen.
717
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the Public Gateway.
718
+ :param pulumi.Input[_builtins.bool] enable_smtp: Enable SMTP on the gateway.
719
+ :param pulumi.Input[_builtins.str] ip_id: Attach an existing flexible IP to the gateway.
720
+ :param pulumi.Input[_builtins.bool] move_to_ipam: Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
721
+ :param pulumi.Input[_builtins.str] name: The name for the Public Gateway. If not provided it will be randomly generated.
722
+ :param pulumi.Input[_builtins.str] organization_id: The Organization ID the Public Gateway is associated with.
723
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the public gateway is associated with.
724
+ :param pulumi.Input[_builtins.str] refresh_ssh_keys: Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
725
+ :param pulumi.Input[_builtins.str] status: The status of the public gateway.
726
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: The tags to associate with the Public Gateway.
727
+ :param pulumi.Input[_builtins.str] type: The gateway type.
728
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the Public Gateway.
729
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] upstream_dns_servers: Override the gateway's default recursive DNS servers, if DNS features are enabled.
730
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway should be created.
730
731
  """
731
732
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
732
733
 
@@ -752,145 +753,145 @@ class VpcPublicGateway(pulumi.CustomResource):
752
753
  __props__.__dict__["zone"] = zone
753
754
  return VpcPublicGateway(resource_name, opts=opts, __props__=__props__)
754
755
 
755
- @property
756
+ @_builtins.property
756
757
  @pulumi.getter(name="allowedIpRanges")
757
- def allowed_ip_ranges(self) -> pulumi.Output[Sequence[str]]:
758
+ def allowed_ip_ranges(self) -> pulumi.Output[Sequence[_builtins.str]]:
758
759
  """
759
760
  Set a definitive list of IP ranges (in CIDR notation) allowed to connect to the SSH bastion.
760
761
  """
761
762
  return pulumi.get(self, "allowed_ip_ranges")
762
763
 
763
- @property
764
+ @_builtins.property
764
765
  @pulumi.getter
765
- def bandwidth(self) -> pulumi.Output[int]:
766
+ def bandwidth(self) -> pulumi.Output[_builtins.int]:
766
767
  """
767
768
  The bandwidth available of the gateway
768
769
  """
769
770
  return pulumi.get(self, "bandwidth")
770
771
 
771
- @property
772
+ @_builtins.property
772
773
  @pulumi.getter(name="bastionEnabled")
773
- def bastion_enabled(self) -> pulumi.Output[Optional[bool]]:
774
+ def bastion_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
774
775
  """
775
776
  Enable SSH bastion on the gateway.
776
777
  """
777
778
  return pulumi.get(self, "bastion_enabled")
778
779
 
779
- @property
780
+ @_builtins.property
780
781
  @pulumi.getter(name="bastionPort")
781
- def bastion_port(self) -> pulumi.Output[int]:
782
+ def bastion_port(self) -> pulumi.Output[_builtins.int]:
782
783
  """
783
784
  The port on which the SSH bastion will listen.
784
785
  """
785
786
  return pulumi.get(self, "bastion_port")
786
787
 
787
- @property
788
+ @_builtins.property
788
789
  @pulumi.getter(name="createdAt")
789
- def created_at(self) -> pulumi.Output[str]:
790
+ def created_at(self) -> pulumi.Output[_builtins.str]:
790
791
  """
791
792
  The date and time of the creation of the Public Gateway.
792
793
  """
793
794
  return pulumi.get(self, "created_at")
794
795
 
795
- @property
796
+ @_builtins.property
796
797
  @pulumi.getter(name="enableSmtp")
797
- def enable_smtp(self) -> pulumi.Output[bool]:
798
+ def enable_smtp(self) -> pulumi.Output[_builtins.bool]:
798
799
  """
799
800
  Enable SMTP on the gateway.
800
801
  """
801
802
  return pulumi.get(self, "enable_smtp")
802
803
 
803
- @property
804
+ @_builtins.property
804
805
  @pulumi.getter(name="ipId")
805
- def ip_id(self) -> pulumi.Output[str]:
806
+ def ip_id(self) -> pulumi.Output[_builtins.str]:
806
807
  """
807
808
  Attach an existing flexible IP to the gateway.
808
809
  """
809
810
  return pulumi.get(self, "ip_id")
810
811
 
811
- @property
812
+ @_builtins.property
812
813
  @pulumi.getter(name="moveToIpam")
813
- def move_to_ipam(self) -> pulumi.Output[Optional[bool]]:
814
+ def move_to_ipam(self) -> pulumi.Output[Optional[_builtins.bool]]:
814
815
  """
815
816
  Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2
816
817
  """
817
818
  return pulumi.get(self, "move_to_ipam")
818
819
 
819
- @property
820
+ @_builtins.property
820
821
  @pulumi.getter
821
- def name(self) -> pulumi.Output[str]:
822
+ def name(self) -> pulumi.Output[_builtins.str]:
822
823
  """
823
824
  The name for the Public Gateway. If not provided it will be randomly generated.
824
825
  """
825
826
  return pulumi.get(self, "name")
826
827
 
827
- @property
828
+ @_builtins.property
828
829
  @pulumi.getter(name="organizationId")
829
- def organization_id(self) -> pulumi.Output[str]:
830
+ def organization_id(self) -> pulumi.Output[_builtins.str]:
830
831
  """
831
832
  The Organization ID the Public Gateway is associated with.
832
833
  """
833
834
  return pulumi.get(self, "organization_id")
834
835
 
835
- @property
836
+ @_builtins.property
836
837
  @pulumi.getter(name="projectId")
837
- def project_id(self) -> pulumi.Output[str]:
838
+ def project_id(self) -> pulumi.Output[_builtins.str]:
838
839
  """
839
840
  `project_id`) The ID of the project the public gateway is associated with.
840
841
  """
841
842
  return pulumi.get(self, "project_id")
842
843
 
843
- @property
844
+ @_builtins.property
844
845
  @pulumi.getter(name="refreshSshKeys")
845
- def refresh_ssh_keys(self) -> pulumi.Output[Optional[str]]:
846
+ def refresh_ssh_keys(self) -> pulumi.Output[Optional[_builtins.str]]:
846
847
  """
847
848
  Trigger a refresh of the SSH keys on the Public Gateway by changing this field's value.
848
849
  """
849
850
  return pulumi.get(self, "refresh_ssh_keys")
850
851
 
851
- @property
852
+ @_builtins.property
852
853
  @pulumi.getter
853
- def status(self) -> pulumi.Output[str]:
854
+ def status(self) -> pulumi.Output[_builtins.str]:
854
855
  """
855
856
  The status of the public gateway.
856
857
  """
857
858
  return pulumi.get(self, "status")
858
859
 
859
- @property
860
+ @_builtins.property
860
861
  @pulumi.getter
861
- def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
862
+ def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
862
863
  """
863
864
  The tags to associate with the Public Gateway.
864
865
  """
865
866
  return pulumi.get(self, "tags")
866
867
 
867
- @property
868
+ @_builtins.property
868
869
  @pulumi.getter
869
- def type(self) -> pulumi.Output[str]:
870
+ def type(self) -> pulumi.Output[_builtins.str]:
870
871
  """
871
872
  The gateway type.
872
873
  """
873
874
  return pulumi.get(self, "type")
874
875
 
875
- @property
876
+ @_builtins.property
876
877
  @pulumi.getter(name="updatedAt")
877
- def updated_at(self) -> pulumi.Output[str]:
878
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
878
879
  """
879
880
  The date and time of the last update of the Public Gateway.
880
881
  """
881
882
  return pulumi.get(self, "updated_at")
882
883
 
883
- @property
884
+ @_builtins.property
884
885
  @pulumi.getter(name="upstreamDnsServers")
885
- def upstream_dns_servers(self) -> pulumi.Output[Sequence[str]]:
886
+ def upstream_dns_servers(self) -> pulumi.Output[Sequence[_builtins.str]]:
886
887
  """
887
888
  Override the gateway's default recursive DNS servers, if DNS features are enabled.
888
889
  """
889
890
  return pulumi.get(self, "upstream_dns_servers")
890
891
 
891
- @property
892
+ @_builtins.property
892
893
  @pulumi.getter
893
- def zone(self) -> pulumi.Output[str]:
894
+ def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
894
895
  """
895
896
  `zone`) The zone in which the Public Gateway should be created.
896
897
  """