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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (515) hide show
  1. pulumiverse_scaleway/__init__.py +109 -2
  2. pulumiverse_scaleway/_inputs.py +3936 -2603
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +4 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +12 -12
  6. pulumiverse_scaleway/account/get_project.py +28 -28
  7. pulumiverse_scaleway/account/get_projects.py +241 -0
  8. pulumiverse_scaleway/account/get_ssh_key.py +34 -34
  9. pulumiverse_scaleway/account/outputs.py +95 -0
  10. pulumiverse_scaleway/account/project.py +72 -71
  11. pulumiverse_scaleway/account/ssh_key.py +107 -106
  12. pulumiverse_scaleway/account_project.py +72 -71
  13. pulumiverse_scaleway/account_ssh_key.py +107 -106
  14. pulumiverse_scaleway/apple_silicon_server.py +334 -201
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
  17. pulumiverse_scaleway/applesilicon/outputs.py +65 -33
  18. pulumiverse_scaleway/applesilicon/server.py +334 -201
  19. pulumiverse_scaleway/audittrail/__init__.py +10 -0
  20. pulumiverse_scaleway/audittrail/get_event.py +410 -0
  21. pulumiverse_scaleway/audittrail/outputs.py +234 -0
  22. pulumiverse_scaleway/autoscaling/__init__.py +13 -0
  23. pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
  24. pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
  25. pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
  26. pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
  27. pulumiverse_scaleway/autoscaling/outputs.py +438 -0
  28. pulumiverse_scaleway/baremetal_server.py +622 -524
  29. pulumiverse_scaleway/billing/__init__.py +2 -1
  30. pulumiverse_scaleway/billing/get_consumptions.py +19 -15
  31. pulumiverse_scaleway/billing/get_invoices.py +25 -25
  32. pulumiverse_scaleway/billing/outputs.py +96 -96
  33. pulumiverse_scaleway/block/__init__.py +4 -1
  34. pulumiverse_scaleway/block/_inputs.py +125 -0
  35. pulumiverse_scaleway/block/get_snapshot.py +60 -37
  36. pulumiverse_scaleway/block/get_volume.py +38 -38
  37. pulumiverse_scaleway/block/outputs.py +139 -0
  38. pulumiverse_scaleway/block/snapshot.py +272 -98
  39. pulumiverse_scaleway/block/volume.py +145 -144
  40. pulumiverse_scaleway/block_snapshot.py +272 -98
  41. pulumiverse_scaleway/block_volume.py +145 -144
  42. pulumiverse_scaleway/cockpit.py +71 -49
  43. pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
  44. pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
  45. pulumiverse_scaleway/cockpit_source.py +142 -141
  46. pulumiverse_scaleway/cockpit_token.py +84 -83
  47. pulumiverse_scaleway/config/__init__.py +2 -1
  48. pulumiverse_scaleway/config/__init__.pyi +2 -2
  49. pulumiverse_scaleway/config/vars.py +11 -11
  50. pulumiverse_scaleway/container.py +653 -424
  51. pulumiverse_scaleway/container_cron.py +97 -96
  52. pulumiverse_scaleway/container_domain.py +63 -62
  53. pulumiverse_scaleway/container_namespace.py +251 -172
  54. pulumiverse_scaleway/container_token.py +97 -96
  55. pulumiverse_scaleway/container_trigger.py +77 -76
  56. pulumiverse_scaleway/containers/__init__.py +2 -1
  57. pulumiverse_scaleway/containers/_inputs.py +87 -87
  58. pulumiverse_scaleway/containers/container.py +653 -424
  59. pulumiverse_scaleway/containers/cron.py +97 -96
  60. pulumiverse_scaleway/containers/domain.py +63 -62
  61. pulumiverse_scaleway/containers/get_container.py +117 -73
  62. pulumiverse_scaleway/containers/get_namespace.py +56 -45
  63. pulumiverse_scaleway/containers/namespace.py +251 -172
  64. pulumiverse_scaleway/containers/outputs.py +84 -84
  65. pulumiverse_scaleway/containers/token.py +97 -96
  66. pulumiverse_scaleway/containers/trigger.py +77 -76
  67. pulumiverse_scaleway/database.py +81 -80
  68. pulumiverse_scaleway/database_acl.py +148 -39
  69. pulumiverse_scaleway/database_backup.py +124 -123
  70. pulumiverse_scaleway/database_instance.py +531 -436
  71. pulumiverse_scaleway/database_privilege.py +88 -87
  72. pulumiverse_scaleway/database_read_replica.py +60 -59
  73. pulumiverse_scaleway/database_user.py +171 -98
  74. pulumiverse_scaleway/databases/__init__.py +2 -1
  75. pulumiverse_scaleway/databases/_inputs.py +364 -216
  76. pulumiverse_scaleway/databases/acl.py +148 -39
  77. pulumiverse_scaleway/databases/database.py +81 -80
  78. pulumiverse_scaleway/databases/database_backup.py +124 -123
  79. pulumiverse_scaleway/databases/get_acl.py +17 -17
  80. pulumiverse_scaleway/databases/get_database.py +26 -26
  81. pulumiverse_scaleway/databases/get_database_backup.py +46 -46
  82. pulumiverse_scaleway/databases/get_instance.py +95 -73
  83. pulumiverse_scaleway/databases/get_privilege.py +30 -30
  84. pulumiverse_scaleway/databases/instance.py +531 -436
  85. pulumiverse_scaleway/databases/outputs.py +419 -232
  86. pulumiverse_scaleway/databases/privilege.py +88 -87
  87. pulumiverse_scaleway/databases/read_replica.py +60 -59
  88. pulumiverse_scaleway/databases/serverless_database.py +97 -96
  89. pulumiverse_scaleway/databases/snapshot.py +127 -126
  90. pulumiverse_scaleway/databases/user.py +171 -98
  91. pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
  92. pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
  93. pulumiverse_scaleway/datawarehouse/database.py +338 -0
  94. pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
  95. pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
  96. pulumiverse_scaleway/datawarehouse/user.py +451 -0
  97. pulumiverse_scaleway/domain/__init__.py +2 -1
  98. pulumiverse_scaleway/domain/_inputs.py +661 -661
  99. pulumiverse_scaleway/domain/get_record.py +53 -64
  100. pulumiverse_scaleway/domain/get_zone.py +36 -30
  101. pulumiverse_scaleway/domain/outputs.py +501 -501
  102. pulumiverse_scaleway/domain/record.py +156 -202
  103. pulumiverse_scaleway/domain/registration.py +123 -122
  104. pulumiverse_scaleway/domain/zone.py +108 -107
  105. pulumiverse_scaleway/domain_record.py +156 -202
  106. pulumiverse_scaleway/domain_zone.py +108 -107
  107. pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
  108. pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
  109. pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
  110. pulumiverse_scaleway/edge_services_head_stage.py +37 -36
  111. pulumiverse_scaleway/edge_services_pipeline.py +125 -82
  112. pulumiverse_scaleway/edge_services_plan.py +37 -36
  113. pulumiverse_scaleway/edge_services_route_stage.py +75 -74
  114. pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
  115. pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
  116. pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
  117. pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
  118. pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
  119. pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
  120. pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
  121. pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
  122. pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
  123. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
  124. pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
  125. pulumiverse_scaleway/elasticmetal/ip.py +170 -169
  126. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
  127. pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
  128. pulumiverse_scaleway/elasticmetal/server.py +622 -524
  129. pulumiverse_scaleway/file_filesystem.py +555 -0
  130. pulumiverse_scaleway/flexible_ip.py +170 -169
  131. pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
  132. pulumiverse_scaleway/function.py +457 -348
  133. pulumiverse_scaleway/function_cron.py +97 -96
  134. pulumiverse_scaleway/function_domain.py +63 -62
  135. pulumiverse_scaleway/function_namespace.py +234 -155
  136. pulumiverse_scaleway/function_token.py +97 -96
  137. pulumiverse_scaleway/function_trigger.py +77 -76
  138. pulumiverse_scaleway/functions/__init__.py +2 -1
  139. pulumiverse_scaleway/functions/_inputs.py +50 -50
  140. pulumiverse_scaleway/functions/cron.py +97 -96
  141. pulumiverse_scaleway/functions/domain.py +63 -62
  142. pulumiverse_scaleway/functions/function.py +457 -348
  143. pulumiverse_scaleway/functions/get_function.py +93 -71
  144. pulumiverse_scaleway/functions/get_namespace.py +54 -43
  145. pulumiverse_scaleway/functions/namespace.py +234 -155
  146. pulumiverse_scaleway/functions/outputs.py +34 -34
  147. pulumiverse_scaleway/functions/token.py +97 -96
  148. pulumiverse_scaleway/functions/trigger.py +77 -76
  149. pulumiverse_scaleway/get_account_project.py +28 -28
  150. pulumiverse_scaleway/get_account_ssh_key.py +34 -34
  151. pulumiverse_scaleway/get_availability_zones.py +12 -12
  152. pulumiverse_scaleway/get_baremetal_offer.py +43 -41
  153. pulumiverse_scaleway/get_baremetal_option.py +24 -24
  154. pulumiverse_scaleway/get_baremetal_os.py +28 -28
  155. pulumiverse_scaleway/get_baremetal_server.py +101 -68
  156. pulumiverse_scaleway/get_billing_consumptions.py +19 -15
  157. pulumiverse_scaleway/get_billing_invoices.py +25 -25
  158. pulumiverse_scaleway/get_block_snapshot.py +60 -37
  159. pulumiverse_scaleway/get_block_volume.py +38 -38
  160. pulumiverse_scaleway/get_cockpit.py +16 -16
  161. pulumiverse_scaleway/get_cockpit_source.py +88 -45
  162. pulumiverse_scaleway/get_config.py +24 -24
  163. pulumiverse_scaleway/get_container.py +117 -73
  164. pulumiverse_scaleway/get_container_namespace.py +56 -45
  165. pulumiverse_scaleway/get_database.py +26 -26
  166. pulumiverse_scaleway/get_database_acl.py +17 -17
  167. pulumiverse_scaleway/get_database_backup.py +46 -46
  168. pulumiverse_scaleway/get_database_instance.py +95 -73
  169. pulumiverse_scaleway/get_database_privilege.py +30 -30
  170. pulumiverse_scaleway/get_domain_record.py +53 -64
  171. pulumiverse_scaleway/get_domain_zone.py +36 -30
  172. pulumiverse_scaleway/get_flexible_ip.py +70 -54
  173. pulumiverse_scaleway/get_flexible_ips.py +31 -31
  174. pulumiverse_scaleway/get_function.py +93 -71
  175. pulumiverse_scaleway/get_function_namespace.py +54 -43
  176. pulumiverse_scaleway/get_iam_api_key.py +28 -28
  177. pulumiverse_scaleway/get_iam_application.py +32 -32
  178. pulumiverse_scaleway/get_iam_group.py +36 -36
  179. pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
  180. pulumiverse_scaleway/get_iam_user.py +30 -30
  181. pulumiverse_scaleway/get_instance_image.py +58 -58
  182. pulumiverse_scaleway/get_instance_ip.py +42 -30
  183. pulumiverse_scaleway/get_instance_placement_group.py +38 -38
  184. pulumiverse_scaleway/get_instance_private_nic.py +53 -41
  185. pulumiverse_scaleway/get_instance_security_group.py +46 -46
  186. pulumiverse_scaleway/get_instance_server.py +108 -145
  187. pulumiverse_scaleway/get_instance_servers.py +31 -31
  188. pulumiverse_scaleway/get_instance_snapshot.py +41 -41
  189. pulumiverse_scaleway/get_instance_volume.py +42 -42
  190. pulumiverse_scaleway/get_iot_device.py +46 -46
  191. pulumiverse_scaleway/get_iot_hub.py +60 -60
  192. pulumiverse_scaleway/get_ipam_ip.py +65 -65
  193. pulumiverse_scaleway/get_ipam_ips.py +56 -56
  194. pulumiverse_scaleway/get_k8s_version.py +34 -23
  195. pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
  196. pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
  197. pulumiverse_scaleway/get_lb_acls.py +29 -29
  198. pulumiverse_scaleway/get_lb_backend.py +75 -75
  199. pulumiverse_scaleway/get_lb_backends.py +29 -29
  200. pulumiverse_scaleway/get_lb_frontend.py +76 -43
  201. pulumiverse_scaleway/get_lb_frontends.py +29 -29
  202. pulumiverse_scaleway/get_lb_ips.py +37 -37
  203. pulumiverse_scaleway/get_lb_route.py +36 -25
  204. pulumiverse_scaleway/get_lb_routes.py +23 -23
  205. pulumiverse_scaleway/get_lbs.py +31 -31
  206. pulumiverse_scaleway/get_loadbalancer.py +78 -56
  207. pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
  208. pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
  209. pulumiverse_scaleway/get_marketplace_image.py +28 -28
  210. pulumiverse_scaleway/get_mnq_sns.py +18 -18
  211. pulumiverse_scaleway/get_mnq_sqs.py +18 -18
  212. pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
  213. pulumiverse_scaleway/get_object_bucket.py +35 -35
  214. pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
  215. pulumiverse_scaleway/get_redis_cluster.py +65 -54
  216. pulumiverse_scaleway/get_registry_image.py +48 -48
  217. pulumiverse_scaleway/get_registry_image_tag.py +44 -44
  218. pulumiverse_scaleway/get_registry_namespace.py +36 -36
  219. pulumiverse_scaleway/get_secret.py +58 -58
  220. pulumiverse_scaleway/get_secret_version.py +46 -46
  221. pulumiverse_scaleway/get_tem_domain.py +103 -70
  222. pulumiverse_scaleway/get_vpc.py +58 -47
  223. pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
  224. pulumiverse_scaleway/get_vpc_private_network.py +58 -47
  225. pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
  226. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
  227. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
  228. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
  229. pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
  230. pulumiverse_scaleway/get_vpc_routes.py +47 -47
  231. pulumiverse_scaleway/get_vpcs.py +31 -31
  232. pulumiverse_scaleway/get_web_host_offer.py +34 -34
  233. pulumiverse_scaleway/get_webhosting.py +58 -58
  234. pulumiverse_scaleway/hosting/__init__.py +2 -1
  235. pulumiverse_scaleway/hosting/_inputs.py +117 -75
  236. pulumiverse_scaleway/hosting/get_hosting.py +58 -58
  237. pulumiverse_scaleway/hosting/get_offer.py +34 -34
  238. pulumiverse_scaleway/hosting/hosting.py +213 -212
  239. pulumiverse_scaleway/hosting/outputs.py +276 -192
  240. pulumiverse_scaleway/iam/__init__.py +3 -1
  241. pulumiverse_scaleway/iam/_inputs.py +26 -26
  242. pulumiverse_scaleway/iam/api_key.py +142 -141
  243. pulumiverse_scaleway/iam/application.py +98 -97
  244. pulumiverse_scaleway/iam/get_api_key.py +28 -28
  245. pulumiverse_scaleway/iam/get_application.py +32 -32
  246. pulumiverse_scaleway/iam/get_group.py +36 -36
  247. pulumiverse_scaleway/iam/get_policy.py +293 -0
  248. pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
  249. pulumiverse_scaleway/iam/get_user.py +30 -30
  250. pulumiverse_scaleway/iam/group.py +140 -139
  251. pulumiverse_scaleway/iam/group_membership.py +54 -53
  252. pulumiverse_scaleway/iam/outputs.py +70 -18
  253. pulumiverse_scaleway/iam/policy.py +169 -168
  254. pulumiverse_scaleway/iam/ssh_key.py +107 -106
  255. pulumiverse_scaleway/iam/user.py +598 -134
  256. pulumiverse_scaleway/iam_api_key.py +142 -141
  257. pulumiverse_scaleway/iam_application.py +98 -97
  258. pulumiverse_scaleway/iam_group.py +140 -139
  259. pulumiverse_scaleway/iam_group_membership.py +54 -53
  260. pulumiverse_scaleway/iam_policy.py +169 -168
  261. pulumiverse_scaleway/iam_ssh_key.py +107 -106
  262. pulumiverse_scaleway/iam_user.py +598 -134
  263. pulumiverse_scaleway/inference/__init__.py +4 -1
  264. pulumiverse_scaleway/inference/_inputs.py +232 -50
  265. pulumiverse_scaleway/inference/deployment.py +319 -220
  266. pulumiverse_scaleway/inference/get_model.py +299 -0
  267. pulumiverse_scaleway/inference/model.py +684 -0
  268. pulumiverse_scaleway/inference/outputs.py +250 -34
  269. pulumiverse_scaleway/inference_deployment.py +319 -220
  270. pulumiverse_scaleway/instance/__init__.py +3 -1
  271. pulumiverse_scaleway/instance/_inputs.py +650 -437
  272. pulumiverse_scaleway/instance/get_image.py +58 -58
  273. pulumiverse_scaleway/instance/get_ip.py +42 -30
  274. pulumiverse_scaleway/instance/get_placement_group.py +38 -38
  275. pulumiverse_scaleway/instance/get_private_nic.py +53 -41
  276. pulumiverse_scaleway/instance/get_security_group.py +46 -46
  277. pulumiverse_scaleway/instance/get_server.py +108 -145
  278. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  279. pulumiverse_scaleway/instance/get_servers.py +31 -31
  280. pulumiverse_scaleway/instance/get_snapshot.py +41 -41
  281. pulumiverse_scaleway/instance/get_volume.py +42 -42
  282. pulumiverse_scaleway/instance/image.py +260 -205
  283. pulumiverse_scaleway/instance/ip.py +116 -115
  284. pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
  285. pulumiverse_scaleway/instance/outputs.py +981 -548
  286. pulumiverse_scaleway/instance/placement_group.py +123 -122
  287. pulumiverse_scaleway/instance/private_nic.py +163 -113
  288. pulumiverse_scaleway/instance/security_group.py +188 -187
  289. pulumiverse_scaleway/instance/security_group_rules.py +42 -41
  290. pulumiverse_scaleway/instance/server.py +590 -562
  291. pulumiverse_scaleway/instance/snapshot.py +150 -157
  292. pulumiverse_scaleway/instance/user_data.py +75 -74
  293. pulumiverse_scaleway/instance/volume.py +174 -159
  294. pulumiverse_scaleway/instance_image.py +260 -205
  295. pulumiverse_scaleway/instance_ip.py +116 -115
  296. pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
  297. pulumiverse_scaleway/instance_placement_group.py +123 -122
  298. pulumiverse_scaleway/instance_private_nic.py +163 -113
  299. pulumiverse_scaleway/instance_security_group.py +188 -187
  300. pulumiverse_scaleway/instance_security_group_rules.py +42 -41
  301. pulumiverse_scaleway/instance_server.py +590 -562
  302. pulumiverse_scaleway/instance_snapshot.py +150 -157
  303. pulumiverse_scaleway/instance_user_data.py +75 -74
  304. pulumiverse_scaleway/instance_volume.py +174 -159
  305. pulumiverse_scaleway/iot/__init__.py +2 -1
  306. pulumiverse_scaleway/iot/_inputs.py +119 -119
  307. pulumiverse_scaleway/iot/device.py +156 -193
  308. pulumiverse_scaleway/iot/get_device.py +46 -46
  309. pulumiverse_scaleway/iot/get_hub.py +60 -60
  310. pulumiverse_scaleway/iot/hub.py +259 -258
  311. pulumiverse_scaleway/iot/network.py +115 -114
  312. pulumiverse_scaleway/iot/outputs.py +107 -107
  313. pulumiverse_scaleway/iot/route.py +109 -108
  314. pulumiverse_scaleway/iot_device.py +156 -193
  315. pulumiverse_scaleway/iot_hub.py +259 -258
  316. pulumiverse_scaleway/iot_network.py +115 -114
  317. pulumiverse_scaleway/iot_route.py +109 -108
  318. pulumiverse_scaleway/ipam/__init__.py +2 -1
  319. pulumiverse_scaleway/ipam/_inputs.py +108 -108
  320. pulumiverse_scaleway/ipam/get_ip.py +65 -65
  321. pulumiverse_scaleway/ipam/get_ips.py +56 -56
  322. pulumiverse_scaleway/ipam/ip.py +160 -131
  323. pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
  324. pulumiverse_scaleway/ipam/outputs.py +122 -122
  325. pulumiverse_scaleway/ipam_ip.py +160 -131
  326. pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
  327. pulumiverse_scaleway/job/__init__.py +2 -1
  328. pulumiverse_scaleway/job/_inputs.py +127 -14
  329. pulumiverse_scaleway/job/definition.py +283 -175
  330. pulumiverse_scaleway/job/outputs.py +98 -10
  331. pulumiverse_scaleway/job_definition.py +283 -175
  332. pulumiverse_scaleway/key_manager_key.py +939 -0
  333. pulumiverse_scaleway/kubernetes/__init__.py +3 -1
  334. pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
  335. pulumiverse_scaleway/kubernetes/acl.py +447 -0
  336. pulumiverse_scaleway/kubernetes/cluster.py +594 -307
  337. pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
  338. pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
  339. pulumiverse_scaleway/kubernetes/get_version.py +34 -23
  340. pulumiverse_scaleway/kubernetes/outputs.py +444 -250
  341. pulumiverse_scaleway/kubernetes/pool.py +427 -365
  342. pulumiverse_scaleway/kubernetes_cluster.py +594 -307
  343. pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
  344. pulumiverse_scaleway/loadbalancer.py +329 -246
  345. pulumiverse_scaleway/loadbalancer_acl.py +102 -101
  346. pulumiverse_scaleway/loadbalancer_backend.py +534 -487
  347. pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
  348. pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
  349. pulumiverse_scaleway/loadbalancer_ip.py +124 -123
  350. pulumiverse_scaleway/loadbalancer_route.py +244 -119
  351. pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
  352. pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
  353. pulumiverse_scaleway/loadbalancers/acl.py +102 -101
  354. pulumiverse_scaleway/loadbalancers/backend.py +534 -487
  355. pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
  356. pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
  357. pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
  358. pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
  359. pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
  360. pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
  361. pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
  362. pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
  363. pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
  364. pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
  365. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
  366. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
  367. pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
  368. pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
  369. pulumiverse_scaleway/loadbalancers/ip.py +124 -123
  370. pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
  371. pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
  372. pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
  373. pulumiverse_scaleway/loadbalancers/route.py +244 -119
  374. pulumiverse_scaleway/mnq/__init__.py +2 -1
  375. pulumiverse_scaleway/mnq/_inputs.py +90 -38
  376. pulumiverse_scaleway/mnq/get_sns.py +18 -18
  377. pulumiverse_scaleway/mnq/get_sqs.py +18 -18
  378. pulumiverse_scaleway/mnq/nats_account.py +63 -62
  379. pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
  380. pulumiverse_scaleway/mnq/outputs.py +73 -26
  381. pulumiverse_scaleway/mnq/sns.py +46 -45
  382. pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
  383. pulumiverse_scaleway/mnq/sns_topic.py +174 -173
  384. pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
  385. pulumiverse_scaleway/mnq/sqs.py +46 -45
  386. pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
  387. pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
  388. pulumiverse_scaleway/mnq_nats_account.py +63 -62
  389. pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
  390. pulumiverse_scaleway/mnq_sns.py +46 -45
  391. pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
  392. pulumiverse_scaleway/mnq_sns_topic.py +174 -173
  393. pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
  394. pulumiverse_scaleway/mnq_sqs.py +46 -45
  395. pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
  396. pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
  397. pulumiverse_scaleway/mongo_db_instance.py +569 -268
  398. pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
  399. pulumiverse_scaleway/mongodb/__init__.py +3 -1
  400. pulumiverse_scaleway/mongodb/_inputs.py +178 -51
  401. pulumiverse_scaleway/mongodb/get_instance.py +110 -55
  402. pulumiverse_scaleway/mongodb/instance.py +569 -268
  403. pulumiverse_scaleway/mongodb/outputs.py +192 -68
  404. pulumiverse_scaleway/mongodb/snapshot.py +127 -126
  405. pulumiverse_scaleway/mongodb/user.py +507 -0
  406. pulumiverse_scaleway/network/__init__.py +2 -1
  407. pulumiverse_scaleway/network/_inputs.py +209 -155
  408. pulumiverse_scaleway/network/acl.py +100 -101
  409. pulumiverse_scaleway/network/gateway_network.py +228 -180
  410. pulumiverse_scaleway/network/get_gateway_network.py +55 -44
  411. pulumiverse_scaleway/network/get_private_network.py +58 -47
  412. pulumiverse_scaleway/network/get_public_gateway.py +56 -56
  413. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
  414. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
  415. pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
  416. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
  417. pulumiverse_scaleway/network/get_routes.py +47 -47
  418. pulumiverse_scaleway/network/get_vpc.py +58 -47
  419. pulumiverse_scaleway/network/get_vpcs.py +31 -31
  420. pulumiverse_scaleway/network/outputs.py +338 -270
  421. pulumiverse_scaleway/network/private_network.py +203 -155
  422. pulumiverse_scaleway/network/public_gateway.py +261 -260
  423. pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
  424. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
  425. pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
  426. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
  427. pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
  428. pulumiverse_scaleway/network/route.py +230 -141
  429. pulumiverse_scaleway/network/vpc.py +172 -124
  430. pulumiverse_scaleway/object/__init__.py +3 -1
  431. pulumiverse_scaleway/object/_inputs.py +202 -166
  432. pulumiverse_scaleway/object/bucket.py +162 -148
  433. pulumiverse_scaleway/object/bucket_acl.py +97 -94
  434. pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
  435. pulumiverse_scaleway/object/bucket_policy.py +71 -134
  436. pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
  437. pulumiverse_scaleway/object/get.py +290 -0
  438. pulumiverse_scaleway/object/get_bucket.py +35 -35
  439. pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
  440. pulumiverse_scaleway/object/item.py +301 -223
  441. pulumiverse_scaleway/object/outputs.py +210 -166
  442. pulumiverse_scaleway/object_bucket.py +162 -148
  443. pulumiverse_scaleway/object_bucket_acl.py +97 -94
  444. pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
  445. pulumiverse_scaleway/object_bucket_policy.py +71 -134
  446. pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
  447. pulumiverse_scaleway/object_item.py +301 -223
  448. pulumiverse_scaleway/observability/__init__.py +4 -2
  449. pulumiverse_scaleway/observability/_inputs.py +106 -106
  450. pulumiverse_scaleway/observability/alert_manager.py +66 -65
  451. pulumiverse_scaleway/observability/cockpit.py +71 -49
  452. pulumiverse_scaleway/observability/get_grafana.py +103 -0
  453. pulumiverse_scaleway/observability/get_instance.py +16 -16
  454. pulumiverse_scaleway/observability/get_source.py +88 -45
  455. pulumiverse_scaleway/observability/get_sources.py +375 -0
  456. pulumiverse_scaleway/observability/grafana_user.py +72 -113
  457. pulumiverse_scaleway/observability/outputs.py +241 -101
  458. pulumiverse_scaleway/observability/source.py +142 -141
  459. pulumiverse_scaleway/observability/token.py +84 -83
  460. pulumiverse_scaleway/outputs.py +5235 -3665
  461. pulumiverse_scaleway/provider.py +107 -82
  462. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  463. pulumiverse_scaleway/rdb_snapshot.py +127 -126
  464. pulumiverse_scaleway/redis/__init__.py +2 -1
  465. pulumiverse_scaleway/redis/_inputs.py +163 -69
  466. pulumiverse_scaleway/redis/cluster.py +273 -225
  467. pulumiverse_scaleway/redis/get_cluster.py +65 -54
  468. pulumiverse_scaleway/redis/outputs.py +199 -87
  469. pulumiverse_scaleway/redis_cluster.py +273 -225
  470. pulumiverse_scaleway/registry/__init__.py +2 -1
  471. pulumiverse_scaleway/registry/get_image.py +48 -48
  472. pulumiverse_scaleway/registry/get_image_tag.py +44 -44
  473. pulumiverse_scaleway/registry/get_namespace.py +36 -36
  474. pulumiverse_scaleway/registry/namespace.py +106 -105
  475. pulumiverse_scaleway/registry_namespace.py +106 -105
  476. pulumiverse_scaleway/sdb_database.py +97 -96
  477. pulumiverse_scaleway/secret.py +188 -179
  478. pulumiverse_scaleway/secret_version.py +107 -106
  479. pulumiverse_scaleway/secrets/__init__.py +2 -1
  480. pulumiverse_scaleway/secrets/_inputs.py +63 -63
  481. pulumiverse_scaleway/secrets/get_secret.py +58 -58
  482. pulumiverse_scaleway/secrets/get_version.py +46 -46
  483. pulumiverse_scaleway/secrets/outputs.py +84 -84
  484. pulumiverse_scaleway/secrets/secret.py +188 -179
  485. pulumiverse_scaleway/secrets/version.py +107 -106
  486. pulumiverse_scaleway/tem/__init__.py +2 -1
  487. pulumiverse_scaleway/tem/_inputs.py +33 -33
  488. pulumiverse_scaleway/tem/blocked_list.py +105 -104
  489. pulumiverse_scaleway/tem/domain.py +384 -257
  490. pulumiverse_scaleway/tem/domain_validation.py +63 -62
  491. pulumiverse_scaleway/tem/get_domain.py +103 -70
  492. pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
  493. pulumiverse_scaleway/tem/outputs.py +44 -44
  494. pulumiverse_scaleway/tem/webhook.py +132 -131
  495. pulumiverse_scaleway/tem_domain.py +384 -257
  496. pulumiverse_scaleway/tem_domain_validation.py +63 -62
  497. pulumiverse_scaleway/tem_webhook.py +132 -131
  498. pulumiverse_scaleway/vpc.py +172 -124
  499. pulumiverse_scaleway/vpc_gateway_network.py +228 -180
  500. pulumiverse_scaleway/vpc_private_network.py +203 -155
  501. pulumiverse_scaleway/vpc_public_gateway.py +261 -260
  502. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
  503. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
  504. pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
  505. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
  506. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
  507. pulumiverse_scaleway/vpc_route.py +230 -141
  508. pulumiverse_scaleway/webhosting.py +213 -212
  509. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
  510. pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
  511. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
  512. pulumiverse_scaleway/get_cockpit_plan.py +0 -129
  513. pulumiverse_scaleway/observability/get_plan.py +0 -125
  514. pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
  515. {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -19,40 +19,40 @@ __all__ = ['PublicGatewayDhcpArgs', 'PublicGatewayDhcp']
19
19
  @pulumi.input_type
20
20
  class PublicGatewayDhcpArgs:
21
21
  def __init__(__self__, *,
22
- subnet: pulumi.Input[str],
23
- address: Optional[pulumi.Input[str]] = None,
24
- dns_local_name: Optional[pulumi.Input[str]] = None,
25
- dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
26
- dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
27
- enable_dynamic: Optional[pulumi.Input[bool]] = None,
28
- pool_high: Optional[pulumi.Input[str]] = None,
29
- pool_low: Optional[pulumi.Input[str]] = None,
30
- project_id: Optional[pulumi.Input[str]] = None,
31
- push_default_route: Optional[pulumi.Input[bool]] = None,
32
- push_dns_server: Optional[pulumi.Input[bool]] = None,
33
- rebind_timer: Optional[pulumi.Input[int]] = None,
34
- renew_timer: Optional[pulumi.Input[int]] = None,
35
- valid_lifetime: Optional[pulumi.Input[int]] = None,
36
- zone: Optional[pulumi.Input[str]] = None):
22
+ subnet: pulumi.Input[_builtins.str],
23
+ address: Optional[pulumi.Input[_builtins.str]] = None,
24
+ dns_local_name: Optional[pulumi.Input[_builtins.str]] = None,
25
+ dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
26
+ dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
27
+ enable_dynamic: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ pool_high: Optional[pulumi.Input[_builtins.str]] = None,
29
+ pool_low: Optional[pulumi.Input[_builtins.str]] = None,
30
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
31
+ push_default_route: Optional[pulumi.Input[_builtins.bool]] = None,
32
+ push_dns_server: Optional[pulumi.Input[_builtins.bool]] = None,
33
+ rebind_timer: Optional[pulumi.Input[_builtins.int]] = None,
34
+ renew_timer: Optional[pulumi.Input[_builtins.int]] = None,
35
+ valid_lifetime: Optional[pulumi.Input[_builtins.int]] = None,
36
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
37
37
  """
38
38
  The set of arguments for constructing a PublicGatewayDhcp resource.
39
- :param pulumi.Input[str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
40
- :param pulumi.Input[str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
41
- :param pulumi.Input[str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
42
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_searches: Additional DNS search paths
43
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
44
- :param pulumi.Input[bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
45
- :param pulumi.Input[str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
46
- :param pulumi.Input[str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
47
- :param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
48
- :param pulumi.Input[bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
39
+ :param pulumi.Input[_builtins.str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
40
+ :param pulumi.Input[_builtins.str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
41
+ :param pulumi.Input[_builtins.str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
42
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_searches: Additional DNS search paths
43
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
44
+ :param pulumi.Input[_builtins.bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
45
+ :param pulumi.Input[_builtins.str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
46
+ :param pulumi.Input[_builtins.str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
47
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
48
+ :param pulumi.Input[_builtins.bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
49
49
 
50
50
  > **Warning**: If you need to setup a default route, it's recommended to use the `network.GatewayNetwork` resource instead.
51
- :param pulumi.Input[bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
52
- :param pulumi.Input[int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
53
- :param pulumi.Input[int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
54
- :param pulumi.Input[int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
55
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
51
+ :param pulumi.Input[_builtins.bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
52
+ :param pulumi.Input[_builtins.int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
53
+ :param pulumi.Input[_builtins.int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
54
+ :param pulumi.Input[_builtins.int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
55
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
56
56
  """
57
57
  pulumi.set(__self__, "subnet", subnet)
58
58
  if address is not None:
@@ -84,117 +84,117 @@ class PublicGatewayDhcpArgs:
84
84
  if zone is not None:
85
85
  pulumi.set(__self__, "zone", zone)
86
86
 
87
- @property
87
+ @_builtins.property
88
88
  @pulumi.getter
89
- def subnet(self) -> pulumi.Input[str]:
89
+ def subnet(self) -> pulumi.Input[_builtins.str]:
90
90
  """
91
91
  The subnet to associate with the Public Gateway DHCP configuration.
92
92
  """
93
93
  return pulumi.get(self, "subnet")
94
94
 
95
95
  @subnet.setter
96
- def subnet(self, value: pulumi.Input[str]):
96
+ def subnet(self, value: pulumi.Input[_builtins.str]):
97
97
  pulumi.set(self, "subnet", value)
98
98
 
99
- @property
99
+ @_builtins.property
100
100
  @pulumi.getter
101
- def address(self) -> Optional[pulumi.Input[str]]:
101
+ def address(self) -> Optional[pulumi.Input[_builtins.str]]:
102
102
  """
103
103
  The IP address of the DHCP server. This will be the gateway's address in the Private Network.
104
104
  """
105
105
  return pulumi.get(self, "address")
106
106
 
107
107
  @address.setter
108
- def address(self, value: Optional[pulumi.Input[str]]):
108
+ def address(self, value: Optional[pulumi.Input[_builtins.str]]):
109
109
  pulumi.set(self, "address", value)
110
110
 
111
- @property
111
+ @_builtins.property
112
112
  @pulumi.getter(name="dnsLocalName")
113
- def dns_local_name(self) -> Optional[pulumi.Input[str]]:
113
+ def dns_local_name(self) -> Optional[pulumi.Input[_builtins.str]]:
114
114
  """
115
115
  TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
116
116
  """
117
117
  return pulumi.get(self, "dns_local_name")
118
118
 
119
119
  @dns_local_name.setter
120
- def dns_local_name(self, value: Optional[pulumi.Input[str]]):
120
+ def dns_local_name(self, value: Optional[pulumi.Input[_builtins.str]]):
121
121
  pulumi.set(self, "dns_local_name", value)
122
122
 
123
- @property
123
+ @_builtins.property
124
124
  @pulumi.getter(name="dnsSearches")
125
- def dns_searches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
125
+ def dns_searches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
126
126
  """
127
127
  Additional DNS search paths
128
128
  """
129
129
  return pulumi.get(self, "dns_searches")
130
130
 
131
131
  @dns_searches.setter
132
- def dns_searches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
132
+ def dns_searches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
133
133
  pulumi.set(self, "dns_searches", value)
134
134
 
135
- @property
135
+ @_builtins.property
136
136
  @pulumi.getter(name="dnsServersOverrides")
137
- def dns_servers_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
137
+ def dns_servers_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
138
138
  """
139
139
  Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
140
140
  """
141
141
  return pulumi.get(self, "dns_servers_overrides")
142
142
 
143
143
  @dns_servers_overrides.setter
144
- def dns_servers_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
144
+ def dns_servers_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
145
145
  pulumi.set(self, "dns_servers_overrides", value)
146
146
 
147
- @property
147
+ @_builtins.property
148
148
  @pulumi.getter(name="enableDynamic")
149
- def enable_dynamic(self) -> Optional[pulumi.Input[bool]]:
149
+ def enable_dynamic(self) -> Optional[pulumi.Input[_builtins.bool]]:
150
150
  """
151
151
  Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
152
152
  """
153
153
  return pulumi.get(self, "enable_dynamic")
154
154
 
155
155
  @enable_dynamic.setter
156
- def enable_dynamic(self, value: Optional[pulumi.Input[bool]]):
156
+ def enable_dynamic(self, value: Optional[pulumi.Input[_builtins.bool]]):
157
157
  pulumi.set(self, "enable_dynamic", value)
158
158
 
159
- @property
159
+ @_builtins.property
160
160
  @pulumi.getter(name="poolHigh")
161
- def pool_high(self) -> Optional[pulumi.Input[str]]:
161
+ def pool_high(self) -> Optional[pulumi.Input[_builtins.str]]:
162
162
  """
163
163
  High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
164
164
  """
165
165
  return pulumi.get(self, "pool_high")
166
166
 
167
167
  @pool_high.setter
168
- def pool_high(self, value: Optional[pulumi.Input[str]]):
168
+ def pool_high(self, value: Optional[pulumi.Input[_builtins.str]]):
169
169
  pulumi.set(self, "pool_high", value)
170
170
 
171
- @property
171
+ @_builtins.property
172
172
  @pulumi.getter(name="poolLow")
173
- def pool_low(self) -> Optional[pulumi.Input[str]]:
173
+ def pool_low(self) -> Optional[pulumi.Input[_builtins.str]]:
174
174
  """
175
175
  Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
176
176
  """
177
177
  return pulumi.get(self, "pool_low")
178
178
 
179
179
  @pool_low.setter
180
- def pool_low(self, value: Optional[pulumi.Input[str]]):
180
+ def pool_low(self, value: Optional[pulumi.Input[_builtins.str]]):
181
181
  pulumi.set(self, "pool_low", value)
182
182
 
183
- @property
183
+ @_builtins.property
184
184
  @pulumi.getter(name="projectId")
185
- def project_id(self) -> Optional[pulumi.Input[str]]:
185
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
186
186
  """
187
187
  `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
188
188
  """
189
189
  return pulumi.get(self, "project_id")
190
190
 
191
191
  @project_id.setter
192
- def project_id(self, value: Optional[pulumi.Input[str]]):
192
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
193
193
  pulumi.set(self, "project_id", value)
194
194
 
195
- @property
195
+ @_builtins.property
196
196
  @pulumi.getter(name="pushDefaultRoute")
197
- def push_default_route(self) -> Optional[pulumi.Input[bool]]:
197
+ def push_default_route(self) -> Optional[pulumi.Input[_builtins.bool]]:
198
198
  """
199
199
  Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
200
200
 
@@ -203,113 +203,113 @@ class PublicGatewayDhcpArgs:
203
203
  return pulumi.get(self, "push_default_route")
204
204
 
205
205
  @push_default_route.setter
206
- def push_default_route(self, value: Optional[pulumi.Input[bool]]):
206
+ def push_default_route(self, value: Optional[pulumi.Input[_builtins.bool]]):
207
207
  pulumi.set(self, "push_default_route", value)
208
208
 
209
- @property
209
+ @_builtins.property
210
210
  @pulumi.getter(name="pushDnsServer")
211
- def push_dns_server(self) -> Optional[pulumi.Input[bool]]:
211
+ def push_dns_server(self) -> Optional[pulumi.Input[_builtins.bool]]:
212
212
  """
213
213
  Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
214
214
  """
215
215
  return pulumi.get(self, "push_dns_server")
216
216
 
217
217
  @push_dns_server.setter
218
- def push_dns_server(self, value: Optional[pulumi.Input[bool]]):
218
+ def push_dns_server(self, value: Optional[pulumi.Input[_builtins.bool]]):
219
219
  pulumi.set(self, "push_dns_server", value)
220
220
 
221
- @property
221
+ @_builtins.property
222
222
  @pulumi.getter(name="rebindTimer")
223
- def rebind_timer(self) -> Optional[pulumi.Input[int]]:
223
+ def rebind_timer(self) -> Optional[pulumi.Input[_builtins.int]]:
224
224
  """
225
225
  After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
226
226
  """
227
227
  return pulumi.get(self, "rebind_timer")
228
228
 
229
229
  @rebind_timer.setter
230
- def rebind_timer(self, value: Optional[pulumi.Input[int]]):
230
+ def rebind_timer(self, value: Optional[pulumi.Input[_builtins.int]]):
231
231
  pulumi.set(self, "rebind_timer", value)
232
232
 
233
- @property
233
+ @_builtins.property
234
234
  @pulumi.getter(name="renewTimer")
235
- def renew_timer(self) -> Optional[pulumi.Input[int]]:
235
+ def renew_timer(self) -> Optional[pulumi.Input[_builtins.int]]:
236
236
  """
237
237
  After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
238
238
  """
239
239
  return pulumi.get(self, "renew_timer")
240
240
 
241
241
  @renew_timer.setter
242
- def renew_timer(self, value: Optional[pulumi.Input[int]]):
242
+ def renew_timer(self, value: Optional[pulumi.Input[_builtins.int]]):
243
243
  pulumi.set(self, "renew_timer", value)
244
244
 
245
- @property
245
+ @_builtins.property
246
246
  @pulumi.getter(name="validLifetime")
247
- def valid_lifetime(self) -> Optional[pulumi.Input[int]]:
247
+ def valid_lifetime(self) -> Optional[pulumi.Input[_builtins.int]]:
248
248
  """
249
249
  How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
250
250
  """
251
251
  return pulumi.get(self, "valid_lifetime")
252
252
 
253
253
  @valid_lifetime.setter
254
- def valid_lifetime(self, value: Optional[pulumi.Input[int]]):
254
+ def valid_lifetime(self, value: Optional[pulumi.Input[_builtins.int]]):
255
255
  pulumi.set(self, "valid_lifetime", value)
256
256
 
257
- @property
257
+ @_builtins.property
258
258
  @pulumi.getter
259
- def zone(self) -> Optional[pulumi.Input[str]]:
259
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
260
260
  """
261
261
  `zone`) The zone in which the Public Gateway DHCP configuration should be created.
262
262
  """
263
263
  return pulumi.get(self, "zone")
264
264
 
265
265
  @zone.setter
266
- def zone(self, value: Optional[pulumi.Input[str]]):
266
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
267
267
  pulumi.set(self, "zone", value)
268
268
 
269
269
 
270
270
  @pulumi.input_type
271
271
  class _PublicGatewayDhcpState:
272
272
  def __init__(__self__, *,
273
- address: Optional[pulumi.Input[str]] = None,
274
- created_at: Optional[pulumi.Input[str]] = None,
275
- dns_local_name: Optional[pulumi.Input[str]] = None,
276
- dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
277
- dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
278
- enable_dynamic: Optional[pulumi.Input[bool]] = None,
279
- organization_id: Optional[pulumi.Input[str]] = None,
280
- pool_high: Optional[pulumi.Input[str]] = None,
281
- pool_low: Optional[pulumi.Input[str]] = None,
282
- project_id: Optional[pulumi.Input[str]] = None,
283
- push_default_route: Optional[pulumi.Input[bool]] = None,
284
- push_dns_server: Optional[pulumi.Input[bool]] = None,
285
- rebind_timer: Optional[pulumi.Input[int]] = None,
286
- renew_timer: Optional[pulumi.Input[int]] = None,
287
- subnet: Optional[pulumi.Input[str]] = None,
288
- updated_at: Optional[pulumi.Input[str]] = None,
289
- valid_lifetime: Optional[pulumi.Input[int]] = None,
290
- zone: Optional[pulumi.Input[str]] = None):
273
+ address: Optional[pulumi.Input[_builtins.str]] = None,
274
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
275
+ dns_local_name: Optional[pulumi.Input[_builtins.str]] = None,
276
+ dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
277
+ dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
278
+ enable_dynamic: Optional[pulumi.Input[_builtins.bool]] = None,
279
+ organization_id: Optional[pulumi.Input[_builtins.str]] = None,
280
+ pool_high: Optional[pulumi.Input[_builtins.str]] = None,
281
+ pool_low: Optional[pulumi.Input[_builtins.str]] = None,
282
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
283
+ push_default_route: Optional[pulumi.Input[_builtins.bool]] = None,
284
+ push_dns_server: Optional[pulumi.Input[_builtins.bool]] = None,
285
+ rebind_timer: Optional[pulumi.Input[_builtins.int]] = None,
286
+ renew_timer: Optional[pulumi.Input[_builtins.int]] = None,
287
+ subnet: Optional[pulumi.Input[_builtins.str]] = None,
288
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
289
+ valid_lifetime: Optional[pulumi.Input[_builtins.int]] = None,
290
+ zone: Optional[pulumi.Input[_builtins.str]] = None):
291
291
  """
292
292
  Input properties used for looking up and filtering PublicGatewayDhcp resources.
293
- :param pulumi.Input[str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
294
- :param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway DHCP configuration.
295
- :param pulumi.Input[str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
296
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_searches: Additional DNS search paths
297
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
298
- :param pulumi.Input[bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
299
- :param pulumi.Input[str] organization_id: The Organization ID the Public Gateway DHCP config is associated with.
300
- :param pulumi.Input[str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
301
- :param pulumi.Input[str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
302
- :param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
303
- :param pulumi.Input[bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
293
+ :param pulumi.Input[_builtins.str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
294
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the Public Gateway DHCP configuration.
295
+ :param pulumi.Input[_builtins.str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
296
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_searches: Additional DNS search paths
297
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
298
+ :param pulumi.Input[_builtins.bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
299
+ :param pulumi.Input[_builtins.str] organization_id: The Organization ID the Public Gateway DHCP config is associated with.
300
+ :param pulumi.Input[_builtins.str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
301
+ :param pulumi.Input[_builtins.str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
302
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
303
+ :param pulumi.Input[_builtins.bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
304
304
 
305
305
  > **Warning**: If you need to setup a default route, it's recommended to use the `network.GatewayNetwork` resource instead.
306
- :param pulumi.Input[bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
307
- :param pulumi.Input[int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
308
- :param pulumi.Input[int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
309
- :param pulumi.Input[str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
310
- :param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway DHCP configuration.
311
- :param pulumi.Input[int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
312
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
306
+ :param pulumi.Input[_builtins.bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
307
+ :param pulumi.Input[_builtins.int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
308
+ :param pulumi.Input[_builtins.int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
309
+ :param pulumi.Input[_builtins.str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
310
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the Public Gateway DHCP configuration.
311
+ :param pulumi.Input[_builtins.int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
312
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
313
313
  """
314
314
  if address is not None:
315
315
  pulumi.set(__self__, "address", address)
@@ -348,129 +348,129 @@ class _PublicGatewayDhcpState:
348
348
  if zone is not None:
349
349
  pulumi.set(__self__, "zone", zone)
350
350
 
351
- @property
351
+ @_builtins.property
352
352
  @pulumi.getter
353
- def address(self) -> Optional[pulumi.Input[str]]:
353
+ def address(self) -> Optional[pulumi.Input[_builtins.str]]:
354
354
  """
355
355
  The IP address of the DHCP server. This will be the gateway's address in the Private Network.
356
356
  """
357
357
  return pulumi.get(self, "address")
358
358
 
359
359
  @address.setter
360
- def address(self, value: Optional[pulumi.Input[str]]):
360
+ def address(self, value: Optional[pulumi.Input[_builtins.str]]):
361
361
  pulumi.set(self, "address", value)
362
362
 
363
- @property
363
+ @_builtins.property
364
364
  @pulumi.getter(name="createdAt")
365
- def created_at(self) -> Optional[pulumi.Input[str]]:
365
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
366
366
  """
367
367
  The date and time of the creation of the Public Gateway DHCP configuration.
368
368
  """
369
369
  return pulumi.get(self, "created_at")
370
370
 
371
371
  @created_at.setter
372
- def created_at(self, value: Optional[pulumi.Input[str]]):
372
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
373
373
  pulumi.set(self, "created_at", value)
374
374
 
375
- @property
375
+ @_builtins.property
376
376
  @pulumi.getter(name="dnsLocalName")
377
- def dns_local_name(self) -> Optional[pulumi.Input[str]]:
377
+ def dns_local_name(self) -> Optional[pulumi.Input[_builtins.str]]:
378
378
  """
379
379
  TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
380
380
  """
381
381
  return pulumi.get(self, "dns_local_name")
382
382
 
383
383
  @dns_local_name.setter
384
- def dns_local_name(self, value: Optional[pulumi.Input[str]]):
384
+ def dns_local_name(self, value: Optional[pulumi.Input[_builtins.str]]):
385
385
  pulumi.set(self, "dns_local_name", value)
386
386
 
387
- @property
387
+ @_builtins.property
388
388
  @pulumi.getter(name="dnsSearches")
389
- def dns_searches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
389
+ def dns_searches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
390
390
  """
391
391
  Additional DNS search paths
392
392
  """
393
393
  return pulumi.get(self, "dns_searches")
394
394
 
395
395
  @dns_searches.setter
396
- def dns_searches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
396
+ def dns_searches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
397
397
  pulumi.set(self, "dns_searches", value)
398
398
 
399
- @property
399
+ @_builtins.property
400
400
  @pulumi.getter(name="dnsServersOverrides")
401
- def dns_servers_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
401
+ def dns_servers_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
402
402
  """
403
403
  Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
404
404
  """
405
405
  return pulumi.get(self, "dns_servers_overrides")
406
406
 
407
407
  @dns_servers_overrides.setter
408
- def dns_servers_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
408
+ def dns_servers_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
409
409
  pulumi.set(self, "dns_servers_overrides", value)
410
410
 
411
- @property
411
+ @_builtins.property
412
412
  @pulumi.getter(name="enableDynamic")
413
- def enable_dynamic(self) -> Optional[pulumi.Input[bool]]:
413
+ def enable_dynamic(self) -> Optional[pulumi.Input[_builtins.bool]]:
414
414
  """
415
415
  Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
416
416
  """
417
417
  return pulumi.get(self, "enable_dynamic")
418
418
 
419
419
  @enable_dynamic.setter
420
- def enable_dynamic(self, value: Optional[pulumi.Input[bool]]):
420
+ def enable_dynamic(self, value: Optional[pulumi.Input[_builtins.bool]]):
421
421
  pulumi.set(self, "enable_dynamic", value)
422
422
 
423
- @property
423
+ @_builtins.property
424
424
  @pulumi.getter(name="organizationId")
425
- def organization_id(self) -> Optional[pulumi.Input[str]]:
425
+ def organization_id(self) -> Optional[pulumi.Input[_builtins.str]]:
426
426
  """
427
427
  The Organization ID the Public Gateway DHCP config is associated with.
428
428
  """
429
429
  return pulumi.get(self, "organization_id")
430
430
 
431
431
  @organization_id.setter
432
- def organization_id(self, value: Optional[pulumi.Input[str]]):
432
+ def organization_id(self, value: Optional[pulumi.Input[_builtins.str]]):
433
433
  pulumi.set(self, "organization_id", value)
434
434
 
435
- @property
435
+ @_builtins.property
436
436
  @pulumi.getter(name="poolHigh")
437
- def pool_high(self) -> Optional[pulumi.Input[str]]:
437
+ def pool_high(self) -> Optional[pulumi.Input[_builtins.str]]:
438
438
  """
439
439
  High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
440
440
  """
441
441
  return pulumi.get(self, "pool_high")
442
442
 
443
443
  @pool_high.setter
444
- def pool_high(self, value: Optional[pulumi.Input[str]]):
444
+ def pool_high(self, value: Optional[pulumi.Input[_builtins.str]]):
445
445
  pulumi.set(self, "pool_high", value)
446
446
 
447
- @property
447
+ @_builtins.property
448
448
  @pulumi.getter(name="poolLow")
449
- def pool_low(self) -> Optional[pulumi.Input[str]]:
449
+ def pool_low(self) -> Optional[pulumi.Input[_builtins.str]]:
450
450
  """
451
451
  Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
452
452
  """
453
453
  return pulumi.get(self, "pool_low")
454
454
 
455
455
  @pool_low.setter
456
- def pool_low(self, value: Optional[pulumi.Input[str]]):
456
+ def pool_low(self, value: Optional[pulumi.Input[_builtins.str]]):
457
457
  pulumi.set(self, "pool_low", value)
458
458
 
459
- @property
459
+ @_builtins.property
460
460
  @pulumi.getter(name="projectId")
461
- def project_id(self) -> Optional[pulumi.Input[str]]:
461
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
462
462
  """
463
463
  `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
464
464
  """
465
465
  return pulumi.get(self, "project_id")
466
466
 
467
467
  @project_id.setter
468
- def project_id(self, value: Optional[pulumi.Input[str]]):
468
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
469
469
  pulumi.set(self, "project_id", value)
470
470
 
471
- @property
471
+ @_builtins.property
472
472
  @pulumi.getter(name="pushDefaultRoute")
473
- def push_default_route(self) -> Optional[pulumi.Input[bool]]:
473
+ def push_default_route(self) -> Optional[pulumi.Input[_builtins.bool]]:
474
474
  """
475
475
  Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
476
476
 
@@ -479,114 +479,115 @@ class _PublicGatewayDhcpState:
479
479
  return pulumi.get(self, "push_default_route")
480
480
 
481
481
  @push_default_route.setter
482
- def push_default_route(self, value: Optional[pulumi.Input[bool]]):
482
+ def push_default_route(self, value: Optional[pulumi.Input[_builtins.bool]]):
483
483
  pulumi.set(self, "push_default_route", value)
484
484
 
485
- @property
485
+ @_builtins.property
486
486
  @pulumi.getter(name="pushDnsServer")
487
- def push_dns_server(self) -> Optional[pulumi.Input[bool]]:
487
+ def push_dns_server(self) -> Optional[pulumi.Input[_builtins.bool]]:
488
488
  """
489
489
  Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
490
490
  """
491
491
  return pulumi.get(self, "push_dns_server")
492
492
 
493
493
  @push_dns_server.setter
494
- def push_dns_server(self, value: Optional[pulumi.Input[bool]]):
494
+ def push_dns_server(self, value: Optional[pulumi.Input[_builtins.bool]]):
495
495
  pulumi.set(self, "push_dns_server", value)
496
496
 
497
- @property
497
+ @_builtins.property
498
498
  @pulumi.getter(name="rebindTimer")
499
- def rebind_timer(self) -> Optional[pulumi.Input[int]]:
499
+ def rebind_timer(self) -> Optional[pulumi.Input[_builtins.int]]:
500
500
  """
501
501
  After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
502
502
  """
503
503
  return pulumi.get(self, "rebind_timer")
504
504
 
505
505
  @rebind_timer.setter
506
- def rebind_timer(self, value: Optional[pulumi.Input[int]]):
506
+ def rebind_timer(self, value: Optional[pulumi.Input[_builtins.int]]):
507
507
  pulumi.set(self, "rebind_timer", value)
508
508
 
509
- @property
509
+ @_builtins.property
510
510
  @pulumi.getter(name="renewTimer")
511
- def renew_timer(self) -> Optional[pulumi.Input[int]]:
511
+ def renew_timer(self) -> Optional[pulumi.Input[_builtins.int]]:
512
512
  """
513
513
  After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
514
514
  """
515
515
  return pulumi.get(self, "renew_timer")
516
516
 
517
517
  @renew_timer.setter
518
- def renew_timer(self, value: Optional[pulumi.Input[int]]):
518
+ def renew_timer(self, value: Optional[pulumi.Input[_builtins.int]]):
519
519
  pulumi.set(self, "renew_timer", value)
520
520
 
521
- @property
521
+ @_builtins.property
522
522
  @pulumi.getter
523
- def subnet(self) -> Optional[pulumi.Input[str]]:
523
+ def subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
524
524
  """
525
525
  The subnet to associate with the Public Gateway DHCP configuration.
526
526
  """
527
527
  return pulumi.get(self, "subnet")
528
528
 
529
529
  @subnet.setter
530
- def subnet(self, value: Optional[pulumi.Input[str]]):
530
+ def subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
531
531
  pulumi.set(self, "subnet", value)
532
532
 
533
- @property
533
+ @_builtins.property
534
534
  @pulumi.getter(name="updatedAt")
535
- def updated_at(self) -> Optional[pulumi.Input[str]]:
535
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
536
536
  """
537
537
  The date and time of the last update of the Public Gateway DHCP configuration.
538
538
  """
539
539
  return pulumi.get(self, "updated_at")
540
540
 
541
541
  @updated_at.setter
542
- def updated_at(self, value: Optional[pulumi.Input[str]]):
542
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
543
543
  pulumi.set(self, "updated_at", value)
544
544
 
545
- @property
545
+ @_builtins.property
546
546
  @pulumi.getter(name="validLifetime")
547
- def valid_lifetime(self) -> Optional[pulumi.Input[int]]:
547
+ def valid_lifetime(self) -> Optional[pulumi.Input[_builtins.int]]:
548
548
  """
549
549
  How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
550
550
  """
551
551
  return pulumi.get(self, "valid_lifetime")
552
552
 
553
553
  @valid_lifetime.setter
554
- def valid_lifetime(self, value: Optional[pulumi.Input[int]]):
554
+ def valid_lifetime(self, value: Optional[pulumi.Input[_builtins.int]]):
555
555
  pulumi.set(self, "valid_lifetime", value)
556
556
 
557
- @property
557
+ @_builtins.property
558
558
  @pulumi.getter
559
- def zone(self) -> Optional[pulumi.Input[str]]:
559
+ def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
560
560
  """
561
561
  `zone`) The zone in which the Public Gateway DHCP configuration should be created.
562
562
  """
563
563
  return pulumi.get(self, "zone")
564
564
 
565
565
  @zone.setter
566
- def zone(self, value: Optional[pulumi.Input[str]]):
566
+ def zone(self, value: Optional[pulumi.Input[_builtins.str]]):
567
567
  pulumi.set(self, "zone", value)
568
568
 
569
569
 
570
+ @pulumi.type_token("scaleway:network/publicGatewayDhcp:PublicGatewayDhcp")
570
571
  class PublicGatewayDhcp(pulumi.CustomResource):
571
572
  @overload
572
573
  def __init__(__self__,
573
574
  resource_name: str,
574
575
  opts: Optional[pulumi.ResourceOptions] = None,
575
- address: Optional[pulumi.Input[str]] = None,
576
- dns_local_name: Optional[pulumi.Input[str]] = None,
577
- dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
578
- dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
579
- enable_dynamic: Optional[pulumi.Input[bool]] = None,
580
- pool_high: Optional[pulumi.Input[str]] = None,
581
- pool_low: Optional[pulumi.Input[str]] = None,
582
- project_id: Optional[pulumi.Input[str]] = None,
583
- push_default_route: Optional[pulumi.Input[bool]] = None,
584
- push_dns_server: Optional[pulumi.Input[bool]] = None,
585
- rebind_timer: Optional[pulumi.Input[int]] = None,
586
- renew_timer: Optional[pulumi.Input[int]] = None,
587
- subnet: Optional[pulumi.Input[str]] = None,
588
- valid_lifetime: Optional[pulumi.Input[int]] = None,
589
- zone: Optional[pulumi.Input[str]] = None,
576
+ address: Optional[pulumi.Input[_builtins.str]] = None,
577
+ dns_local_name: Optional[pulumi.Input[_builtins.str]] = None,
578
+ dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
579
+ dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
580
+ enable_dynamic: Optional[pulumi.Input[_builtins.bool]] = None,
581
+ pool_high: Optional[pulumi.Input[_builtins.str]] = None,
582
+ pool_low: Optional[pulumi.Input[_builtins.str]] = None,
583
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
584
+ push_default_route: Optional[pulumi.Input[_builtins.bool]] = None,
585
+ push_dns_server: Optional[pulumi.Input[_builtins.bool]] = None,
586
+ rebind_timer: Optional[pulumi.Input[_builtins.int]] = None,
587
+ renew_timer: Optional[pulumi.Input[_builtins.int]] = None,
588
+ subnet: Optional[pulumi.Input[_builtins.str]] = None,
589
+ valid_lifetime: Optional[pulumi.Input[_builtins.int]] = None,
590
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
590
591
  __props__=None):
591
592
  """
592
593
  > **Important:** The resource `network.PublicGatewayDhcp` has been deprecated and will no longer be supported.
@@ -617,23 +618,23 @@ class PublicGatewayDhcp(pulumi.CustomResource):
617
618
 
618
619
  :param str resource_name: The name of the resource.
619
620
  :param pulumi.ResourceOptions opts: Options for the resource.
620
- :param pulumi.Input[str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
621
- :param pulumi.Input[str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
622
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_searches: Additional DNS search paths
623
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
624
- :param pulumi.Input[bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
625
- :param pulumi.Input[str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
626
- :param pulumi.Input[str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
627
- :param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
628
- :param pulumi.Input[bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
621
+ :param pulumi.Input[_builtins.str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
622
+ :param pulumi.Input[_builtins.str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
623
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_searches: Additional DNS search paths
624
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
625
+ :param pulumi.Input[_builtins.bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
626
+ :param pulumi.Input[_builtins.str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
627
+ :param pulumi.Input[_builtins.str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
628
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
629
+ :param pulumi.Input[_builtins.bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
629
630
 
630
631
  > **Warning**: If you need to setup a default route, it's recommended to use the `network.GatewayNetwork` resource instead.
631
- :param pulumi.Input[bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
632
- :param pulumi.Input[int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
633
- :param pulumi.Input[int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
634
- :param pulumi.Input[str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
635
- :param pulumi.Input[int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
636
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
632
+ :param pulumi.Input[_builtins.bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
633
+ :param pulumi.Input[_builtins.int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
634
+ :param pulumi.Input[_builtins.int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
635
+ :param pulumi.Input[_builtins.str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
636
+ :param pulumi.Input[_builtins.int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
637
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
637
638
  """
638
639
  ...
639
640
  @overload
@@ -683,21 +684,21 @@ class PublicGatewayDhcp(pulumi.CustomResource):
683
684
  def _internal_init(__self__,
684
685
  resource_name: str,
685
686
  opts: Optional[pulumi.ResourceOptions] = None,
686
- address: Optional[pulumi.Input[str]] = None,
687
- dns_local_name: Optional[pulumi.Input[str]] = None,
688
- dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
689
- dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
690
- enable_dynamic: Optional[pulumi.Input[bool]] = None,
691
- pool_high: Optional[pulumi.Input[str]] = None,
692
- pool_low: Optional[pulumi.Input[str]] = None,
693
- project_id: Optional[pulumi.Input[str]] = None,
694
- push_default_route: Optional[pulumi.Input[bool]] = None,
695
- push_dns_server: Optional[pulumi.Input[bool]] = None,
696
- rebind_timer: Optional[pulumi.Input[int]] = None,
697
- renew_timer: Optional[pulumi.Input[int]] = None,
698
- subnet: Optional[pulumi.Input[str]] = None,
699
- valid_lifetime: Optional[pulumi.Input[int]] = None,
700
- zone: Optional[pulumi.Input[str]] = None,
687
+ address: Optional[pulumi.Input[_builtins.str]] = None,
688
+ dns_local_name: Optional[pulumi.Input[_builtins.str]] = None,
689
+ dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
690
+ dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
691
+ enable_dynamic: Optional[pulumi.Input[_builtins.bool]] = None,
692
+ pool_high: Optional[pulumi.Input[_builtins.str]] = None,
693
+ pool_low: Optional[pulumi.Input[_builtins.str]] = None,
694
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
695
+ push_default_route: Optional[pulumi.Input[_builtins.bool]] = None,
696
+ push_dns_server: Optional[pulumi.Input[_builtins.bool]] = None,
697
+ rebind_timer: Optional[pulumi.Input[_builtins.int]] = None,
698
+ renew_timer: Optional[pulumi.Input[_builtins.int]] = None,
699
+ subnet: Optional[pulumi.Input[_builtins.str]] = None,
700
+ valid_lifetime: Optional[pulumi.Input[_builtins.int]] = None,
701
+ zone: Optional[pulumi.Input[_builtins.str]] = None,
701
702
  __props__=None):
702
703
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
703
704
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -739,24 +740,24 @@ class PublicGatewayDhcp(pulumi.CustomResource):
739
740
  def get(resource_name: str,
740
741
  id: pulumi.Input[str],
741
742
  opts: Optional[pulumi.ResourceOptions] = None,
742
- address: Optional[pulumi.Input[str]] = None,
743
- created_at: Optional[pulumi.Input[str]] = None,
744
- dns_local_name: Optional[pulumi.Input[str]] = None,
745
- dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
746
- dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
747
- enable_dynamic: Optional[pulumi.Input[bool]] = None,
748
- organization_id: Optional[pulumi.Input[str]] = None,
749
- pool_high: Optional[pulumi.Input[str]] = None,
750
- pool_low: Optional[pulumi.Input[str]] = None,
751
- project_id: Optional[pulumi.Input[str]] = None,
752
- push_default_route: Optional[pulumi.Input[bool]] = None,
753
- push_dns_server: Optional[pulumi.Input[bool]] = None,
754
- rebind_timer: Optional[pulumi.Input[int]] = None,
755
- renew_timer: Optional[pulumi.Input[int]] = None,
756
- subnet: Optional[pulumi.Input[str]] = None,
757
- updated_at: Optional[pulumi.Input[str]] = None,
758
- valid_lifetime: Optional[pulumi.Input[int]] = None,
759
- zone: Optional[pulumi.Input[str]] = None) -> 'PublicGatewayDhcp':
743
+ address: Optional[pulumi.Input[_builtins.str]] = None,
744
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
745
+ dns_local_name: Optional[pulumi.Input[_builtins.str]] = None,
746
+ dns_searches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
747
+ dns_servers_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
748
+ enable_dynamic: Optional[pulumi.Input[_builtins.bool]] = None,
749
+ organization_id: Optional[pulumi.Input[_builtins.str]] = None,
750
+ pool_high: Optional[pulumi.Input[_builtins.str]] = None,
751
+ pool_low: Optional[pulumi.Input[_builtins.str]] = None,
752
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
753
+ push_default_route: Optional[pulumi.Input[_builtins.bool]] = None,
754
+ push_dns_server: Optional[pulumi.Input[_builtins.bool]] = None,
755
+ rebind_timer: Optional[pulumi.Input[_builtins.int]] = None,
756
+ renew_timer: Optional[pulumi.Input[_builtins.int]] = None,
757
+ subnet: Optional[pulumi.Input[_builtins.str]] = None,
758
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
759
+ valid_lifetime: Optional[pulumi.Input[_builtins.int]] = None,
760
+ zone: Optional[pulumi.Input[_builtins.str]] = None) -> 'PublicGatewayDhcp':
760
761
  """
761
762
  Get an existing PublicGatewayDhcp resource's state with the given name, id, and optional extra
762
763
  properties used to qualify the lookup.
@@ -764,26 +765,26 @@ class PublicGatewayDhcp(pulumi.CustomResource):
764
765
  :param str resource_name: The unique name of the resulting resource.
765
766
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
766
767
  :param pulumi.ResourceOptions opts: Options for the resource.
767
- :param pulumi.Input[str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
768
- :param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway DHCP configuration.
769
- :param pulumi.Input[str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
770
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_searches: Additional DNS search paths
771
- :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
772
- :param pulumi.Input[bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
773
- :param pulumi.Input[str] organization_id: The Organization ID the Public Gateway DHCP config is associated with.
774
- :param pulumi.Input[str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
775
- :param pulumi.Input[str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
776
- :param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
777
- :param pulumi.Input[bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
768
+ :param pulumi.Input[_builtins.str] address: The IP address of the DHCP server. This will be the gateway's address in the Private Network.
769
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the Public Gateway DHCP configuration.
770
+ :param pulumi.Input[_builtins.str] dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
771
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_searches: Additional DNS search paths
772
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] dns_servers_overrides: Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
773
+ :param pulumi.Input[_builtins.bool] enable_dynamic: Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
774
+ :param pulumi.Input[_builtins.str] organization_id: The Organization ID the Public Gateway DHCP config is associated with.
775
+ :param pulumi.Input[_builtins.str] pool_high: High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
776
+ :param pulumi.Input[_builtins.str] pool_low: Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
777
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
778
+ :param pulumi.Input[_builtins.bool] push_default_route: Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
778
779
 
779
780
  > **Warning**: If you need to setup a default route, it's recommended to use the `network.GatewayNetwork` resource instead.
780
- :param pulumi.Input[bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
781
- :param pulumi.Input[int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
782
- :param pulumi.Input[int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
783
- :param pulumi.Input[str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
784
- :param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway DHCP configuration.
785
- :param pulumi.Input[int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
786
- :param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
781
+ :param pulumi.Input[_builtins.bool] push_dns_server: Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
782
+ :param pulumi.Input[_builtins.int] rebind_timer: After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
783
+ :param pulumi.Input[_builtins.int] renew_timer: After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
784
+ :param pulumi.Input[_builtins.str] subnet: The subnet to associate with the Public Gateway DHCP configuration.
785
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the Public Gateway DHCP configuration.
786
+ :param pulumi.Input[_builtins.int] valid_lifetime: How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
787
+ :param pulumi.Input[_builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
787
788
  """
788
789
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
789
790
 
@@ -809,89 +810,89 @@ class PublicGatewayDhcp(pulumi.CustomResource):
809
810
  __props__.__dict__["zone"] = zone
810
811
  return PublicGatewayDhcp(resource_name, opts=opts, __props__=__props__)
811
812
 
812
- @property
813
+ @_builtins.property
813
814
  @pulumi.getter
814
- def address(self) -> pulumi.Output[str]:
815
+ def address(self) -> pulumi.Output[_builtins.str]:
815
816
  """
816
817
  The IP address of the DHCP server. This will be the gateway's address in the Private Network.
817
818
  """
818
819
  return pulumi.get(self, "address")
819
820
 
820
- @property
821
+ @_builtins.property
821
822
  @pulumi.getter(name="createdAt")
822
- def created_at(self) -> pulumi.Output[str]:
823
+ def created_at(self) -> pulumi.Output[_builtins.str]:
823
824
  """
824
825
  The date and time of the creation of the Public Gateway DHCP configuration.
825
826
  """
826
827
  return pulumi.get(self, "created_at")
827
828
 
828
- @property
829
+ @_builtins.property
829
830
  @pulumi.getter(name="dnsLocalName")
830
- def dns_local_name(self) -> pulumi.Output[str]:
831
+ def dns_local_name(self) -> pulumi.Output[_builtins.str]:
831
832
  """
832
833
  TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`.
833
834
  """
834
835
  return pulumi.get(self, "dns_local_name")
835
836
 
836
- @property
837
+ @_builtins.property
837
838
  @pulumi.getter(name="dnsSearches")
838
- def dns_searches(self) -> pulumi.Output[Sequence[str]]:
839
+ def dns_searches(self) -> pulumi.Output[Sequence[_builtins.str]]:
839
840
  """
840
841
  Additional DNS search paths
841
842
  """
842
843
  return pulumi.get(self, "dns_searches")
843
844
 
844
- @property
845
+ @_builtins.property
845
846
  @pulumi.getter(name="dnsServersOverrides")
846
- def dns_servers_overrides(self) -> pulumi.Output[Sequence[str]]:
847
+ def dns_servers_overrides(self) -> pulumi.Output[Sequence[_builtins.str]]:
847
848
  """
848
849
  Override the DNS server list pushed to DHCP clients, instead of the gateway itself.
849
850
  """
850
851
  return pulumi.get(self, "dns_servers_overrides")
851
852
 
852
- @property
853
+ @_builtins.property
853
854
  @pulumi.getter(name="enableDynamic")
854
- def enable_dynamic(self) -> pulumi.Output[bool]:
855
+ def enable_dynamic(self) -> pulumi.Output[_builtins.bool]:
855
856
  """
856
857
  Whether to enable dynamic pooling of IPs. By turning the dynamic pool off, only pre-existing DHCP reservations will be handed out. Defaults to `true`.
857
858
  """
858
859
  return pulumi.get(self, "enable_dynamic")
859
860
 
860
- @property
861
+ @_builtins.property
861
862
  @pulumi.getter(name="organizationId")
862
- def organization_id(self) -> pulumi.Output[str]:
863
+ def organization_id(self) -> pulumi.Output[_builtins.str]:
863
864
  """
864
865
  The Organization ID the Public Gateway DHCP config is associated with.
865
866
  """
866
867
  return pulumi.get(self, "organization_id")
867
868
 
868
- @property
869
+ @_builtins.property
869
870
  @pulumi.getter(name="poolHigh")
870
- def pool_high(self) -> pulumi.Output[str]:
871
+ def pool_high(self) -> pulumi.Output[_builtins.str]:
871
872
  """
872
873
  High IP (excluded) of the dynamic address pool. Defaults to the last address of the subnet.
873
874
  """
874
875
  return pulumi.get(self, "pool_high")
875
876
 
876
- @property
877
+ @_builtins.property
877
878
  @pulumi.getter(name="poolLow")
878
- def pool_low(self) -> pulumi.Output[str]:
879
+ def pool_low(self) -> pulumi.Output[_builtins.str]:
879
880
  """
880
881
  Low IP (included) of the dynamic address pool. Defaults to the second address of the subnet.
881
882
  """
882
883
  return pulumi.get(self, "pool_low")
883
884
 
884
- @property
885
+ @_builtins.property
885
886
  @pulumi.getter(name="projectId")
886
- def project_id(self) -> pulumi.Output[str]:
887
+ def project_id(self) -> pulumi.Output[_builtins.str]:
887
888
  """
888
889
  `project_id`) The ID of the Project the Public Gateway DHCP configuration is associated with.
889
890
  """
890
891
  return pulumi.get(self, "project_id")
891
892
 
892
- @property
893
+ @_builtins.property
893
894
  @pulumi.getter(name="pushDefaultRoute")
894
- def push_default_route(self) -> pulumi.Output[bool]:
895
+ def push_default_route(self) -> pulumi.Output[_builtins.bool]:
895
896
  """
896
897
  Whether the gateway should push a default route to DHCP clients or only hand out IPs. Defaults to `true`.
897
898
 
@@ -899,57 +900,57 @@ class PublicGatewayDhcp(pulumi.CustomResource):
899
900
  """
900
901
  return pulumi.get(self, "push_default_route")
901
902
 
902
- @property
903
+ @_builtins.property
903
904
  @pulumi.getter(name="pushDnsServer")
904
- def push_dns_server(self) -> pulumi.Output[bool]:
905
+ def push_dns_server(self) -> pulumi.Output[_builtins.bool]:
905
906
  """
906
907
  Whether the gateway should push custom DNS servers to clients. This allows for instance hostname > IP resolution. Defaults to `true`.
907
908
  """
908
909
  return pulumi.get(self, "push_dns_server")
909
910
 
910
- @property
911
+ @_builtins.property
911
912
  @pulumi.getter(name="rebindTimer")
912
- def rebind_timer(self) -> pulumi.Output[int]:
913
+ def rebind_timer(self) -> pulumi.Output[_builtins.int]:
913
914
  """
914
915
  After how long, in seconds, a DHCP client will query for a new lease if previous renews fail. Must be 30s lower than `valid_lifetime`. Defaults to 51m (3060s).
915
916
  """
916
917
  return pulumi.get(self, "rebind_timer")
917
918
 
918
- @property
919
+ @_builtins.property
919
920
  @pulumi.getter(name="renewTimer")
920
- def renew_timer(self) -> pulumi.Output[int]:
921
+ def renew_timer(self) -> pulumi.Output[_builtins.int]:
921
922
  """
922
923
  After how long, in seconds, a renewal will be attempted. Must be 30s lower than `rebind_timer`. Defaults to 50m (3000s).
923
924
  """
924
925
  return pulumi.get(self, "renew_timer")
925
926
 
926
- @property
927
+ @_builtins.property
927
928
  @pulumi.getter
928
- def subnet(self) -> pulumi.Output[str]:
929
+ def subnet(self) -> pulumi.Output[_builtins.str]:
929
930
  """
930
931
  The subnet to associate with the Public Gateway DHCP configuration.
931
932
  """
932
933
  return pulumi.get(self, "subnet")
933
934
 
934
- @property
935
+ @_builtins.property
935
936
  @pulumi.getter(name="updatedAt")
936
- def updated_at(self) -> pulumi.Output[str]:
937
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
937
938
  """
938
939
  The date and time of the last update of the Public Gateway DHCP configuration.
939
940
  """
940
941
  return pulumi.get(self, "updated_at")
941
942
 
942
- @property
943
+ @_builtins.property
943
944
  @pulumi.getter(name="validLifetime")
944
- def valid_lifetime(self) -> pulumi.Output[int]:
945
+ def valid_lifetime(self) -> pulumi.Output[_builtins.int]:
945
946
  """
946
947
  How long, in seconds, DHCP entries will be valid. Defaults to 1h (3600s).
947
948
  """
948
949
  return pulumi.get(self, "valid_lifetime")
949
950
 
950
- @property
951
+ @_builtins.property
951
952
  @pulumi.getter
952
- def zone(self) -> pulumi.Output[str]:
953
+ def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
953
954
  """
954
955
  `zone`) The zone in which the Public Gateway DHCP configuration should be created.
955
956
  """