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
@@ -21,20 +21,24 @@ __all__ = ['EdgeServicesTlsStageArgs', 'EdgeServicesTlsStage']
21
21
  @pulumi.input_type
22
22
  class EdgeServicesTlsStageArgs:
23
23
  def __init__(__self__, *,
24
- pipeline_id: pulumi.Input[str],
25
- backend_stage_id: Optional[pulumi.Input[str]] = None,
26
- cache_stage_id: Optional[pulumi.Input[str]] = None,
27
- managed_certificate: Optional[pulumi.Input[bool]] = None,
28
- project_id: Optional[pulumi.Input[str]] = None,
29
- secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None):
24
+ pipeline_id: pulumi.Input[_builtins.str],
25
+ backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
26
+ cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
27
+ managed_certificate: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
29
+ route_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
30
+ secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
31
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None):
30
32
  """
31
33
  The set of arguments for constructing a EdgeServicesTlsStage resource.
32
- :param pulumi.Input[str] pipeline_id: The ID of the pipeline.
33
- :param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to.
34
- :param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to.
35
- :param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
36
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
34
+ :param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
35
+ :param pulumi.Input[_builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
36
+ :param pulumi.Input[_builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
37
+ :param pulumi.Input[_builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
38
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
39
+ :param pulumi.Input[_builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
37
40
  :param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
41
+ :param pulumi.Input[_builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
38
42
  """
39
43
  pulumi.set(__self__, "pipeline_id", pipeline_id)
40
44
  if backend_stage_id is not None:
@@ -45,70 +49,86 @@ class EdgeServicesTlsStageArgs:
45
49
  pulumi.set(__self__, "managed_certificate", managed_certificate)
46
50
  if project_id is not None:
47
51
  pulumi.set(__self__, "project_id", project_id)
52
+ if route_stage_id is not None:
53
+ pulumi.set(__self__, "route_stage_id", route_stage_id)
48
54
  if secrets is not None:
49
55
  pulumi.set(__self__, "secrets", secrets)
56
+ if waf_stage_id is not None:
57
+ pulumi.set(__self__, "waf_stage_id", waf_stage_id)
50
58
 
51
- @property
59
+ @_builtins.property
52
60
  @pulumi.getter(name="pipelineId")
53
- def pipeline_id(self) -> pulumi.Input[str]:
61
+ def pipeline_id(self) -> pulumi.Input[_builtins.str]:
54
62
  """
55
63
  The ID of the pipeline.
56
64
  """
57
65
  return pulumi.get(self, "pipeline_id")
58
66
 
59
67
  @pipeline_id.setter
60
- def pipeline_id(self, value: pulumi.Input[str]):
68
+ def pipeline_id(self, value: pulumi.Input[_builtins.str]):
61
69
  pulumi.set(self, "pipeline_id", value)
62
70
 
63
- @property
71
+ @_builtins.property
64
72
  @pulumi.getter(name="backendStageId")
65
- def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
73
+ def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
66
74
  """
67
- The backend stage ID the TLS stage will be linked to.
75
+ The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
68
76
  """
69
77
  return pulumi.get(self, "backend_stage_id")
70
78
 
71
79
  @backend_stage_id.setter
72
- def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
80
+ def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
73
81
  pulumi.set(self, "backend_stage_id", value)
74
82
 
75
- @property
83
+ @_builtins.property
76
84
  @pulumi.getter(name="cacheStageId")
77
- def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
85
+ def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
78
86
  """
79
- The cache stage ID the TLS stage will be linked to.
87
+ The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
80
88
  """
81
89
  return pulumi.get(self, "cache_stage_id")
82
90
 
83
91
  @cache_stage_id.setter
84
- def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
92
+ def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
85
93
  pulumi.set(self, "cache_stage_id", value)
86
94
 
87
- @property
95
+ @_builtins.property
88
96
  @pulumi.getter(name="managedCertificate")
89
- def managed_certificate(self) -> Optional[pulumi.Input[bool]]:
97
+ def managed_certificate(self) -> Optional[pulumi.Input[_builtins.bool]]:
90
98
  """
91
99
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
92
100
  """
93
101
  return pulumi.get(self, "managed_certificate")
94
102
 
95
103
  @managed_certificate.setter
96
- def managed_certificate(self, value: Optional[pulumi.Input[bool]]):
104
+ def managed_certificate(self, value: Optional[pulumi.Input[_builtins.bool]]):
97
105
  pulumi.set(self, "managed_certificate", value)
98
106
 
99
- @property
107
+ @_builtins.property
100
108
  @pulumi.getter(name="projectId")
101
- def project_id(self) -> Optional[pulumi.Input[str]]:
109
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
102
110
  """
103
111
  `project_id`) The ID of the project the TLS stage is associated with.
104
112
  """
105
113
  return pulumi.get(self, "project_id")
106
114
 
107
115
  @project_id.setter
108
- def project_id(self, value: Optional[pulumi.Input[str]]):
116
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
109
117
  pulumi.set(self, "project_id", value)
110
118
 
111
- @property
119
+ @_builtins.property
120
+ @pulumi.getter(name="routeStageId")
121
+ def route_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
122
+ """
123
+ The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
124
+ """
125
+ return pulumi.get(self, "route_stage_id")
126
+
127
+ @route_stage_id.setter
128
+ def route_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
129
+ pulumi.set(self, "route_stage_id", value)
130
+
131
+ @_builtins.property
112
132
  @pulumi.getter
113
133
  def secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]:
114
134
  """
@@ -120,30 +140,46 @@ class EdgeServicesTlsStageArgs:
120
140
  def secrets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]):
121
141
  pulumi.set(self, "secrets", value)
122
142
 
143
+ @_builtins.property
144
+ @pulumi.getter(name="wafStageId")
145
+ def waf_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
146
+ """
147
+ The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
148
+ """
149
+ return pulumi.get(self, "waf_stage_id")
150
+
151
+ @waf_stage_id.setter
152
+ def waf_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
153
+ pulumi.set(self, "waf_stage_id", value)
154
+
123
155
 
124
156
  @pulumi.input_type
125
157
  class _EdgeServicesTlsStageState:
126
158
  def __init__(__self__, *,
127
- backend_stage_id: Optional[pulumi.Input[str]] = None,
128
- cache_stage_id: Optional[pulumi.Input[str]] = None,
129
- certificate_expires_at: Optional[pulumi.Input[str]] = None,
130
- created_at: Optional[pulumi.Input[str]] = None,
131
- managed_certificate: Optional[pulumi.Input[bool]] = None,
132
- pipeline_id: Optional[pulumi.Input[str]] = None,
133
- project_id: Optional[pulumi.Input[str]] = None,
159
+ backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
160
+ cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
161
+ certificate_expires_at: Optional[pulumi.Input[_builtins.str]] = None,
162
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
163
+ managed_certificate: Optional[pulumi.Input[_builtins.bool]] = None,
164
+ pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
165
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
166
+ route_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
134
167
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
135
- updated_at: Optional[pulumi.Input[str]] = None):
168
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
169
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None):
136
170
  """
137
171
  Input properties used for looking up and filtering EdgeServicesTlsStage resources.
138
- :param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to.
139
- :param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to.
140
- :param pulumi.Input[str] certificate_expires_at: The expiration date of the certificate.
141
- :param pulumi.Input[str] created_at: The date and time of the creation of the TLS stage.
142
- :param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
143
- :param pulumi.Input[str] pipeline_id: The ID of the pipeline.
144
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
172
+ :param pulumi.Input[_builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
173
+ :param pulumi.Input[_builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
174
+ :param pulumi.Input[_builtins.str] certificate_expires_at: The expiration date of the certificate.
175
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the TLS stage.
176
+ :param pulumi.Input[_builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
177
+ :param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
178
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
179
+ :param pulumi.Input[_builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
145
180
  :param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
146
- :param pulumi.Input[str] updated_at: The date and time of the last update of the TLS stage.
181
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the TLS stage.
182
+ :param pulumi.Input[_builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
147
183
  """
148
184
  if backend_stage_id is not None:
149
185
  pulumi.set(__self__, "backend_stage_id", backend_stage_id)
@@ -159,96 +195,112 @@ class _EdgeServicesTlsStageState:
159
195
  pulumi.set(__self__, "pipeline_id", pipeline_id)
160
196
  if project_id is not None:
161
197
  pulumi.set(__self__, "project_id", project_id)
198
+ if route_stage_id is not None:
199
+ pulumi.set(__self__, "route_stage_id", route_stage_id)
162
200
  if secrets is not None:
163
201
  pulumi.set(__self__, "secrets", secrets)
164
202
  if updated_at is not None:
165
203
  pulumi.set(__self__, "updated_at", updated_at)
204
+ if waf_stage_id is not None:
205
+ pulumi.set(__self__, "waf_stage_id", waf_stage_id)
166
206
 
167
- @property
207
+ @_builtins.property
168
208
  @pulumi.getter(name="backendStageId")
169
- def backend_stage_id(self) -> Optional[pulumi.Input[str]]:
209
+ def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
170
210
  """
171
- The backend stage ID the TLS stage will be linked to.
211
+ The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
172
212
  """
173
213
  return pulumi.get(self, "backend_stage_id")
174
214
 
175
215
  @backend_stage_id.setter
176
- def backend_stage_id(self, value: Optional[pulumi.Input[str]]):
216
+ def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
177
217
  pulumi.set(self, "backend_stage_id", value)
178
218
 
179
- @property
219
+ @_builtins.property
180
220
  @pulumi.getter(name="cacheStageId")
181
- def cache_stage_id(self) -> Optional[pulumi.Input[str]]:
221
+ def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
182
222
  """
183
- The cache stage ID the TLS stage will be linked to.
223
+ The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
184
224
  """
185
225
  return pulumi.get(self, "cache_stage_id")
186
226
 
187
227
  @cache_stage_id.setter
188
- def cache_stage_id(self, value: Optional[pulumi.Input[str]]):
228
+ def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
189
229
  pulumi.set(self, "cache_stage_id", value)
190
230
 
191
- @property
231
+ @_builtins.property
192
232
  @pulumi.getter(name="certificateExpiresAt")
193
- def certificate_expires_at(self) -> Optional[pulumi.Input[str]]:
233
+ def certificate_expires_at(self) -> Optional[pulumi.Input[_builtins.str]]:
194
234
  """
195
235
  The expiration date of the certificate.
196
236
  """
197
237
  return pulumi.get(self, "certificate_expires_at")
198
238
 
199
239
  @certificate_expires_at.setter
200
- def certificate_expires_at(self, value: Optional[pulumi.Input[str]]):
240
+ def certificate_expires_at(self, value: Optional[pulumi.Input[_builtins.str]]):
201
241
  pulumi.set(self, "certificate_expires_at", value)
202
242
 
203
- @property
243
+ @_builtins.property
204
244
  @pulumi.getter(name="createdAt")
205
- def created_at(self) -> Optional[pulumi.Input[str]]:
245
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
206
246
  """
207
247
  The date and time of the creation of the TLS stage.
208
248
  """
209
249
  return pulumi.get(self, "created_at")
210
250
 
211
251
  @created_at.setter
212
- def created_at(self, value: Optional[pulumi.Input[str]]):
252
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
213
253
  pulumi.set(self, "created_at", value)
214
254
 
215
- @property
255
+ @_builtins.property
216
256
  @pulumi.getter(name="managedCertificate")
217
- def managed_certificate(self) -> Optional[pulumi.Input[bool]]:
257
+ def managed_certificate(self) -> Optional[pulumi.Input[_builtins.bool]]:
218
258
  """
219
259
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
220
260
  """
221
261
  return pulumi.get(self, "managed_certificate")
222
262
 
223
263
  @managed_certificate.setter
224
- def managed_certificate(self, value: Optional[pulumi.Input[bool]]):
264
+ def managed_certificate(self, value: Optional[pulumi.Input[_builtins.bool]]):
225
265
  pulumi.set(self, "managed_certificate", value)
226
266
 
227
- @property
267
+ @_builtins.property
228
268
  @pulumi.getter(name="pipelineId")
229
- def pipeline_id(self) -> Optional[pulumi.Input[str]]:
269
+ def pipeline_id(self) -> Optional[pulumi.Input[_builtins.str]]:
230
270
  """
231
271
  The ID of the pipeline.
232
272
  """
233
273
  return pulumi.get(self, "pipeline_id")
234
274
 
235
275
  @pipeline_id.setter
236
- def pipeline_id(self, value: Optional[pulumi.Input[str]]):
276
+ def pipeline_id(self, value: Optional[pulumi.Input[_builtins.str]]):
237
277
  pulumi.set(self, "pipeline_id", value)
238
278
 
239
- @property
279
+ @_builtins.property
240
280
  @pulumi.getter(name="projectId")
241
- def project_id(self) -> Optional[pulumi.Input[str]]:
281
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
242
282
  """
243
283
  `project_id`) The ID of the project the TLS stage is associated with.
244
284
  """
245
285
  return pulumi.get(self, "project_id")
246
286
 
247
287
  @project_id.setter
248
- def project_id(self, value: Optional[pulumi.Input[str]]):
288
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
249
289
  pulumi.set(self, "project_id", value)
250
290
 
251
- @property
291
+ @_builtins.property
292
+ @pulumi.getter(name="routeStageId")
293
+ def route_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
294
+ """
295
+ The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
296
+ """
297
+ return pulumi.get(self, "route_stage_id")
298
+
299
+ @route_stage_id.setter
300
+ def route_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
301
+ pulumi.set(self, "route_stage_id", value)
302
+
303
+ @_builtins.property
252
304
  @pulumi.getter
253
305
  def secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]:
254
306
  """
@@ -260,30 +312,45 @@ class _EdgeServicesTlsStageState:
260
312
  def secrets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]):
261
313
  pulumi.set(self, "secrets", value)
262
314
 
263
- @property
315
+ @_builtins.property
264
316
  @pulumi.getter(name="updatedAt")
265
- def updated_at(self) -> Optional[pulumi.Input[str]]:
317
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
266
318
  """
267
319
  The date and time of the last update of the TLS stage.
268
320
  """
269
321
  return pulumi.get(self, "updated_at")
270
322
 
271
323
  @updated_at.setter
272
- def updated_at(self, value: Optional[pulumi.Input[str]]):
324
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
273
325
  pulumi.set(self, "updated_at", value)
274
326
 
327
+ @_builtins.property
328
+ @pulumi.getter(name="wafStageId")
329
+ def waf_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
330
+ """
331
+ The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
332
+ """
333
+ return pulumi.get(self, "waf_stage_id")
334
+
335
+ @waf_stage_id.setter
336
+ def waf_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
337
+ pulumi.set(self, "waf_stage_id", value)
338
+
275
339
 
340
+ @pulumi.type_token("scaleway:index/edgeServicesTlsStage:EdgeServicesTlsStage")
276
341
  class EdgeServicesTlsStage(pulumi.CustomResource):
277
342
  @overload
278
343
  def __init__(__self__,
279
344
  resource_name: str,
280
345
  opts: Optional[pulumi.ResourceOptions] = None,
281
- backend_stage_id: Optional[pulumi.Input[str]] = None,
282
- cache_stage_id: Optional[pulumi.Input[str]] = None,
283
- managed_certificate: Optional[pulumi.Input[bool]] = None,
284
- pipeline_id: Optional[pulumi.Input[str]] = None,
285
- project_id: Optional[pulumi.Input[str]] = None,
346
+ backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
347
+ cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
348
+ managed_certificate: Optional[pulumi.Input[_builtins.bool]] = None,
349
+ pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
350
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
351
+ route_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
286
352
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
353
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
287
354
  __props__=None):
288
355
  """
289
356
  Creates and manages Scaleway Edge Services TLS Stages.
@@ -327,12 +394,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
327
394
 
328
395
  :param str resource_name: The name of the resource.
329
396
  :param pulumi.ResourceOptions opts: Options for the resource.
330
- :param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to.
331
- :param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to.
332
- :param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
333
- :param pulumi.Input[str] pipeline_id: The ID of the pipeline.
334
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
397
+ :param pulumi.Input[_builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
398
+ :param pulumi.Input[_builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
399
+ :param pulumi.Input[_builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
400
+ :param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
401
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
402
+ :param pulumi.Input[_builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
335
403
  :param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
404
+ :param pulumi.Input[_builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
336
405
  """
337
406
  ...
338
407
  @overload
@@ -395,12 +464,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
395
464
  def _internal_init(__self__,
396
465
  resource_name: str,
397
466
  opts: Optional[pulumi.ResourceOptions] = None,
398
- backend_stage_id: Optional[pulumi.Input[str]] = None,
399
- cache_stage_id: Optional[pulumi.Input[str]] = None,
400
- managed_certificate: Optional[pulumi.Input[bool]] = None,
401
- pipeline_id: Optional[pulumi.Input[str]] = None,
402
- project_id: Optional[pulumi.Input[str]] = None,
467
+ backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
468
+ cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
469
+ managed_certificate: Optional[pulumi.Input[_builtins.bool]] = None,
470
+ pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
471
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
472
+ route_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
403
473
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
474
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
404
475
  __props__=None):
405
476
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
406
477
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -417,7 +488,9 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
417
488
  raise TypeError("Missing required property 'pipeline_id'")
418
489
  __props__.__dict__["pipeline_id"] = pipeline_id
419
490
  __props__.__dict__["project_id"] = project_id
491
+ __props__.__dict__["route_stage_id"] = route_stage_id
420
492
  __props__.__dict__["secrets"] = secrets
493
+ __props__.__dict__["waf_stage_id"] = waf_stage_id
421
494
  __props__.__dict__["certificate_expires_at"] = None
422
495
  __props__.__dict__["created_at"] = None
423
496
  __props__.__dict__["updated_at"] = None
@@ -431,15 +504,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
431
504
  def get(resource_name: str,
432
505
  id: pulumi.Input[str],
433
506
  opts: Optional[pulumi.ResourceOptions] = None,
434
- backend_stage_id: Optional[pulumi.Input[str]] = None,
435
- cache_stage_id: Optional[pulumi.Input[str]] = None,
436
- certificate_expires_at: Optional[pulumi.Input[str]] = None,
437
- created_at: Optional[pulumi.Input[str]] = None,
438
- managed_certificate: Optional[pulumi.Input[bool]] = None,
439
- pipeline_id: Optional[pulumi.Input[str]] = None,
440
- project_id: Optional[pulumi.Input[str]] = None,
507
+ backend_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
508
+ cache_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
509
+ certificate_expires_at: Optional[pulumi.Input[_builtins.str]] = None,
510
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
511
+ managed_certificate: Optional[pulumi.Input[_builtins.bool]] = None,
512
+ pipeline_id: Optional[pulumi.Input[_builtins.str]] = None,
513
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
514
+ route_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
441
515
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
442
- updated_at: Optional[pulumi.Input[str]] = None) -> 'EdgeServicesTlsStage':
516
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
517
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'EdgeServicesTlsStage':
443
518
  """
444
519
  Get an existing EdgeServicesTlsStage resource's state with the given name, id, and optional extra
445
520
  properties used to qualify the lookup.
@@ -447,15 +522,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
447
522
  :param str resource_name: The unique name of the resulting resource.
448
523
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
449
524
  :param pulumi.ResourceOptions opts: Options for the resource.
450
- :param pulumi.Input[str] backend_stage_id: The backend stage ID the TLS stage will be linked to.
451
- :param pulumi.Input[str] cache_stage_id: The cache stage ID the TLS stage will be linked to.
452
- :param pulumi.Input[str] certificate_expires_at: The expiration date of the certificate.
453
- :param pulumi.Input[str] created_at: The date and time of the creation of the TLS stage.
454
- :param pulumi.Input[bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
455
- :param pulumi.Input[str] pipeline_id: The ID of the pipeline.
456
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
525
+ :param pulumi.Input[_builtins.str] backend_stage_id: The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
526
+ :param pulumi.Input[_builtins.str] cache_stage_id: The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
527
+ :param pulumi.Input[_builtins.str] certificate_expires_at: The expiration date of the certificate.
528
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the creation of the TLS stage.
529
+ :param pulumi.Input[_builtins.bool] managed_certificate: Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
530
+ :param pulumi.Input[_builtins.str] pipeline_id: The ID of the pipeline.
531
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
532
+ :param pulumi.Input[_builtins.str] route_stage_id: The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
457
533
  :param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
458
- :param pulumi.Input[str] updated_at: The date and time of the last update of the TLS stage.
534
+ :param pulumi.Input[_builtins.str] updated_at: The date and time of the last update of the TLS stage.
535
+ :param pulumi.Input[_builtins.str] waf_stage_id: The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
459
536
  """
460
537
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
461
538
 
@@ -468,67 +545,77 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
468
545
  __props__.__dict__["managed_certificate"] = managed_certificate
469
546
  __props__.__dict__["pipeline_id"] = pipeline_id
470
547
  __props__.__dict__["project_id"] = project_id
548
+ __props__.__dict__["route_stage_id"] = route_stage_id
471
549
  __props__.__dict__["secrets"] = secrets
472
550
  __props__.__dict__["updated_at"] = updated_at
551
+ __props__.__dict__["waf_stage_id"] = waf_stage_id
473
552
  return EdgeServicesTlsStage(resource_name, opts=opts, __props__=__props__)
474
553
 
475
- @property
554
+ @_builtins.property
476
555
  @pulumi.getter(name="backendStageId")
477
- def backend_stage_id(self) -> pulumi.Output[str]:
556
+ def backend_stage_id(self) -> pulumi.Output[_builtins.str]:
478
557
  """
479
- The backend stage ID the TLS stage will be linked to.
558
+ The backend stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
480
559
  """
481
560
  return pulumi.get(self, "backend_stage_id")
482
561
 
483
- @property
562
+ @_builtins.property
484
563
  @pulumi.getter(name="cacheStageId")
485
- def cache_stage_id(self) -> pulumi.Output[str]:
564
+ def cache_stage_id(self) -> pulumi.Output[_builtins.str]:
486
565
  """
487
- The cache stage ID the TLS stage will be linked to.
566
+ The cache stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
488
567
  """
489
568
  return pulumi.get(self, "cache_stage_id")
490
569
 
491
- @property
570
+ @_builtins.property
492
571
  @pulumi.getter(name="certificateExpiresAt")
493
- def certificate_expires_at(self) -> pulumi.Output[str]:
572
+ def certificate_expires_at(self) -> pulumi.Output[_builtins.str]:
494
573
  """
495
574
  The expiration date of the certificate.
496
575
  """
497
576
  return pulumi.get(self, "certificate_expires_at")
498
577
 
499
- @property
578
+ @_builtins.property
500
579
  @pulumi.getter(name="createdAt")
501
- def created_at(self) -> pulumi.Output[str]:
580
+ def created_at(self) -> pulumi.Output[_builtins.str]:
502
581
  """
503
582
  The date and time of the creation of the TLS stage.
504
583
  """
505
584
  return pulumi.get(self, "created_at")
506
585
 
507
- @property
586
+ @_builtins.property
508
587
  @pulumi.getter(name="managedCertificate")
509
- def managed_certificate(self) -> pulumi.Output[bool]:
588
+ def managed_certificate(self) -> pulumi.Output[_builtins.bool]:
510
589
  """
511
590
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
512
591
  """
513
592
  return pulumi.get(self, "managed_certificate")
514
593
 
515
- @property
594
+ @_builtins.property
516
595
  @pulumi.getter(name="pipelineId")
517
- def pipeline_id(self) -> pulumi.Output[str]:
596
+ def pipeline_id(self) -> pulumi.Output[_builtins.str]:
518
597
  """
519
598
  The ID of the pipeline.
520
599
  """
521
600
  return pulumi.get(self, "pipeline_id")
522
601
 
523
- @property
602
+ @_builtins.property
524
603
  @pulumi.getter(name="projectId")
525
- def project_id(self) -> pulumi.Output[str]:
604
+ def project_id(self) -> pulumi.Output[_builtins.str]:
526
605
  """
527
606
  `project_id`) The ID of the project the TLS stage is associated with.
528
607
  """
529
608
  return pulumi.get(self, "project_id")
530
609
 
531
- @property
610
+ @_builtins.property
611
+ @pulumi.getter(name="routeStageId")
612
+ def route_stage_id(self) -> pulumi.Output[_builtins.str]:
613
+ """
614
+ The route stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
615
+ """
616
+ return pulumi.get(self, "route_stage_id")
617
+
618
+ @_builtins.property
532
619
  @pulumi.getter
533
620
  def secrets(self) -> pulumi.Output[Sequence['outputs.EdgeServicesTlsStageSecret']]:
534
621
  """
@@ -536,11 +623,19 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
536
623
  """
537
624
  return pulumi.get(self, "secrets")
538
625
 
539
- @property
626
+ @_builtins.property
540
627
  @pulumi.getter(name="updatedAt")
541
- def updated_at(self) -> pulumi.Output[str]:
628
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
542
629
  """
543
630
  The date and time of the last update of the TLS stage.
544
631
  """
545
632
  return pulumi.get(self, "updated_at")
546
633
 
634
+ @_builtins.property
635
+ @pulumi.getter(name="wafStageId")
636
+ def waf_stage_id(self) -> pulumi.Output[_builtins.str]:
637
+ """
638
+ The WAF stage ID the TLS stage will be linked to. Only one of `backend_stage_id`, `cache_stage_id`, `route_stage_id` and `waf_stage_id` should be specified.
639
+ """
640
+ return pulumi.get(self, "waf_stage_id")
641
+