pulumiverse-scaleway 1.29.0a1747948949__py3-none-any.whl → 1.30.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (490) hide show
  1. pulumiverse_scaleway/__init__.py +11 -2
  2. pulumiverse_scaleway/_inputs.py +2338 -2123
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +4 -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 +242 -0
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +96 -0
  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 +282 -261
  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 +4 -1
  25. pulumiverse_scaleway/block/_inputs.py +74 -0
  26. pulumiverse_scaleway/block/get_snapshot.py +42 -29
  27. pulumiverse_scaleway/block/get_volume.py +28 -27
  28. pulumiverse_scaleway/block/outputs.py +80 -0
  29. pulumiverse_scaleway/block/snapshot.py +132 -82
  30. pulumiverse_scaleway/block/volume.py +115 -113
  31. pulumiverse_scaleway/block_snapshot.py +132 -82
  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 +575 -345
  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 +575 -345
  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 +317 -296
  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 +317 -296
  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 +26 -19
  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 +3 -2
  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 +216 -0
  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 +282 -261
  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 +42 -29
  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 +26 -19
  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 +47 -35
  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 +573 -108
  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 +573 -108
  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 +114 -93
  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 +413 -331
  274. pulumiverse_scaleway/instance/snapshot.py +132 -109
  275. pulumiverse_scaleway/instance/user_data.py +59 -57
  276. pulumiverse_scaleway/instance/volume.py +153 -130
  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 +114 -93
  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 +413 -331
  285. pulumiverse_scaleway/instance_snapshot.py +132 -109
  286. pulumiverse_scaleway/instance_user_data.py +59 -57
  287. pulumiverse_scaleway/instance_volume.py +153 -130
  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 +306 -204
  379. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  380. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  381. pulumiverse_scaleway/mongodb/_inputs.py +97 -42
  382. pulumiverse_scaleway/mongodb/get_instance.py +47 -35
  383. pulumiverse_scaleway/mongodb/instance.py +306 -204
  384. pulumiverse_scaleway/mongodb/outputs.py +114 -51
  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 +163 -142
  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 -2
  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 +2895 -2708
  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 +198 -177
  444. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  445. pulumiverse_scaleway/redis/outputs.py +74 -73
  446. pulumiverse_scaleway/redis_cluster.py +198 -177
  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 +163 -142
  477. pulumiverse_scaleway/vpc_private_network.py +122 -120
  478. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  479. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  480. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  481. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  482. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  483. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  484. pulumiverse_scaleway/vpc_route.py +115 -113
  485. pulumiverse_scaleway/webhosting.py +164 -162
  486. {pulumiverse_scaleway-1.29.0a1747948949.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0.dist-info/RECORD +493 -0
  488. {pulumiverse_scaleway-1.29.0a1747948949.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/WHEEL +1 -1
  489. pulumiverse_scaleway-1.29.0a1747948949.dist-info/RECORD +0 -487
  490. {pulumiverse_scaleway-1.29.0a1747948949.dist-info → pulumiverse_scaleway-1.30.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -65,17 +66,17 @@ class GetVpcResult:
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="createdAt")
68
- def created_at(self) -> str:
69
+ def created_at(self) -> builtins.str:
69
70
  return pulumi.get(self, "created_at")
70
71
 
71
72
  @property
72
73
  @pulumi.getter(name="enableRouting")
73
- def enable_routing(self) -> bool:
74
+ def enable_routing(self) -> builtins.bool:
74
75
  return pulumi.get(self, "enable_routing")
75
76
 
76
77
  @property
77
78
  @pulumi.getter
78
- def id(self) -> str:
79
+ def id(self) -> builtins.str:
79
80
  """
80
81
  The provider-assigned unique ID for this managed resource.
81
82
  """
@@ -83,42 +84,42 @@ class GetVpcResult:
83
84
 
84
85
  @property
85
86
  @pulumi.getter(name="isDefault")
86
- def is_default(self) -> Optional[bool]:
87
+ def is_default(self) -> Optional[builtins.bool]:
87
88
  return pulumi.get(self, "is_default")
88
89
 
89
90
  @property
90
91
  @pulumi.getter
91
- def name(self) -> Optional[str]:
92
+ def name(self) -> Optional[builtins.str]:
92
93
  return pulumi.get(self, "name")
93
94
 
94
95
  @property
95
96
  @pulumi.getter(name="organizationId")
96
- def organization_id(self) -> str:
97
+ def organization_id(self) -> builtins.str:
97
98
  return pulumi.get(self, "organization_id")
98
99
 
99
100
  @property
100
101
  @pulumi.getter(name="projectId")
101
- def project_id(self) -> Optional[str]:
102
+ def project_id(self) -> Optional[builtins.str]:
102
103
  return pulumi.get(self, "project_id")
103
104
 
104
105
  @property
105
106
  @pulumi.getter
106
- def region(self) -> Optional[str]:
107
+ def region(self) -> Optional[builtins.str]:
107
108
  return pulumi.get(self, "region")
108
109
 
109
110
  @property
110
111
  @pulumi.getter
111
- def tags(self) -> Sequence[str]:
112
+ def tags(self) -> Sequence[builtins.str]:
112
113
  return pulumi.get(self, "tags")
113
114
 
114
115
  @property
115
116
  @pulumi.getter(name="updatedAt")
116
- def updated_at(self) -> str:
117
+ def updated_at(self) -> builtins.str:
117
118
  return pulumi.get(self, "updated_at")
118
119
 
119
120
  @property
120
121
  @pulumi.getter(name="vpcId")
121
- def vpc_id(self) -> Optional[str]:
122
+ def vpc_id(self) -> Optional[builtins.str]:
122
123
  return pulumi.get(self, "vpc_id")
123
124
 
124
125
 
@@ -141,12 +142,12 @@ class AwaitableGetVpcResult(GetVpcResult):
141
142
  vpc_id=self.vpc_id)
142
143
 
143
144
 
144
- def get_vpc(is_default: Optional[bool] = None,
145
- name: Optional[str] = None,
146
- organization_id: Optional[str] = None,
147
- project_id: Optional[str] = None,
148
- region: Optional[str] = None,
149
- vpc_id: Optional[str] = None,
145
+ def get_vpc(is_default: Optional[builtins.bool] = None,
146
+ name: Optional[builtins.str] = None,
147
+ organization_id: Optional[builtins.str] = None,
148
+ project_id: Optional[builtins.str] = None,
149
+ region: Optional[builtins.str] = None,
150
+ vpc_id: Optional[builtins.str] = None,
150
151
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcResult:
151
152
  """
152
153
  Gets information about a Scaleway Virtual Private Cloud.
@@ -166,11 +167,11 @@ def get_vpc(is_default: Optional[bool] = None,
166
167
  ```
167
168
 
168
169
 
169
- :param bool is_default: Whether the targeted VPC is the default VPC.
170
- :param str name: Name of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
171
- :param str organization_id: The ID of the Organization the VPC is associated with.
172
- :param str project_id: `project_id`) The ID of the Project the VPC is associated with.
173
- :param str vpc_id: ID of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
170
+ :param builtins.bool is_default: Whether the targeted VPC is the default VPC.
171
+ :param builtins.str name: Name of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
172
+ :param builtins.str organization_id: The ID of the Organization the VPC is associated with.
173
+ :param builtins.str project_id: `project_id`) The ID of the Project the VPC is associated with.
174
+ :param builtins.str vpc_id: ID of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
174
175
  """
175
176
  pulumi.log.warn("""get_vpc is deprecated: scaleway.index/getvpc.getVpc has been deprecated in favor of scaleway.network/getvpc.getVpc""")
176
177
  __args__ = dict()
@@ -195,12 +196,12 @@ def get_vpc(is_default: Optional[bool] = None,
195
196
  tags=pulumi.get(__ret__, 'tags'),
196
197
  updated_at=pulumi.get(__ret__, 'updated_at'),
197
198
  vpc_id=pulumi.get(__ret__, 'vpc_id'))
198
- def get_vpc_output(is_default: Optional[pulumi.Input[Optional[bool]]] = None,
199
- name: Optional[pulumi.Input[Optional[str]]] = None,
200
- organization_id: Optional[pulumi.Input[Optional[str]]] = None,
201
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
202
- region: Optional[pulumi.Input[Optional[str]]] = None,
203
- vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
199
+ def get_vpc_output(is_default: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
200
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
201
+ organization_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
202
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
203
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
204
+ vpc_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
204
205
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcResult]:
205
206
  """
206
207
  Gets information about a Scaleway Virtual Private Cloud.
@@ -220,11 +221,11 @@ def get_vpc_output(is_default: Optional[pulumi.Input[Optional[bool]]] = None,
220
221
  ```
221
222
 
222
223
 
223
- :param bool is_default: Whether the targeted VPC is the default VPC.
224
- :param str name: Name of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
225
- :param str organization_id: The ID of the Organization the VPC is associated with.
226
- :param str project_id: `project_id`) The ID of the Project the VPC is associated with.
227
- :param str vpc_id: ID of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
224
+ :param builtins.bool is_default: Whether the targeted VPC is the default VPC.
225
+ :param builtins.str name: Name of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
226
+ :param builtins.str organization_id: The ID of the Organization the VPC is associated with.
227
+ :param builtins.str project_id: `project_id`) The ID of the Project the VPC is associated with.
228
+ :param builtins.str vpc_id: ID of the VPC. A maximum of one of `name` and `vpc_id` should be specified.
228
229
  """
229
230
  pulumi.log.warn("""get_vpc is deprecated: scaleway.index/getvpc.getVpc has been deprecated in favor of scaleway.network/getvpc.getVpc""")
230
231
  __args__ = dict()
@@ -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
@@ -81,42 +82,42 @@ class GetVpcGatewayNetworkResult:
81
82
 
82
83
  @property
83
84
  @pulumi.getter(name="cleanupDhcp")
84
- def cleanup_dhcp(self) -> bool:
85
+ def cleanup_dhcp(self) -> builtins.bool:
85
86
  return pulumi.get(self, "cleanup_dhcp")
86
87
 
87
88
  @property
88
89
  @pulumi.getter(name="createdAt")
89
- def created_at(self) -> str:
90
+ def created_at(self) -> builtins.str:
90
91
  return pulumi.get(self, "created_at")
91
92
 
92
93
  @property
93
94
  @pulumi.getter(name="dhcpId")
94
- def dhcp_id(self) -> Optional[str]:
95
+ def dhcp_id(self) -> Optional[builtins.str]:
95
96
  return pulumi.get(self, "dhcp_id")
96
97
 
97
98
  @property
98
99
  @pulumi.getter(name="enableDhcp")
99
- def enable_dhcp(self) -> bool:
100
+ def enable_dhcp(self) -> builtins.bool:
100
101
  return pulumi.get(self, "enable_dhcp")
101
102
 
102
103
  @property
103
104
  @pulumi.getter(name="enableMasquerade")
104
- def enable_masquerade(self) -> Optional[bool]:
105
+ def enable_masquerade(self) -> Optional[builtins.bool]:
105
106
  return pulumi.get(self, "enable_masquerade")
106
107
 
107
108
  @property
108
109
  @pulumi.getter(name="gatewayId")
109
- def gateway_id(self) -> Optional[str]:
110
+ def gateway_id(self) -> Optional[builtins.str]:
110
111
  return pulumi.get(self, "gateway_id")
111
112
 
112
113
  @property
113
114
  @pulumi.getter(name="gatewayNetworkId")
114
- def gateway_network_id(self) -> Optional[str]:
115
+ def gateway_network_id(self) -> Optional[builtins.str]:
115
116
  return pulumi.get(self, "gateway_network_id")
116
117
 
117
118
  @property
118
119
  @pulumi.getter
119
- def id(self) -> str:
120
+ def id(self) -> builtins.str:
120
121
  """
121
122
  The provider-assigned unique ID for this managed resource.
122
123
  """
@@ -129,7 +130,7 @@ class GetVpcGatewayNetworkResult:
129
130
 
130
131
  @property
131
132
  @pulumi.getter(name="macAddress")
132
- def mac_address(self) -> str:
133
+ def mac_address(self) -> builtins.str:
133
134
  return pulumi.get(self, "mac_address")
134
135
 
135
136
  @property
@@ -139,27 +140,27 @@ class GetVpcGatewayNetworkResult:
139
140
 
140
141
  @property
141
142
  @pulumi.getter(name="privateNetworkId")
142
- def private_network_id(self) -> Optional[str]:
143
+ def private_network_id(self) -> Optional[builtins.str]:
143
144
  return pulumi.get(self, "private_network_id")
144
145
 
145
146
  @property
146
147
  @pulumi.getter(name="staticAddress")
147
- def static_address(self) -> str:
148
+ def static_address(self) -> builtins.str:
148
149
  return pulumi.get(self, "static_address")
149
150
 
150
151
  @property
151
152
  @pulumi.getter
152
- def status(self) -> str:
153
+ def status(self) -> builtins.str:
153
154
  return pulumi.get(self, "status")
154
155
 
155
156
  @property
156
157
  @pulumi.getter(name="updatedAt")
157
- def updated_at(self) -> str:
158
+ def updated_at(self) -> builtins.str:
158
159
  return pulumi.get(self, "updated_at")
159
160
 
160
161
  @property
161
162
  @pulumi.getter
162
- def zone(self) -> str:
163
+ def zone(self) -> builtins.str:
163
164
  return pulumi.get(self, "zone")
164
165
 
165
166
 
@@ -187,11 +188,11 @@ class AwaitableGetVpcGatewayNetworkResult(GetVpcGatewayNetworkResult):
187
188
  zone=self.zone)
188
189
 
189
190
 
190
- def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
191
- enable_masquerade: Optional[bool] = None,
192
- gateway_id: Optional[str] = None,
193
- gateway_network_id: Optional[str] = None,
194
- private_network_id: Optional[str] = None,
191
+ def get_vpc_gateway_network(dhcp_id: Optional[builtins.str] = None,
192
+ enable_masquerade: Optional[builtins.bool] = None,
193
+ gateway_id: Optional[builtins.str] = None,
194
+ gateway_network_id: Optional[builtins.str] = None,
195
+ private_network_id: Optional[builtins.str] = None,
195
196
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcGatewayNetworkResult:
196
197
  """
197
198
  Gets information about a GatewayNetwork (a connection between a Public Gateway and a Private Network).
@@ -215,7 +216,7 @@ def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
215
216
  ```
216
217
 
217
218
 
218
- :param str gateway_network_id: ID of the GatewayNetwork.
219
+ :param builtins.str gateway_network_id: ID of the GatewayNetwork.
219
220
  """
220
221
  pulumi.log.warn("""get_vpc_gateway_network is deprecated: scaleway.index/getvpcgatewaynetwork.getVpcGatewayNetwork has been deprecated in favor of scaleway.network/getgatewaynetwork.getGatewayNetwork""")
221
222
  __args__ = dict()
@@ -244,11 +245,11 @@ def get_vpc_gateway_network(dhcp_id: Optional[str] = None,
244
245
  status=pulumi.get(__ret__, 'status'),
245
246
  updated_at=pulumi.get(__ret__, 'updated_at'),
246
247
  zone=pulumi.get(__ret__, 'zone'))
247
- def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[str]]] = None,
248
- enable_masquerade: Optional[pulumi.Input[Optional[bool]]] = None,
249
- gateway_id: Optional[pulumi.Input[Optional[str]]] = None,
250
- gateway_network_id: Optional[pulumi.Input[Optional[str]]] = None,
251
- private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
248
+ def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
249
+ enable_masquerade: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
250
+ gateway_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
251
+ gateway_network_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
252
+ private_network_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
252
253
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcGatewayNetworkResult]:
253
254
  """
254
255
  Gets information about a GatewayNetwork (a connection between a Public Gateway and a Private Network).
@@ -272,7 +273,7 @@ def get_vpc_gateway_network_output(dhcp_id: Optional[pulumi.Input[Optional[str]]
272
273
  ```
273
274
 
274
275
 
275
- :param str gateway_network_id: ID of the GatewayNetwork.
276
+ :param builtins.str gateway_network_id: ID of the GatewayNetwork.
276
277
  """
277
278
  pulumi.log.warn("""get_vpc_gateway_network is deprecated: scaleway.index/getvpcgatewaynetwork.getVpcGatewayNetwork has been deprecated in favor of scaleway.network/getgatewaynetwork.getGatewayNetwork""")
278
279
  __args__ = dict()
@@ -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
@@ -75,12 +76,12 @@ class GetVpcPrivateNetworkResult:
75
76
 
76
77
  @property
77
78
  @pulumi.getter(name="createdAt")
78
- def created_at(self) -> str:
79
+ def created_at(self) -> builtins.str:
79
80
  return pulumi.get(self, "created_at")
80
81
 
81
82
  @property
82
83
  @pulumi.getter
83
- def id(self) -> str:
84
+ def id(self) -> builtins.str:
84
85
  """
85
86
  The provider-assigned unique ID for this managed resource.
86
87
  """
@@ -104,52 +105,52 @@ class GetVpcPrivateNetworkResult:
104
105
 
105
106
  @property
106
107
  @pulumi.getter(name="isRegional")
107
- def is_regional(self) -> bool:
108
+ def is_regional(self) -> builtins.bool:
108
109
  return pulumi.get(self, "is_regional")
109
110
 
110
111
  @property
111
112
  @pulumi.getter
112
- def name(self) -> Optional[str]:
113
+ def name(self) -> Optional[builtins.str]:
113
114
  return pulumi.get(self, "name")
114
115
 
115
116
  @property
116
117
  @pulumi.getter(name="organizationId")
117
- def organization_id(self) -> str:
118
+ def organization_id(self) -> builtins.str:
118
119
  return pulumi.get(self, "organization_id")
119
120
 
120
121
  @property
121
122
  @pulumi.getter(name="privateNetworkId")
122
- def private_network_id(self) -> Optional[str]:
123
+ def private_network_id(self) -> Optional[builtins.str]:
123
124
  return pulumi.get(self, "private_network_id")
124
125
 
125
126
  @property
126
127
  @pulumi.getter(name="projectId")
127
- def project_id(self) -> Optional[str]:
128
+ def project_id(self) -> Optional[builtins.str]:
128
129
  return pulumi.get(self, "project_id")
129
130
 
130
131
  @property
131
132
  @pulumi.getter
132
- def region(self) -> Optional[str]:
133
+ def region(self) -> Optional[builtins.str]:
133
134
  return pulumi.get(self, "region")
134
135
 
135
136
  @property
136
137
  @pulumi.getter
137
- def tags(self) -> Sequence[str]:
138
+ def tags(self) -> Sequence[builtins.str]:
138
139
  return pulumi.get(self, "tags")
139
140
 
140
141
  @property
141
142
  @pulumi.getter(name="updatedAt")
142
- def updated_at(self) -> str:
143
+ def updated_at(self) -> builtins.str:
143
144
  return pulumi.get(self, "updated_at")
144
145
 
145
146
  @property
146
147
  @pulumi.getter(name="vpcId")
147
- def vpc_id(self) -> Optional[str]:
148
+ def vpc_id(self) -> Optional[builtins.str]:
148
149
  return pulumi.get(self, "vpc_id")
149
150
 
150
151
  @property
151
152
  @pulumi.getter
152
- def zone(self) -> str:
153
+ def zone(self) -> builtins.str:
153
154
  return pulumi.get(self, "zone")
154
155
 
155
156
 
@@ -175,11 +176,11 @@ class AwaitableGetVpcPrivateNetworkResult(GetVpcPrivateNetworkResult):
175
176
  zone=self.zone)
176
177
 
177
178
 
178
- def get_vpc_private_network(name: Optional[str] = None,
179
- private_network_id: Optional[str] = None,
180
- project_id: Optional[str] = None,
181
- region: Optional[str] = None,
182
- vpc_id: Optional[str] = None,
179
+ def get_vpc_private_network(name: Optional[builtins.str] = None,
180
+ private_network_id: Optional[builtins.str] = None,
181
+ project_id: Optional[builtins.str] = None,
182
+ region: Optional[builtins.str] = None,
183
+ vpc_id: Optional[builtins.str] = None,
183
184
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPrivateNetworkResult:
184
185
  """
185
186
  Gets information about a Private Network.
@@ -200,10 +201,10 @@ def get_vpc_private_network(name: Optional[str] = None,
200
201
  ```
201
202
 
202
203
 
203
- :param str name: Name of the Private Network. Cannot be used with `private_network_id`.
204
- :param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
205
- :param str project_id: The ID of the Project the Private Network is associated with.
206
- :param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
204
+ :param builtins.str name: Name of the Private Network. Cannot be used with `private_network_id`.
205
+ :param builtins.str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
206
+ :param builtins.str project_id: The ID of the Project the Private Network is associated with.
207
+ :param builtins.str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
207
208
  """
208
209
  pulumi.log.warn("""get_vpc_private_network is deprecated: scaleway.index/getvpcprivatenetwork.getVpcPrivateNetwork has been deprecated in favor of scaleway.network/getprivatenetwork.getPrivateNetwork""")
209
210
  __args__ = dict()
@@ -230,11 +231,11 @@ def get_vpc_private_network(name: Optional[str] = None,
230
231
  updated_at=pulumi.get(__ret__, 'updated_at'),
231
232
  vpc_id=pulumi.get(__ret__, 'vpc_id'),
232
233
  zone=pulumi.get(__ret__, 'zone'))
233
- def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] = None,
234
- private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
235
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
236
- region: Optional[pulumi.Input[Optional[str]]] = None,
237
- vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
234
+ def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
235
+ private_network_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
236
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
237
+ region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
238
+ vpc_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
238
239
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcPrivateNetworkResult]:
239
240
  """
240
241
  Gets information about a Private Network.
@@ -255,10 +256,10 @@ def get_vpc_private_network_output(name: Optional[pulumi.Input[Optional[str]]] =
255
256
  ```
256
257
 
257
258
 
258
- :param str name: Name of the Private Network. Cannot be used with `private_network_id`.
259
- :param str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
260
- :param str project_id: The ID of the Project the Private Network is associated with.
261
- :param str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
259
+ :param builtins.str name: Name of the Private Network. Cannot be used with `private_network_id`.
260
+ :param builtins.str private_network_id: ID of the Private Network. Cannot be used with `name` or `vpc_id`.
261
+ :param builtins.str project_id: The ID of the Project the Private Network is associated with.
262
+ :param builtins.str vpc_id: ID of the VPC the Private Network is in. Cannot be used with `private_network_id`.
262
263
  """
263
264
  pulumi.log.warn("""get_vpc_private_network is deprecated: scaleway.index/getvpcprivatenetwork.getVpcPrivateNetwork has been deprecated in favor of scaleway.network/getprivatenetwork.getPrivateNetwork""")
264
265
  __args__ = dict()
@@ -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
@@ -92,37 +93,37 @@ class GetVpcPublicGatewayResult:
92
93
 
93
94
  @property
94
95
  @pulumi.getter(name="allowedIpRanges")
95
- def allowed_ip_ranges(self) -> Sequence[str]:
96
+ def allowed_ip_ranges(self) -> Sequence[builtins.str]:
96
97
  return pulumi.get(self, "allowed_ip_ranges")
97
98
 
98
99
  @property
99
100
  @pulumi.getter
100
- def bandwidth(self) -> int:
101
+ def bandwidth(self) -> builtins.int:
101
102
  return pulumi.get(self, "bandwidth")
102
103
 
103
104
  @property
104
105
  @pulumi.getter(name="bastionEnabled")
105
- def bastion_enabled(self) -> bool:
106
+ def bastion_enabled(self) -> builtins.bool:
106
107
  return pulumi.get(self, "bastion_enabled")
107
108
 
108
109
  @property
109
110
  @pulumi.getter(name="bastionPort")
110
- def bastion_port(self) -> int:
111
+ def bastion_port(self) -> builtins.int:
111
112
  return pulumi.get(self, "bastion_port")
112
113
 
113
114
  @property
114
115
  @pulumi.getter(name="createdAt")
115
- def created_at(self) -> str:
116
+ def created_at(self) -> builtins.str:
116
117
  return pulumi.get(self, "created_at")
117
118
 
118
119
  @property
119
120
  @pulumi.getter(name="enableSmtp")
120
- def enable_smtp(self) -> bool:
121
+ def enable_smtp(self) -> builtins.bool:
121
122
  return pulumi.get(self, "enable_smtp")
122
123
 
123
124
  @property
124
125
  @pulumi.getter
125
- def id(self) -> str:
126
+ def id(self) -> builtins.str:
126
127
  """
127
128
  The provider-assigned unique ID for this managed resource.
128
129
  """
@@ -130,67 +131,67 @@ class GetVpcPublicGatewayResult:
130
131
 
131
132
  @property
132
133
  @pulumi.getter(name="ipId")
133
- def ip_id(self) -> str:
134
+ def ip_id(self) -> builtins.str:
134
135
  return pulumi.get(self, "ip_id")
135
136
 
136
137
  @property
137
138
  @pulumi.getter(name="moveToIpam")
138
- def move_to_ipam(self) -> bool:
139
+ def move_to_ipam(self) -> builtins.bool:
139
140
  return pulumi.get(self, "move_to_ipam")
140
141
 
141
142
  @property
142
143
  @pulumi.getter
143
- def name(self) -> Optional[str]:
144
+ def name(self) -> Optional[builtins.str]:
144
145
  return pulumi.get(self, "name")
145
146
 
146
147
  @property
147
148
  @pulumi.getter(name="organizationId")
148
- def organization_id(self) -> str:
149
+ def organization_id(self) -> builtins.str:
149
150
  return pulumi.get(self, "organization_id")
150
151
 
151
152
  @property
152
153
  @pulumi.getter(name="projectId")
153
- def project_id(self) -> Optional[str]:
154
+ def project_id(self) -> Optional[builtins.str]:
154
155
  return pulumi.get(self, "project_id")
155
156
 
156
157
  @property
157
158
  @pulumi.getter(name="publicGatewayId")
158
- def public_gateway_id(self) -> Optional[str]:
159
+ def public_gateway_id(self) -> Optional[builtins.str]:
159
160
  return pulumi.get(self, "public_gateway_id")
160
161
 
161
162
  @property
162
163
  @pulumi.getter(name="refreshSshKeys")
163
- def refresh_ssh_keys(self) -> str:
164
+ def refresh_ssh_keys(self) -> builtins.str:
164
165
  return pulumi.get(self, "refresh_ssh_keys")
165
166
 
166
167
  @property
167
168
  @pulumi.getter
168
- def status(self) -> str:
169
+ def status(self) -> builtins.str:
169
170
  return pulumi.get(self, "status")
170
171
 
171
172
  @property
172
173
  @pulumi.getter
173
- def tags(self) -> Sequence[str]:
174
+ def tags(self) -> Sequence[builtins.str]:
174
175
  return pulumi.get(self, "tags")
175
176
 
176
177
  @property
177
178
  @pulumi.getter
178
- def type(self) -> str:
179
+ def type(self) -> builtins.str:
179
180
  return pulumi.get(self, "type")
180
181
 
181
182
  @property
182
183
  @pulumi.getter(name="updatedAt")
183
- def updated_at(self) -> str:
184
+ def updated_at(self) -> builtins.str:
184
185
  return pulumi.get(self, "updated_at")
185
186
 
186
187
  @property
187
188
  @pulumi.getter(name="upstreamDnsServers")
188
- def upstream_dns_servers(self) -> Sequence[str]:
189
+ def upstream_dns_servers(self) -> Sequence[builtins.str]:
189
190
  return pulumi.get(self, "upstream_dns_servers")
190
191
 
191
192
  @property
192
193
  @pulumi.getter
193
- def zone(self) -> Optional[str]:
194
+ def zone(self) -> Optional[builtins.str]:
194
195
  return pulumi.get(self, "zone")
195
196
 
196
197
 
@@ -222,10 +223,10 @@ class AwaitableGetVpcPublicGatewayResult(GetVpcPublicGatewayResult):
222
223
  zone=self.zone)
223
224
 
224
225
 
225
- def get_vpc_public_gateway(name: Optional[str] = None,
226
- project_id: Optional[str] = None,
227
- public_gateway_id: Optional[str] = None,
228
- zone: Optional[str] = None,
226
+ def get_vpc_public_gateway(name: Optional[builtins.str] = None,
227
+ project_id: Optional[builtins.str] = None,
228
+ public_gateway_id: Optional[builtins.str] = None,
229
+ zone: Optional[builtins.str] = None,
229
230
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcPublicGatewayResult:
230
231
  """
231
232
  Gets information about a Public Gateway.
@@ -247,9 +248,9 @@ def get_vpc_public_gateway(name: Optional[str] = None,
247
248
  ```
248
249
 
249
250
 
250
- :param str name: Exact name of the Public Gateway.
251
- :param str project_id: The ID of the Project the Public Gateway is associated with.
252
- :param str zone: `zone`) The Public Gateway's zone.
251
+ :param builtins.str name: Exact name of the Public Gateway.
252
+ :param builtins.str project_id: The ID of the Project the Public Gateway is associated with.
253
+ :param builtins.str zone: `zone`) The Public Gateway's zone.
253
254
  """
254
255
  pulumi.log.warn("""get_vpc_public_gateway is deprecated: scaleway.index/getvpcpublicgateway.getVpcPublicGateway has been deprecated in favor of scaleway.network/getpublicgateway.getPublicGateway""")
255
256
  __args__ = dict()
@@ -281,10 +282,10 @@ def get_vpc_public_gateway(name: Optional[str] = None,
281
282
  updated_at=pulumi.get(__ret__, 'updated_at'),
282
283
  upstream_dns_servers=pulumi.get(__ret__, 'upstream_dns_servers'),
283
284
  zone=pulumi.get(__ret__, 'zone'))
284
- def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[str]]] = None,
285
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
286
- public_gateway_id: Optional[pulumi.Input[Optional[str]]] = None,
287
- zone: Optional[pulumi.Input[Optional[str]]] = None,
285
+ def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
286
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
287
+ public_gateway_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
288
+ zone: Optional[pulumi.Input[Optional[builtins.str]]] = None,
288
289
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcPublicGatewayResult]:
289
290
  """
290
291
  Gets information about a Public Gateway.
@@ -306,9 +307,9 @@ def get_vpc_public_gateway_output(name: Optional[pulumi.Input[Optional[str]]] =
306
307
  ```
307
308
 
308
309
 
309
- :param str name: Exact name of the Public Gateway.
310
- :param str project_id: The ID of the Project the Public Gateway is associated with.
311
- :param str zone: `zone`) The Public Gateway's zone.
310
+ :param builtins.str name: Exact name of the Public Gateway.
311
+ :param builtins.str project_id: The ID of the Project the Public Gateway is associated with.
312
+ :param builtins.str zone: `zone`) The Public Gateway's zone.
312
313
  """
313
314
  pulumi.log.warn("""get_vpc_public_gateway is deprecated: scaleway.index/getvpcpublicgateway.getVpcPublicGateway has been deprecated in favor of scaleway.network/getpublicgateway.getPublicGateway""")
314
315
  __args__ = dict()