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