pulumiverse-scaleway 1.35.0a1759824076__py3-none-any.whl → 1.35.0a1760445454__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (499) hide show
  1. pulumiverse_scaleway/__init__.py +1 -1
  2. pulumiverse_scaleway/_inputs.py +2711 -2712
  3. pulumiverse_scaleway/account/__init__.py +1 -1
  4. pulumiverse_scaleway/account/get_availability_zones.py +11 -12
  5. pulumiverse_scaleway/account/get_project.py +27 -28
  6. pulumiverse_scaleway/account/get_projects.py +18 -19
  7. pulumiverse_scaleway/account/get_ssh_key.py +33 -34
  8. pulumiverse_scaleway/account/outputs.py +25 -26
  9. pulumiverse_scaleway/account/project.py +70 -71
  10. pulumiverse_scaleway/account/ssh_key.py +105 -106
  11. pulumiverse_scaleway/account_project.py +70 -71
  12. pulumiverse_scaleway/account_ssh_key.py +105 -106
  13. pulumiverse_scaleway/apple_silicon_server.py +216 -217
  14. pulumiverse_scaleway/applesilicon/__init__.py +1 -1
  15. pulumiverse_scaleway/applesilicon/_inputs.py +50 -51
  16. pulumiverse_scaleway/applesilicon/outputs.py +34 -35
  17. pulumiverse_scaleway/applesilicon/server.py +216 -217
  18. pulumiverse_scaleway/autoscaling/__init__.py +1 -1
  19. pulumiverse_scaleway/autoscaling/_inputs.py +130 -131
  20. pulumiverse_scaleway/autoscaling/instance_group.py +127 -128
  21. pulumiverse_scaleway/autoscaling/instance_policy.py +140 -141
  22. pulumiverse_scaleway/autoscaling/instance_template.py +235 -236
  23. pulumiverse_scaleway/autoscaling/outputs.py +88 -89
  24. pulumiverse_scaleway/baremetal_server.py +350 -351
  25. pulumiverse_scaleway/billing/__init__.py +1 -1
  26. pulumiverse_scaleway/billing/get_consumptions.py +14 -15
  27. pulumiverse_scaleway/billing/get_invoices.py +24 -25
  28. pulumiverse_scaleway/billing/outputs.py +95 -96
  29. pulumiverse_scaleway/block/__init__.py +1 -1
  30. pulumiverse_scaleway/block/_inputs.py +25 -26
  31. pulumiverse_scaleway/block/get_snapshot.py +37 -38
  32. pulumiverse_scaleway/block/get_volume.py +37 -38
  33. pulumiverse_scaleway/block/outputs.py +33 -34
  34. pulumiverse_scaleway/block/snapshot.py +92 -93
  35. pulumiverse_scaleway/block/volume.py +137 -138
  36. pulumiverse_scaleway/block_snapshot.py +92 -93
  37. pulumiverse_scaleway/block_volume.py +137 -138
  38. pulumiverse_scaleway/cockpit.py +48 -49
  39. pulumiverse_scaleway/cockpit_alert_manager.py +64 -65
  40. pulumiverse_scaleway/cockpit_grafana_user.py +70 -71
  41. pulumiverse_scaleway/cockpit_source.py +140 -141
  42. pulumiverse_scaleway/cockpit_token.py +82 -83
  43. pulumiverse_scaleway/config/__init__.py +1 -1
  44. pulumiverse_scaleway/config/__init__.pyi +1 -2
  45. pulumiverse_scaleway/config/vars.py +9 -10
  46. pulumiverse_scaleway/container.py +476 -477
  47. pulumiverse_scaleway/container_cron.py +95 -96
  48. pulumiverse_scaleway/container_domain.py +61 -62
  49. pulumiverse_scaleway/container_namespace.py +181 -182
  50. pulumiverse_scaleway/container_token.py +95 -96
  51. pulumiverse_scaleway/container_trigger.py +75 -76
  52. pulumiverse_scaleway/containers/__init__.py +1 -1
  53. pulumiverse_scaleway/containers/_inputs.py +86 -87
  54. pulumiverse_scaleway/containers/container.py +476 -477
  55. pulumiverse_scaleway/containers/cron.py +95 -96
  56. pulumiverse_scaleway/containers/domain.py +61 -62
  57. pulumiverse_scaleway/containers/get_container.py +79 -80
  58. pulumiverse_scaleway/containers/get_namespace.py +45 -46
  59. pulumiverse_scaleway/containers/namespace.py +181 -182
  60. pulumiverse_scaleway/containers/outputs.py +83 -84
  61. pulumiverse_scaleway/containers/token.py +95 -96
  62. pulumiverse_scaleway/containers/trigger.py +75 -76
  63. pulumiverse_scaleway/database.py +79 -80
  64. pulumiverse_scaleway/database_acl.py +38 -39
  65. pulumiverse_scaleway/database_backup.py +122 -123
  66. pulumiverse_scaleway/database_instance.py +374 -375
  67. pulumiverse_scaleway/database_privilege.py +86 -87
  68. pulumiverse_scaleway/database_read_replica.py +58 -59
  69. pulumiverse_scaleway/database_user.py +86 -87
  70. pulumiverse_scaleway/databases/__init__.py +1 -1
  71. pulumiverse_scaleway/databases/_inputs.py +227 -228
  72. pulumiverse_scaleway/databases/acl.py +38 -39
  73. pulumiverse_scaleway/databases/database.py +79 -80
  74. pulumiverse_scaleway/databases/database_backup.py +122 -123
  75. pulumiverse_scaleway/databases/get_acl.py +16 -17
  76. pulumiverse_scaleway/databases/get_database.py +25 -26
  77. pulumiverse_scaleway/databases/get_database_backup.py +45 -46
  78. pulumiverse_scaleway/databases/get_instance.py +72 -73
  79. pulumiverse_scaleway/databases/get_privilege.py +29 -30
  80. pulumiverse_scaleway/databases/instance.py +374 -375
  81. pulumiverse_scaleway/databases/outputs.py +247 -248
  82. pulumiverse_scaleway/databases/privilege.py +86 -87
  83. pulumiverse_scaleway/databases/read_replica.py +58 -59
  84. pulumiverse_scaleway/databases/serverless_database.py +95 -96
  85. pulumiverse_scaleway/databases/snapshot.py +123 -124
  86. pulumiverse_scaleway/databases/user.py +86 -87
  87. pulumiverse_scaleway/domain/__init__.py +1 -1
  88. pulumiverse_scaleway/domain/_inputs.py +660 -661
  89. pulumiverse_scaleway/domain/get_record.py +51 -52
  90. pulumiverse_scaleway/domain/get_zone.py +33 -34
  91. pulumiverse_scaleway/domain/outputs.py +500 -501
  92. pulumiverse_scaleway/domain/record.py +150 -151
  93. pulumiverse_scaleway/domain/registration.py +121 -122
  94. pulumiverse_scaleway/domain/zone.py +106 -107
  95. pulumiverse_scaleway/domain_record.py +150 -151
  96. pulumiverse_scaleway/domain_zone.py +106 -107
  97. pulumiverse_scaleway/edge_services_backend_stage.py +59 -60
  98. pulumiverse_scaleway/edge_services_cache_stage.py +158 -159
  99. pulumiverse_scaleway/edge_services_dns_stage.py +130 -131
  100. pulumiverse_scaleway/edge_services_head_stage.py +35 -36
  101. pulumiverse_scaleway/edge_services_pipeline.py +79 -80
  102. pulumiverse_scaleway/edge_services_plan.py +35 -36
  103. pulumiverse_scaleway/edge_services_route_stage.py +73 -74
  104. pulumiverse_scaleway/edge_services_tls_stage.py +150 -151
  105. pulumiverse_scaleway/edge_services_waf_stage.py +104 -105
  106. pulumiverse_scaleway/elasticmetal/__init__.py +1 -1
  107. pulumiverse_scaleway/elasticmetal/_inputs.py +146 -147
  108. pulumiverse_scaleway/elasticmetal/get_ip.py +41 -42
  109. pulumiverse_scaleway/elasticmetal/get_ips.py +30 -31
  110. pulumiverse_scaleway/elasticmetal/get_offer.py +40 -41
  111. pulumiverse_scaleway/elasticmetal/get_option.py +23 -24
  112. pulumiverse_scaleway/elasticmetal/get_os.py +27 -28
  113. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +35 -36
  114. pulumiverse_scaleway/elasticmetal/get_server.py +69 -70
  115. pulumiverse_scaleway/elasticmetal/ip.py +165 -166
  116. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +105 -106
  117. pulumiverse_scaleway/elasticmetal/outputs.py +312 -312
  118. pulumiverse_scaleway/elasticmetal/server.py +350 -351
  119. pulumiverse_scaleway/file_filesystem.py +131 -132
  120. pulumiverse_scaleway/flexible_ip.py +165 -166
  121. pulumiverse_scaleway/flexible_ip_mac_address.py +105 -106
  122. pulumiverse_scaleway/function.py +381 -382
  123. pulumiverse_scaleway/function_cron.py +95 -96
  124. pulumiverse_scaleway/function_domain.py +61 -62
  125. pulumiverse_scaleway/function_namespace.py +164 -165
  126. pulumiverse_scaleway/function_token.py +95 -96
  127. pulumiverse_scaleway/function_trigger.py +75 -76
  128. pulumiverse_scaleway/functions/__init__.py +1 -1
  129. pulumiverse_scaleway/functions/_inputs.py +49 -50
  130. pulumiverse_scaleway/functions/cron.py +95 -96
  131. pulumiverse_scaleway/functions/domain.py +61 -62
  132. pulumiverse_scaleway/functions/function.py +381 -382
  133. pulumiverse_scaleway/functions/get_function.py +73 -74
  134. pulumiverse_scaleway/functions/get_namespace.py +43 -44
  135. pulumiverse_scaleway/functions/namespace.py +164 -165
  136. pulumiverse_scaleway/functions/outputs.py +33 -34
  137. pulumiverse_scaleway/functions/token.py +95 -96
  138. pulumiverse_scaleway/functions/trigger.py +75 -76
  139. pulumiverse_scaleway/get_account_project.py +27 -28
  140. pulumiverse_scaleway/get_account_ssh_key.py +33 -34
  141. pulumiverse_scaleway/get_availability_zones.py +11 -12
  142. pulumiverse_scaleway/get_baremetal_offer.py +40 -41
  143. pulumiverse_scaleway/get_baremetal_option.py +23 -24
  144. pulumiverse_scaleway/get_baremetal_os.py +27 -28
  145. pulumiverse_scaleway/get_baremetal_server.py +69 -70
  146. pulumiverse_scaleway/get_billing_consumptions.py +14 -15
  147. pulumiverse_scaleway/get_billing_invoices.py +24 -25
  148. pulumiverse_scaleway/get_block_snapshot.py +37 -38
  149. pulumiverse_scaleway/get_block_volume.py +37 -38
  150. pulumiverse_scaleway/get_cockpit.py +15 -16
  151. pulumiverse_scaleway/get_cockpit_source.py +49 -50
  152. pulumiverse_scaleway/get_config.py +23 -24
  153. pulumiverse_scaleway/get_container.py +79 -80
  154. pulumiverse_scaleway/get_container_namespace.py +45 -46
  155. pulumiverse_scaleway/get_database.py +25 -26
  156. pulumiverse_scaleway/get_database_acl.py +16 -17
  157. pulumiverse_scaleway/get_database_backup.py +45 -46
  158. pulumiverse_scaleway/get_database_instance.py +72 -73
  159. pulumiverse_scaleway/get_database_privilege.py +29 -30
  160. pulumiverse_scaleway/get_domain_record.py +51 -52
  161. pulumiverse_scaleway/get_domain_zone.py +33 -34
  162. pulumiverse_scaleway/get_flexible_ip.py +41 -42
  163. pulumiverse_scaleway/get_flexible_ips.py +30 -31
  164. pulumiverse_scaleway/get_function.py +73 -74
  165. pulumiverse_scaleway/get_function_namespace.py +43 -44
  166. pulumiverse_scaleway/get_iam_api_key.py +27 -28
  167. pulumiverse_scaleway/get_iam_application.py +31 -32
  168. pulumiverse_scaleway/get_iam_group.py +35 -36
  169. pulumiverse_scaleway/get_iam_ssh_key.py +33 -34
  170. pulumiverse_scaleway/get_iam_user.py +27 -28
  171. pulumiverse_scaleway/get_instance_image.py +57 -58
  172. pulumiverse_scaleway/get_instance_ip.py +29 -30
  173. pulumiverse_scaleway/get_instance_placement_group.py +37 -38
  174. pulumiverse_scaleway/get_instance_private_nic.py +40 -41
  175. pulumiverse_scaleway/get_instance_security_group.py +45 -46
  176. pulumiverse_scaleway/get_instance_server.py +81 -82
  177. pulumiverse_scaleway/get_instance_servers.py +30 -31
  178. pulumiverse_scaleway/get_instance_snapshot.py +40 -41
  179. pulumiverse_scaleway/get_instance_volume.py +41 -42
  180. pulumiverse_scaleway/get_iot_device.py +45 -46
  181. pulumiverse_scaleway/get_iot_hub.py +59 -60
  182. pulumiverse_scaleway/get_ipam_ip.py +64 -65
  183. pulumiverse_scaleway/get_ipam_ips.py +55 -56
  184. pulumiverse_scaleway/get_k8s_version.py +21 -22
  185. pulumiverse_scaleway/get_kubernetes_cluster.py +63 -64
  186. pulumiverse_scaleway/get_kubernetes_node_pool.py +75 -76
  187. pulumiverse_scaleway/get_lb_acls.py +28 -29
  188. pulumiverse_scaleway/get_lb_backend.py +74 -75
  189. pulumiverse_scaleway/get_lb_backends.py +28 -29
  190. pulumiverse_scaleway/get_lb_frontend.py +44 -45
  191. pulumiverse_scaleway/get_lb_frontends.py +28 -29
  192. pulumiverse_scaleway/get_lb_ips.py +36 -37
  193. pulumiverse_scaleway/get_lb_route.py +25 -26
  194. pulumiverse_scaleway/get_lb_routes.py +22 -23
  195. pulumiverse_scaleway/get_lbs.py +30 -31
  196. pulumiverse_scaleway/get_loadbalancer.py +55 -56
  197. pulumiverse_scaleway/get_loadbalancer_certificate.py +35 -36
  198. pulumiverse_scaleway/get_loadbalancer_ip.py +39 -40
  199. pulumiverse_scaleway/get_marketplace_image.py +27 -28
  200. pulumiverse_scaleway/get_mnq_sns.py +17 -18
  201. pulumiverse_scaleway/get_mnq_sqs.py +17 -18
  202. pulumiverse_scaleway/get_mongo_db_instance.py +62 -63
  203. pulumiverse_scaleway/get_object_bucket.py +34 -35
  204. pulumiverse_scaleway/get_object_bucket_policy.py +21 -22
  205. pulumiverse_scaleway/get_redis_cluster.py +53 -54
  206. pulumiverse_scaleway/get_registry_image.py +47 -48
  207. pulumiverse_scaleway/get_registry_image_tag.py +43 -44
  208. pulumiverse_scaleway/get_registry_namespace.py +35 -36
  209. pulumiverse_scaleway/get_secret.py +57 -58
  210. pulumiverse_scaleway/get_secret_version.py +45 -46
  211. pulumiverse_scaleway/get_tem_domain.py +102 -70
  212. pulumiverse_scaleway/get_vpc.py +47 -48
  213. pulumiverse_scaleway/get_vpc_gateway_network.py +43 -44
  214. pulumiverse_scaleway/get_vpc_private_network.py +47 -48
  215. pulumiverse_scaleway/get_vpc_public_gateway.py +55 -56
  216. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +43 -44
  217. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +43 -44
  218. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +23 -24
  219. pulumiverse_scaleway/get_vpc_public_pat_rule.py +31 -32
  220. pulumiverse_scaleway/get_vpc_routes.py +46 -47
  221. pulumiverse_scaleway/get_vpcs.py +30 -31
  222. pulumiverse_scaleway/get_web_host_offer.py +33 -34
  223. pulumiverse_scaleway/get_webhosting.py +57 -58
  224. pulumiverse_scaleway/hosting/__init__.py +1 -1
  225. pulumiverse_scaleway/hosting/_inputs.py +80 -81
  226. pulumiverse_scaleway/hosting/get_hosting.py +57 -58
  227. pulumiverse_scaleway/hosting/get_offer.py +33 -34
  228. pulumiverse_scaleway/hosting/hosting.py +209 -210
  229. pulumiverse_scaleway/hosting/outputs.py +211 -212
  230. pulumiverse_scaleway/iam/__init__.py +1 -1
  231. pulumiverse_scaleway/iam/_inputs.py +25 -26
  232. pulumiverse_scaleway/iam/api_key.py +140 -141
  233. pulumiverse_scaleway/iam/application.py +96 -97
  234. pulumiverse_scaleway/iam/get_api_key.py +27 -28
  235. pulumiverse_scaleway/iam/get_application.py +31 -32
  236. pulumiverse_scaleway/iam/get_group.py +35 -36
  237. pulumiverse_scaleway/iam/get_ssh_key.py +33 -34
  238. pulumiverse_scaleway/iam/get_user.py +27 -28
  239. pulumiverse_scaleway/iam/group.py +138 -139
  240. pulumiverse_scaleway/iam/group_membership.py +52 -53
  241. pulumiverse_scaleway/iam/outputs.py +17 -18
  242. pulumiverse_scaleway/iam/policy.py +167 -168
  243. pulumiverse_scaleway/iam/ssh_key.py +105 -106
  244. pulumiverse_scaleway/iam/user.py +269 -270
  245. pulumiverse_scaleway/iam_api_key.py +140 -141
  246. pulumiverse_scaleway/iam_application.py +96 -97
  247. pulumiverse_scaleway/iam_group.py +138 -139
  248. pulumiverse_scaleway/iam_group_membership.py +52 -53
  249. pulumiverse_scaleway/iam_policy.py +167 -168
  250. pulumiverse_scaleway/iam_ssh_key.py +105 -106
  251. pulumiverse_scaleway/iam_user.py +269 -270
  252. pulumiverse_scaleway/inference/__init__.py +1 -1
  253. pulumiverse_scaleway/inference/_inputs.py +86 -87
  254. pulumiverse_scaleway/inference/deployment.py +225 -226
  255. pulumiverse_scaleway/inference/get_model.py +42 -43
  256. pulumiverse_scaleway/inference/model.py +160 -161
  257. pulumiverse_scaleway/inference/outputs.py +75 -76
  258. pulumiverse_scaleway/inference_deployment.py +225 -226
  259. pulumiverse_scaleway/instance/__init__.py +2 -1
  260. pulumiverse_scaleway/instance/_inputs.py +381 -382
  261. pulumiverse_scaleway/instance/get_image.py +57 -58
  262. pulumiverse_scaleway/instance/get_ip.py +29 -30
  263. pulumiverse_scaleway/instance/get_placement_group.py +37 -38
  264. pulumiverse_scaleway/instance/get_private_nic.py +40 -41
  265. pulumiverse_scaleway/instance/get_security_group.py +45 -46
  266. pulumiverse_scaleway/instance/get_server.py +81 -82
  267. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  268. pulumiverse_scaleway/instance/get_servers.py +30 -31
  269. pulumiverse_scaleway/instance/get_snapshot.py +40 -41
  270. pulumiverse_scaleway/instance/get_volume.py +41 -42
  271. pulumiverse_scaleway/instance/image.py +184 -185
  272. pulumiverse_scaleway/instance/ip.py +114 -115
  273. pulumiverse_scaleway/instance/ip_reverse_dns.py +52 -53
  274. pulumiverse_scaleway/instance/outputs.py +660 -515
  275. pulumiverse_scaleway/instance/placement_group.py +121 -122
  276. pulumiverse_scaleway/instance/private_nic.py +115 -116
  277. pulumiverse_scaleway/instance/security_group.py +186 -187
  278. pulumiverse_scaleway/instance/security_group_rules.py +24 -25
  279. pulumiverse_scaleway/instance/server.py +433 -434
  280. pulumiverse_scaleway/instance/snapshot.py +133 -162
  281. pulumiverse_scaleway/instance/user_data.py +69 -70
  282. pulumiverse_scaleway/instance/volume.py +155 -177
  283. pulumiverse_scaleway/instance_image.py +184 -185
  284. pulumiverse_scaleway/instance_ip.py +114 -115
  285. pulumiverse_scaleway/instance_ip_reverse_dns.py +52 -53
  286. pulumiverse_scaleway/instance_placement_group.py +121 -122
  287. pulumiverse_scaleway/instance_private_nic.py +115 -116
  288. pulumiverse_scaleway/instance_security_group.py +186 -187
  289. pulumiverse_scaleway/instance_security_group_rules.py +24 -25
  290. pulumiverse_scaleway/instance_server.py +433 -434
  291. pulumiverse_scaleway/instance_snapshot.py +133 -162
  292. pulumiverse_scaleway/instance_user_data.py +69 -70
  293. pulumiverse_scaleway/instance_volume.py +155 -177
  294. pulumiverse_scaleway/iot/__init__.py +1 -1
  295. pulumiverse_scaleway/iot/_inputs.py +118 -119
  296. pulumiverse_scaleway/iot/device.py +154 -155
  297. pulumiverse_scaleway/iot/get_device.py +45 -46
  298. pulumiverse_scaleway/iot/get_hub.py +59 -60
  299. pulumiverse_scaleway/iot/hub.py +252 -253
  300. pulumiverse_scaleway/iot/network.py +113 -114
  301. pulumiverse_scaleway/iot/outputs.py +106 -107
  302. pulumiverse_scaleway/iot/route.py +87 -88
  303. pulumiverse_scaleway/iot_device.py +154 -155
  304. pulumiverse_scaleway/iot_hub.py +252 -253
  305. pulumiverse_scaleway/iot_network.py +113 -114
  306. pulumiverse_scaleway/iot_route.py +87 -88
  307. pulumiverse_scaleway/ipam/__init__.py +1 -1
  308. pulumiverse_scaleway/ipam/_inputs.py +103 -104
  309. pulumiverse_scaleway/ipam/get_ip.py +64 -65
  310. pulumiverse_scaleway/ipam/get_ips.py +55 -56
  311. pulumiverse_scaleway/ipam/ip.py +123 -124
  312. pulumiverse_scaleway/ipam/ip_reverse_dns.py +69 -70
  313. pulumiverse_scaleway/ipam/outputs.py +119 -120
  314. pulumiverse_scaleway/ipam_ip.py +123 -124
  315. pulumiverse_scaleway/ipam_ip_reverse_dns.py +69 -70
  316. pulumiverse_scaleway/job/__init__.py +1 -1
  317. pulumiverse_scaleway/job/_inputs.py +44 -45
  318. pulumiverse_scaleway/job/definition.py +177 -178
  319. pulumiverse_scaleway/job/outputs.py +30 -31
  320. pulumiverse_scaleway/job_definition.py +177 -178
  321. pulumiverse_scaleway/key_manager_key.py +203 -204
  322. pulumiverse_scaleway/kubernetes/__init__.py +1 -1
  323. pulumiverse_scaleway/kubernetes/_inputs.py +227 -228
  324. pulumiverse_scaleway/kubernetes/acl.py +55 -56
  325. pulumiverse_scaleway/kubernetes/cluster.py +296 -297
  326. pulumiverse_scaleway/kubernetes/get_cluster.py +63 -64
  327. pulumiverse_scaleway/kubernetes/get_pool.py +75 -76
  328. pulumiverse_scaleway/kubernetes/get_version.py +21 -22
  329. pulumiverse_scaleway/kubernetes/outputs.py +288 -289
  330. pulumiverse_scaleway/kubernetes/pool.py +374 -375
  331. pulumiverse_scaleway/kubernetes_cluster.py +296 -297
  332. pulumiverse_scaleway/kubernetes_node_pool.py +374 -375
  333. pulumiverse_scaleway/loadbalancer.py +246 -247
  334. pulumiverse_scaleway/loadbalancer_acl.py +93 -94
  335. pulumiverse_scaleway/loadbalancer_backend.py +493 -487
  336. pulumiverse_scaleway/loadbalancer_certificate.py +95 -96
  337. pulumiverse_scaleway/loadbalancer_frontend.py +201 -202
  338. pulumiverse_scaleway/loadbalancer_ip.py +122 -123
  339. pulumiverse_scaleway/loadbalancer_route.py +121 -122
  340. pulumiverse_scaleway/loadbalancers/__init__.py +1 -1
  341. pulumiverse_scaleway/loadbalancers/_inputs.py +273 -274
  342. pulumiverse_scaleway/loadbalancers/acl.py +93 -94
  343. pulumiverse_scaleway/loadbalancers/backend.py +493 -487
  344. pulumiverse_scaleway/loadbalancers/certificate.py +95 -96
  345. pulumiverse_scaleway/loadbalancers/frontend.py +201 -202
  346. pulumiverse_scaleway/loadbalancers/get_acls.py +28 -29
  347. pulumiverse_scaleway/loadbalancers/get_backend.py +74 -75
  348. pulumiverse_scaleway/loadbalancers/get_backends.py +28 -29
  349. pulumiverse_scaleway/loadbalancers/get_certificate.py +35 -36
  350. pulumiverse_scaleway/loadbalancers/get_frontend.py +44 -45
  351. pulumiverse_scaleway/loadbalancers/get_frontends.py +28 -29
  352. pulumiverse_scaleway/loadbalancers/get_ip.py +39 -40
  353. pulumiverse_scaleway/loadbalancers/get_ips.py +36 -37
  354. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +55 -56
  355. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +30 -31
  356. pulumiverse_scaleway/loadbalancers/get_route.py +25 -26
  357. pulumiverse_scaleway/loadbalancers/get_routes.py +22 -23
  358. pulumiverse_scaleway/loadbalancers/ip.py +122 -123
  359. pulumiverse_scaleway/loadbalancers/load_balancer.py +246 -247
  360. pulumiverse_scaleway/loadbalancers/outputs.py +748 -745
  361. pulumiverse_scaleway/loadbalancers/route.py +121 -122
  362. pulumiverse_scaleway/mnq/__init__.py +1 -1
  363. pulumiverse_scaleway/mnq/_inputs.py +49 -50
  364. pulumiverse_scaleway/mnq/get_sns.py +17 -18
  365. pulumiverse_scaleway/mnq/get_sqs.py +17 -18
  366. pulumiverse_scaleway/mnq/nats_account.py +61 -62
  367. pulumiverse_scaleway/mnq/nats_credentials.py +61 -62
  368. pulumiverse_scaleway/mnq/outputs.py +33 -34
  369. pulumiverse_scaleway/mnq/sns.py +44 -45
  370. pulumiverse_scaleway/mnq/sns_credentials.py +73 -74
  371. pulumiverse_scaleway/mnq/sns_topic.py +172 -173
  372. pulumiverse_scaleway/mnq/sns_topic_subscription.py +180 -181
  373. pulumiverse_scaleway/mnq/sqs.py +44 -45
  374. pulumiverse_scaleway/mnq/sqs_credentials.py +73 -74
  375. pulumiverse_scaleway/mnq/sqs_queue.py +243 -244
  376. pulumiverse_scaleway/mnq_nats_account.py +61 -62
  377. pulumiverse_scaleway/mnq_nats_credentials.py +61 -62
  378. pulumiverse_scaleway/mnq_sns.py +44 -45
  379. pulumiverse_scaleway/mnq_sns_credentials.py +73 -74
  380. pulumiverse_scaleway/mnq_sns_topic.py +172 -173
  381. pulumiverse_scaleway/mnq_sns_topic_subscription.py +180 -181
  382. pulumiverse_scaleway/mnq_sqs.py +44 -45
  383. pulumiverse_scaleway/mnq_sqs_credentials.py +73 -74
  384. pulumiverse_scaleway/mnq_sqs_queue.py +243 -244
  385. pulumiverse_scaleway/mongo_db_instance.py +309 -310
  386. pulumiverse_scaleway/mongo_db_snapshot.py +123 -124
  387. pulumiverse_scaleway/mongodb/__init__.py +1 -1
  388. pulumiverse_scaleway/mongodb/_inputs.py +80 -81
  389. pulumiverse_scaleway/mongodb/get_instance.py +62 -63
  390. pulumiverse_scaleway/mongodb/instance.py +309 -310
  391. pulumiverse_scaleway/mongodb/outputs.py +95 -96
  392. pulumiverse_scaleway/mongodb/snapshot.py +123 -124
  393. pulumiverse_scaleway/mongodb/user.py +72 -73
  394. pulumiverse_scaleway/network/__init__.py +1 -1
  395. pulumiverse_scaleway/network/_inputs.py +166 -167
  396. pulumiverse_scaleway/network/acl.py +72 -73
  397. pulumiverse_scaleway/network/gateway_network.py +179 -180
  398. pulumiverse_scaleway/network/get_gateway_network.py +43 -44
  399. pulumiverse_scaleway/network/get_private_network.py +47 -48
  400. pulumiverse_scaleway/network/get_public_gateway.py +55 -56
  401. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +43 -44
  402. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +43 -44
  403. pulumiverse_scaleway/network/get_public_gateway_ip.py +23 -24
  404. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +31 -32
  405. pulumiverse_scaleway/network/get_routes.py +46 -47
  406. pulumiverse_scaleway/network/get_vpc.py +47 -48
  407. pulumiverse_scaleway/network/get_vpcs.py +30 -31
  408. pulumiverse_scaleway/network/outputs.py +288 -287
  409. pulumiverse_scaleway/network/private_network.py +170 -171
  410. pulumiverse_scaleway/network/public_gateway.py +259 -260
  411. pulumiverse_scaleway/network/public_gateway_dhcp.py +283 -284
  412. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +105 -106
  413. pulumiverse_scaleway/network/public_gateway_ip.py +105 -106
  414. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +52 -53
  415. pulumiverse_scaleway/network/public_gateway_pat_rule.py +130 -131
  416. pulumiverse_scaleway/network/route.py +138 -139
  417. pulumiverse_scaleway/network/vpc.py +139 -140
  418. pulumiverse_scaleway/object/__init__.py +1 -1
  419. pulumiverse_scaleway/object/_inputs.py +164 -165
  420. pulumiverse_scaleway/object/bucket.py +147 -148
  421. pulumiverse_scaleway/object/bucket_acl.py +89 -90
  422. pulumiverse_scaleway/object/bucket_lock_configuration.py +55 -56
  423. pulumiverse_scaleway/object/bucket_policy.py +69 -70
  424. pulumiverse_scaleway/object/bucket_website_configuration.py +76 -77
  425. pulumiverse_scaleway/object/get_bucket.py +34 -35
  426. pulumiverse_scaleway/object/get_bucket_policy.py +21 -22
  427. pulumiverse_scaleway/object/item.py +239 -240
  428. pulumiverse_scaleway/object/outputs.py +171 -172
  429. pulumiverse_scaleway/object_bucket.py +147 -148
  430. pulumiverse_scaleway/object_bucket_acl.py +89 -90
  431. pulumiverse_scaleway/object_bucket_lock_configuration.py +55 -56
  432. pulumiverse_scaleway/object_bucket_policy.py +69 -70
  433. pulumiverse_scaleway/object_bucket_website_configuration.py +76 -77
  434. pulumiverse_scaleway/object_item.py +239 -240
  435. pulumiverse_scaleway/observability/__init__.py +1 -1
  436. pulumiverse_scaleway/observability/_inputs.py +105 -106
  437. pulumiverse_scaleway/observability/alert_manager.py +64 -65
  438. pulumiverse_scaleway/observability/cockpit.py +48 -49
  439. pulumiverse_scaleway/observability/get_instance.py +15 -16
  440. pulumiverse_scaleway/observability/get_source.py +49 -50
  441. pulumiverse_scaleway/observability/get_sources.py +46 -47
  442. pulumiverse_scaleway/observability/grafana_user.py +70 -71
  443. pulumiverse_scaleway/observability/outputs.py +149 -150
  444. pulumiverse_scaleway/observability/source.py +140 -141
  445. pulumiverse_scaleway/observability/token.py +82 -83
  446. pulumiverse_scaleway/outputs.py +3886 -3879
  447. pulumiverse_scaleway/provider.py +82 -83
  448. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  449. pulumiverse_scaleway/rdb_snapshot.py +123 -124
  450. pulumiverse_scaleway/redis/__init__.py +1 -1
  451. pulumiverse_scaleway/redis/_inputs.py +86 -87
  452. pulumiverse_scaleway/redis/cluster.py +227 -228
  453. pulumiverse_scaleway/redis/get_cluster.py +53 -54
  454. pulumiverse_scaleway/redis/outputs.py +115 -116
  455. pulumiverse_scaleway/redis_cluster.py +227 -228
  456. pulumiverse_scaleway/registry/__init__.py +1 -1
  457. pulumiverse_scaleway/registry/get_image.py +47 -48
  458. pulumiverse_scaleway/registry/get_image_tag.py +43 -44
  459. pulumiverse_scaleway/registry/get_namespace.py +35 -36
  460. pulumiverse_scaleway/registry/namespace.py +104 -105
  461. pulumiverse_scaleway/registry_namespace.py +104 -105
  462. pulumiverse_scaleway/sdb_database.py +95 -96
  463. pulumiverse_scaleway/secret.py +178 -179
  464. pulumiverse_scaleway/secret_version.py +105 -106
  465. pulumiverse_scaleway/secrets/__init__.py +1 -1
  466. pulumiverse_scaleway/secrets/_inputs.py +62 -63
  467. pulumiverse_scaleway/secrets/get_secret.py +57 -58
  468. pulumiverse_scaleway/secrets/get_version.py +45 -46
  469. pulumiverse_scaleway/secrets/outputs.py +83 -84
  470. pulumiverse_scaleway/secrets/secret.py +178 -179
  471. pulumiverse_scaleway/secrets/version.py +105 -106
  472. pulumiverse_scaleway/tem/__init__.py +1 -1
  473. pulumiverse_scaleway/tem/_inputs.py +32 -33
  474. pulumiverse_scaleway/tem/blocked_list.py +103 -104
  475. pulumiverse_scaleway/tem/domain.py +340 -257
  476. pulumiverse_scaleway/tem/domain_validation.py +61 -62
  477. pulumiverse_scaleway/tem/get_domain.py +102 -70
  478. pulumiverse_scaleway/tem/get_offer_subscription.py +33 -34
  479. pulumiverse_scaleway/tem/outputs.py +43 -44
  480. pulumiverse_scaleway/tem/webhook.py +130 -131
  481. pulumiverse_scaleway/tem_domain.py +340 -257
  482. pulumiverse_scaleway/tem_domain_validation.py +61 -62
  483. pulumiverse_scaleway/tem_webhook.py +130 -131
  484. pulumiverse_scaleway/vpc.py +139 -140
  485. pulumiverse_scaleway/vpc_gateway_network.py +179 -180
  486. pulumiverse_scaleway/vpc_private_network.py +170 -171
  487. pulumiverse_scaleway/vpc_public_gateway.py +259 -260
  488. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +283 -284
  489. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +105 -106
  490. pulumiverse_scaleway/vpc_public_gateway_ip.py +105 -106
  491. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +52 -53
  492. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +130 -131
  493. pulumiverse_scaleway/vpc_route.py +138 -139
  494. pulumiverse_scaleway/webhosting.py +209 -210
  495. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/METADATA +1 -1
  496. pulumiverse_scaleway-1.35.0a1760445454.dist-info/RECORD +500 -0
  497. pulumiverse_scaleway-1.35.0a1759824076.dist-info/RECORD +0 -499
  498. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.35.0a1759824076.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,24 +21,24 @@ __all__ = ['EdgeServicesTlsStageArgs', 'EdgeServicesTlsStage']
22
21
  @pulumi.input_type
23
22
  class EdgeServicesTlsStageArgs:
24
23
  def __init__(__self__, *,
25
- pipeline_id: pulumi.Input[builtins.str],
26
- backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
27
- cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
28
- managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
29
- project_id: Optional[pulumi.Input[builtins.str]] = None,
30
- route_stage_id: Optional[pulumi.Input[builtins.str]] = 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,
31
30
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
32
- waf_stage_id: Optional[pulumi.Input[builtins.str]] = None):
31
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None):
33
32
  """
34
33
  The set of arguments for constructing a EdgeServicesTlsStage resource.
35
- :param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
36
- :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.
37
- :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.
38
- :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.
39
- :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
40
- :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.
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.
41
40
  :param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
42
- :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.
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.
43
42
  """
44
43
  pulumi.set(__self__, "pipeline_id", pipeline_id)
45
44
  if backend_stage_id is not None:
@@ -57,79 +56,79 @@ class EdgeServicesTlsStageArgs:
57
56
  if waf_stage_id is not None:
58
57
  pulumi.set(__self__, "waf_stage_id", waf_stage_id)
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter(name="pipelineId")
62
- def pipeline_id(self) -> pulumi.Input[builtins.str]:
61
+ def pipeline_id(self) -> pulumi.Input[_builtins.str]:
63
62
  """
64
63
  The ID of the pipeline.
65
64
  """
66
65
  return pulumi.get(self, "pipeline_id")
67
66
 
68
67
  @pipeline_id.setter
69
- def pipeline_id(self, value: pulumi.Input[builtins.str]):
68
+ def pipeline_id(self, value: pulumi.Input[_builtins.str]):
70
69
  pulumi.set(self, "pipeline_id", value)
71
70
 
72
- @property
71
+ @_builtins.property
73
72
  @pulumi.getter(name="backendStageId")
74
- def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
73
+ def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
75
74
  """
76
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.
77
76
  """
78
77
  return pulumi.get(self, "backend_stage_id")
79
78
 
80
79
  @backend_stage_id.setter
81
- def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
80
+ def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
82
81
  pulumi.set(self, "backend_stage_id", value)
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter(name="cacheStageId")
86
- def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
85
+ def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
87
86
  """
88
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.
89
88
  """
90
89
  return pulumi.get(self, "cache_stage_id")
91
90
 
92
91
  @cache_stage_id.setter
93
- def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
92
+ def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
94
93
  pulumi.set(self, "cache_stage_id", value)
95
94
 
96
- @property
95
+ @_builtins.property
97
96
  @pulumi.getter(name="managedCertificate")
98
- def managed_certificate(self) -> Optional[pulumi.Input[builtins.bool]]:
97
+ def managed_certificate(self) -> Optional[pulumi.Input[_builtins.bool]]:
99
98
  """
100
99
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
101
100
  """
102
101
  return pulumi.get(self, "managed_certificate")
103
102
 
104
103
  @managed_certificate.setter
105
- def managed_certificate(self, value: Optional[pulumi.Input[builtins.bool]]):
104
+ def managed_certificate(self, value: Optional[pulumi.Input[_builtins.bool]]):
106
105
  pulumi.set(self, "managed_certificate", value)
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  @pulumi.getter(name="projectId")
110
- def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
109
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
111
110
  """
112
111
  `project_id`) The ID of the project the TLS stage is associated with.
113
112
  """
114
113
  return pulumi.get(self, "project_id")
115
114
 
116
115
  @project_id.setter
117
- def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
116
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
118
117
  pulumi.set(self, "project_id", value)
119
118
 
120
- @property
119
+ @_builtins.property
121
120
  @pulumi.getter(name="routeStageId")
122
- def route_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
121
+ def route_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
123
122
  """
124
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.
125
124
  """
126
125
  return pulumi.get(self, "route_stage_id")
127
126
 
128
127
  @route_stage_id.setter
129
- def route_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
128
+ def route_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
130
129
  pulumi.set(self, "route_stage_id", value)
131
130
 
132
- @property
131
+ @_builtins.property
133
132
  @pulumi.getter
134
133
  def secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]:
135
134
  """
@@ -141,46 +140,46 @@ class EdgeServicesTlsStageArgs:
141
140
  def secrets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]):
142
141
  pulumi.set(self, "secrets", value)
143
142
 
144
- @property
143
+ @_builtins.property
145
144
  @pulumi.getter(name="wafStageId")
146
- def waf_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
145
+ def waf_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
147
146
  """
148
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.
149
148
  """
150
149
  return pulumi.get(self, "waf_stage_id")
151
150
 
152
151
  @waf_stage_id.setter
153
- def waf_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
152
+ def waf_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
154
153
  pulumi.set(self, "waf_stage_id", value)
155
154
 
156
155
 
157
156
  @pulumi.input_type
158
157
  class _EdgeServicesTlsStageState:
159
158
  def __init__(__self__, *,
160
- backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
161
- cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
162
- certificate_expires_at: Optional[pulumi.Input[builtins.str]] = None,
163
- created_at: Optional[pulumi.Input[builtins.str]] = None,
164
- managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
165
- pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
166
- project_id: Optional[pulumi.Input[builtins.str]] = None,
167
- route_stage_id: Optional[pulumi.Input[builtins.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,
168
167
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]] = None,
169
- updated_at: Optional[pulumi.Input[builtins.str]] = None,
170
- waf_stage_id: Optional[pulumi.Input[builtins.str]] = None):
168
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
169
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None):
171
170
  """
172
171
  Input properties used for looking up and filtering EdgeServicesTlsStage resources.
173
- :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.
174
- :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.
175
- :param pulumi.Input[builtins.str] certificate_expires_at: The expiration date of the certificate.
176
- :param pulumi.Input[builtins.str] created_at: The date and time of the creation of the TLS stage.
177
- :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.
178
- :param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
179
- :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
180
- :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.
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.
181
180
  :param pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]] secrets: The TLS secrets.
182
- :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the TLS stage.
183
- :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.
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.
184
183
  """
185
184
  if backend_stage_id is not None:
186
185
  pulumi.set(__self__, "backend_stage_id", backend_stage_id)
@@ -205,103 +204,103 @@ class _EdgeServicesTlsStageState:
205
204
  if waf_stage_id is not None:
206
205
  pulumi.set(__self__, "waf_stage_id", waf_stage_id)
207
206
 
208
- @property
207
+ @_builtins.property
209
208
  @pulumi.getter(name="backendStageId")
210
- def backend_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
209
+ def backend_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
211
210
  """
212
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.
213
212
  """
214
213
  return pulumi.get(self, "backend_stage_id")
215
214
 
216
215
  @backend_stage_id.setter
217
- def backend_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
216
+ def backend_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
218
217
  pulumi.set(self, "backend_stage_id", value)
219
218
 
220
- @property
219
+ @_builtins.property
221
220
  @pulumi.getter(name="cacheStageId")
222
- def cache_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
221
+ def cache_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
223
222
  """
224
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.
225
224
  """
226
225
  return pulumi.get(self, "cache_stage_id")
227
226
 
228
227
  @cache_stage_id.setter
229
- def cache_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
228
+ def cache_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
230
229
  pulumi.set(self, "cache_stage_id", value)
231
230
 
232
- @property
231
+ @_builtins.property
233
232
  @pulumi.getter(name="certificateExpiresAt")
234
- def certificate_expires_at(self) -> Optional[pulumi.Input[builtins.str]]:
233
+ def certificate_expires_at(self) -> Optional[pulumi.Input[_builtins.str]]:
235
234
  """
236
235
  The expiration date of the certificate.
237
236
  """
238
237
  return pulumi.get(self, "certificate_expires_at")
239
238
 
240
239
  @certificate_expires_at.setter
241
- def certificate_expires_at(self, value: Optional[pulumi.Input[builtins.str]]):
240
+ def certificate_expires_at(self, value: Optional[pulumi.Input[_builtins.str]]):
242
241
  pulumi.set(self, "certificate_expires_at", value)
243
242
 
244
- @property
243
+ @_builtins.property
245
244
  @pulumi.getter(name="createdAt")
246
- def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
245
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
247
246
  """
248
247
  The date and time of the creation of the TLS stage.
249
248
  """
250
249
  return pulumi.get(self, "created_at")
251
250
 
252
251
  @created_at.setter
253
- def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
252
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
254
253
  pulumi.set(self, "created_at", value)
255
254
 
256
- @property
255
+ @_builtins.property
257
256
  @pulumi.getter(name="managedCertificate")
258
- def managed_certificate(self) -> Optional[pulumi.Input[builtins.bool]]:
257
+ def managed_certificate(self) -> Optional[pulumi.Input[_builtins.bool]]:
259
258
  """
260
259
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
261
260
  """
262
261
  return pulumi.get(self, "managed_certificate")
263
262
 
264
263
  @managed_certificate.setter
265
- def managed_certificate(self, value: Optional[pulumi.Input[builtins.bool]]):
264
+ def managed_certificate(self, value: Optional[pulumi.Input[_builtins.bool]]):
266
265
  pulumi.set(self, "managed_certificate", value)
267
266
 
268
- @property
267
+ @_builtins.property
269
268
  @pulumi.getter(name="pipelineId")
270
- def pipeline_id(self) -> Optional[pulumi.Input[builtins.str]]:
269
+ def pipeline_id(self) -> Optional[pulumi.Input[_builtins.str]]:
271
270
  """
272
271
  The ID of the pipeline.
273
272
  """
274
273
  return pulumi.get(self, "pipeline_id")
275
274
 
276
275
  @pipeline_id.setter
277
- def pipeline_id(self, value: Optional[pulumi.Input[builtins.str]]):
276
+ def pipeline_id(self, value: Optional[pulumi.Input[_builtins.str]]):
278
277
  pulumi.set(self, "pipeline_id", value)
279
278
 
280
- @property
279
+ @_builtins.property
281
280
  @pulumi.getter(name="projectId")
282
- def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
281
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
283
282
  """
284
283
  `project_id`) The ID of the project the TLS stage is associated with.
285
284
  """
286
285
  return pulumi.get(self, "project_id")
287
286
 
288
287
  @project_id.setter
289
- def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
288
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
290
289
  pulumi.set(self, "project_id", value)
291
290
 
292
- @property
291
+ @_builtins.property
293
292
  @pulumi.getter(name="routeStageId")
294
- def route_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
293
+ def route_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
295
294
  """
296
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.
297
296
  """
298
297
  return pulumi.get(self, "route_stage_id")
299
298
 
300
299
  @route_stage_id.setter
301
- def route_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
300
+ def route_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
302
301
  pulumi.set(self, "route_stage_id", value)
303
302
 
304
- @property
303
+ @_builtins.property
305
304
  @pulumi.getter
306
305
  def secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]:
307
306
  """
@@ -313,28 +312,28 @@ class _EdgeServicesTlsStageState:
313
312
  def secrets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EdgeServicesTlsStageSecretArgs']]]]):
314
313
  pulumi.set(self, "secrets", value)
315
314
 
316
- @property
315
+ @_builtins.property
317
316
  @pulumi.getter(name="updatedAt")
318
- def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
317
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
319
318
  """
320
319
  The date and time of the last update of the TLS stage.
321
320
  """
322
321
  return pulumi.get(self, "updated_at")
323
322
 
324
323
  @updated_at.setter
325
- def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
324
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
326
325
  pulumi.set(self, "updated_at", value)
327
326
 
328
- @property
327
+ @_builtins.property
329
328
  @pulumi.getter(name="wafStageId")
330
- def waf_stage_id(self) -> Optional[pulumi.Input[builtins.str]]:
329
+ def waf_stage_id(self) -> Optional[pulumi.Input[_builtins.str]]:
331
330
  """
332
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.
333
332
  """
334
333
  return pulumi.get(self, "waf_stage_id")
335
334
 
336
335
  @waf_stage_id.setter
337
- def waf_stage_id(self, value: Optional[pulumi.Input[builtins.str]]):
336
+ def waf_stage_id(self, value: Optional[pulumi.Input[_builtins.str]]):
338
337
  pulumi.set(self, "waf_stage_id", value)
339
338
 
340
339
 
@@ -344,14 +343,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
344
343
  def __init__(__self__,
345
344
  resource_name: str,
346
345
  opts: Optional[pulumi.ResourceOptions] = None,
347
- backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
348
- cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
349
- managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
350
- pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
351
- project_id: Optional[pulumi.Input[builtins.str]] = None,
352
- route_stage_id: Optional[pulumi.Input[builtins.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,
353
352
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
354
- waf_stage_id: Optional[pulumi.Input[builtins.str]] = None,
353
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
355
354
  __props__=None):
356
355
  """
357
356
  Creates and manages Scaleway Edge Services TLS Stages.
@@ -395,14 +394,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
395
394
 
396
395
  :param str resource_name: The name of the resource.
397
396
  :param pulumi.ResourceOptions opts: Options for the resource.
398
- :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.
399
- :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.
400
- :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.
401
- :param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
402
- :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
403
- :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.
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.
404
403
  :param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
405
- :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.
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.
406
405
  """
407
406
  ...
408
407
  @overload
@@ -465,14 +464,14 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
465
464
  def _internal_init(__self__,
466
465
  resource_name: str,
467
466
  opts: Optional[pulumi.ResourceOptions] = None,
468
- backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
469
- cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
470
- managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
471
- pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
472
- project_id: Optional[pulumi.Input[builtins.str]] = None,
473
- route_stage_id: Optional[pulumi.Input[builtins.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,
474
473
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
475
- waf_stage_id: Optional[pulumi.Input[builtins.str]] = None,
474
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None,
476
475
  __props__=None):
477
476
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
478
477
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -505,17 +504,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
505
504
  def get(resource_name: str,
506
505
  id: pulumi.Input[str],
507
506
  opts: Optional[pulumi.ResourceOptions] = None,
508
- backend_stage_id: Optional[pulumi.Input[builtins.str]] = None,
509
- cache_stage_id: Optional[pulumi.Input[builtins.str]] = None,
510
- certificate_expires_at: Optional[pulumi.Input[builtins.str]] = None,
511
- created_at: Optional[pulumi.Input[builtins.str]] = None,
512
- managed_certificate: Optional[pulumi.Input[builtins.bool]] = None,
513
- pipeline_id: Optional[pulumi.Input[builtins.str]] = None,
514
- project_id: Optional[pulumi.Input[builtins.str]] = None,
515
- route_stage_id: Optional[pulumi.Input[builtins.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,
516
515
  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]]] = None,
517
- updated_at: Optional[pulumi.Input[builtins.str]] = None,
518
- waf_stage_id: Optional[pulumi.Input[builtins.str]] = None) -> 'EdgeServicesTlsStage':
516
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None,
517
+ waf_stage_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'EdgeServicesTlsStage':
519
518
  """
520
519
  Get an existing EdgeServicesTlsStage resource's state with the given name, id, and optional extra
521
520
  properties used to qualify the lookup.
@@ -523,17 +522,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
523
522
  :param str resource_name: The unique name of the resulting resource.
524
523
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
525
524
  :param pulumi.ResourceOptions opts: Options for the resource.
526
- :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.
527
- :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.
528
- :param pulumi.Input[builtins.str] certificate_expires_at: The expiration date of the certificate.
529
- :param pulumi.Input[builtins.str] created_at: The date and time of the creation of the TLS stage.
530
- :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.
531
- :param pulumi.Input[builtins.str] pipeline_id: The ID of the pipeline.
532
- :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the TLS stage is associated with.
533
- :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.
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.
534
533
  :param pulumi.Input[Sequence[pulumi.Input[Union['EdgeServicesTlsStageSecretArgs', 'EdgeServicesTlsStageSecretArgsDict']]]] secrets: The TLS secrets.
535
- :param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the TLS stage.
536
- :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.
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.
537
536
  """
538
537
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
539
538
 
@@ -552,71 +551,71 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
552
551
  __props__.__dict__["waf_stage_id"] = waf_stage_id
553
552
  return EdgeServicesTlsStage(resource_name, opts=opts, __props__=__props__)
554
553
 
555
- @property
554
+ @_builtins.property
556
555
  @pulumi.getter(name="backendStageId")
557
- def backend_stage_id(self) -> pulumi.Output[builtins.str]:
556
+ def backend_stage_id(self) -> pulumi.Output[_builtins.str]:
558
557
  """
559
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.
560
559
  """
561
560
  return pulumi.get(self, "backend_stage_id")
562
561
 
563
- @property
562
+ @_builtins.property
564
563
  @pulumi.getter(name="cacheStageId")
565
- def cache_stage_id(self) -> pulumi.Output[builtins.str]:
564
+ def cache_stage_id(self) -> pulumi.Output[_builtins.str]:
566
565
  """
567
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.
568
567
  """
569
568
  return pulumi.get(self, "cache_stage_id")
570
569
 
571
- @property
570
+ @_builtins.property
572
571
  @pulumi.getter(name="certificateExpiresAt")
573
- def certificate_expires_at(self) -> pulumi.Output[builtins.str]:
572
+ def certificate_expires_at(self) -> pulumi.Output[_builtins.str]:
574
573
  """
575
574
  The expiration date of the certificate.
576
575
  """
577
576
  return pulumi.get(self, "certificate_expires_at")
578
577
 
579
- @property
578
+ @_builtins.property
580
579
  @pulumi.getter(name="createdAt")
581
- def created_at(self) -> pulumi.Output[builtins.str]:
580
+ def created_at(self) -> pulumi.Output[_builtins.str]:
582
581
  """
583
582
  The date and time of the creation of the TLS stage.
584
583
  """
585
584
  return pulumi.get(self, "created_at")
586
585
 
587
- @property
586
+ @_builtins.property
588
587
  @pulumi.getter(name="managedCertificate")
589
- def managed_certificate(self) -> pulumi.Output[builtins.bool]:
588
+ def managed_certificate(self) -> pulumi.Output[_builtins.bool]:
590
589
  """
591
590
  Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
592
591
  """
593
592
  return pulumi.get(self, "managed_certificate")
594
593
 
595
- @property
594
+ @_builtins.property
596
595
  @pulumi.getter(name="pipelineId")
597
- def pipeline_id(self) -> pulumi.Output[builtins.str]:
596
+ def pipeline_id(self) -> pulumi.Output[_builtins.str]:
598
597
  """
599
598
  The ID of the pipeline.
600
599
  """
601
600
  return pulumi.get(self, "pipeline_id")
602
601
 
603
- @property
602
+ @_builtins.property
604
603
  @pulumi.getter(name="projectId")
605
- def project_id(self) -> pulumi.Output[builtins.str]:
604
+ def project_id(self) -> pulumi.Output[_builtins.str]:
606
605
  """
607
606
  `project_id`) The ID of the project the TLS stage is associated with.
608
607
  """
609
608
  return pulumi.get(self, "project_id")
610
609
 
611
- @property
610
+ @_builtins.property
612
611
  @pulumi.getter(name="routeStageId")
613
- def route_stage_id(self) -> pulumi.Output[builtins.str]:
612
+ def route_stage_id(self) -> pulumi.Output[_builtins.str]:
614
613
  """
615
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.
616
615
  """
617
616
  return pulumi.get(self, "route_stage_id")
618
617
 
619
- @property
618
+ @_builtins.property
620
619
  @pulumi.getter
621
620
  def secrets(self) -> pulumi.Output[Sequence['outputs.EdgeServicesTlsStageSecret']]:
622
621
  """
@@ -624,17 +623,17 @@ class EdgeServicesTlsStage(pulumi.CustomResource):
624
623
  """
625
624
  return pulumi.get(self, "secrets")
626
625
 
627
- @property
626
+ @_builtins.property
628
627
  @pulumi.getter(name="updatedAt")
629
- def updated_at(self) -> pulumi.Output[builtins.str]:
628
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
630
629
  """
631
630
  The date and time of the last update of the TLS stage.
632
631
  """
633
632
  return pulumi.get(self, "updated_at")
634
633
 
635
- @property
634
+ @_builtins.property
636
635
  @pulumi.getter(name="wafStageId")
637
- def waf_stage_id(self) -> pulumi.Output[builtins.str]:
636
+ def waf_stage_id(self) -> pulumi.Output[_builtins.str]:
638
637
  """
639
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.
640
639
  """