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,20 @@ __all__ = ['TemDomainArgs', 'TemDomain']
21
21
  @pulumi.input_type
22
22
  class TemDomainArgs:
23
23
  def __init__(__self__, *,
24
- accept_tos: pulumi.Input[bool],
25
- autoconfig: Optional[pulumi.Input[bool]] = None,
26
- name: Optional[pulumi.Input[str]] = None,
27
- project_id: Optional[pulumi.Input[str]] = None,
28
- region: Optional[pulumi.Input[str]] = None):
24
+ accept_tos: pulumi.Input[_builtins.bool],
25
+ autoconfig: Optional[pulumi.Input[_builtins.bool]] = None,
26
+ name: Optional[pulumi.Input[_builtins.str]] = None,
27
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
28
+ region: Optional[pulumi.Input[_builtins.str]] = None):
29
29
  """
30
30
  The set of arguments for constructing a TemDomain resource.
31
- :param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
31
+ :param pulumi.Input[_builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
32
32
  > **Important:** This attribute must be set to `true`.
33
- :param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
34
- :param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
33
+ :param pulumi.Input[_builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
34
+ :param pulumi.Input[_builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
35
35
  > **Important:** Updates to `name` will recreate the domain.
36
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
37
- :param pulumi.Input[str] region: `region`). The region in which the domain should be created.
36
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
37
+ :param pulumi.Input[_builtins.str] region: `region`). The region in which the domain should be created.
38
38
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
39
39
  """
40
40
  pulumi.set(__self__, "accept_tos", accept_tos)
@@ -47,9 +47,9 @@ class TemDomainArgs:
47
47
  if region is not None:
48
48
  pulumi.set(__self__, "region", region)
49
49
 
50
- @property
50
+ @_builtins.property
51
51
  @pulumi.getter(name="acceptTos")
52
- def accept_tos(self) -> pulumi.Input[bool]:
52
+ def accept_tos(self) -> pulumi.Input[_builtins.bool]:
53
53
  """
54
54
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
55
55
  > **Important:** This attribute must be set to `true`.
@@ -57,24 +57,24 @@ class TemDomainArgs:
57
57
  return pulumi.get(self, "accept_tos")
58
58
 
59
59
  @accept_tos.setter
60
- def accept_tos(self, value: pulumi.Input[bool]):
60
+ def accept_tos(self, value: pulumi.Input[_builtins.bool]):
61
61
  pulumi.set(self, "accept_tos", value)
62
62
 
63
- @property
63
+ @_builtins.property
64
64
  @pulumi.getter
65
- def autoconfig(self) -> Optional[pulumi.Input[bool]]:
65
+ def autoconfig(self) -> Optional[pulumi.Input[_builtins.bool]]:
66
66
  """
67
67
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
68
68
  """
69
69
  return pulumi.get(self, "autoconfig")
70
70
 
71
71
  @autoconfig.setter
72
- def autoconfig(self, value: Optional[pulumi.Input[bool]]):
72
+ def autoconfig(self, value: Optional[pulumi.Input[_builtins.bool]]):
73
73
  pulumi.set(self, "autoconfig", value)
74
74
 
75
- @property
75
+ @_builtins.property
76
76
  @pulumi.getter
77
- def name(self) -> Optional[pulumi.Input[str]]:
77
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
78
78
  """
79
79
  The domain name, must not be used in another Transactional Email Domain.
80
80
  > **Important:** Updates to `name` will recreate the domain.
@@ -82,24 +82,24 @@ class TemDomainArgs:
82
82
  return pulumi.get(self, "name")
83
83
 
84
84
  @name.setter
85
- def name(self, value: Optional[pulumi.Input[str]]):
85
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
86
86
  pulumi.set(self, "name", value)
87
87
 
88
- @property
88
+ @_builtins.property
89
89
  @pulumi.getter(name="projectId")
90
- def project_id(self) -> Optional[pulumi.Input[str]]:
90
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
91
91
  """
92
92
  `project_id`) The ID of the project the domain is associated with.
93
93
  """
94
94
  return pulumi.get(self, "project_id")
95
95
 
96
96
  @project_id.setter
97
- def project_id(self, value: Optional[pulumi.Input[str]]):
97
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
98
98
  pulumi.set(self, "project_id", value)
99
99
 
100
- @property
100
+ @_builtins.property
101
101
  @pulumi.getter
102
- def region(self) -> Optional[pulumi.Input[str]]:
102
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
103
103
  """
104
104
  `region`). The region in which the domain should be created.
105
105
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
@@ -107,66 +107,72 @@ class TemDomainArgs:
107
107
  return pulumi.get(self, "region")
108
108
 
109
109
  @region.setter
110
- def region(self, value: Optional[pulumi.Input[str]]):
110
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
111
111
  pulumi.set(self, "region", value)
112
112
 
113
113
 
114
114
  @pulumi.input_type
115
115
  class _TemDomainState:
116
116
  def __init__(__self__, *,
117
- accept_tos: Optional[pulumi.Input[bool]] = None,
118
- autoconfig: Optional[pulumi.Input[bool]] = None,
119
- created_at: Optional[pulumi.Input[str]] = None,
120
- dkim_config: Optional[pulumi.Input[str]] = None,
121
- dmarc_config: Optional[pulumi.Input[str]] = None,
122
- dmarc_name: Optional[pulumi.Input[str]] = None,
123
- last_error: Optional[pulumi.Input[str]] = None,
124
- last_valid_at: Optional[pulumi.Input[str]] = None,
125
- mx_blackhole: Optional[pulumi.Input[str]] = None,
126
- name: Optional[pulumi.Input[str]] = None,
127
- next_check_at: Optional[pulumi.Input[str]] = None,
128
- project_id: Optional[pulumi.Input[str]] = None,
129
- region: Optional[pulumi.Input[str]] = None,
117
+ accept_tos: Optional[pulumi.Input[_builtins.bool]] = None,
118
+ autoconfig: Optional[pulumi.Input[_builtins.bool]] = None,
119
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
120
+ dkim_config: Optional[pulumi.Input[_builtins.str]] = None,
121
+ dkim_name: Optional[pulumi.Input[_builtins.str]] = None,
122
+ dmarc_config: Optional[pulumi.Input[_builtins.str]] = None,
123
+ dmarc_name: Optional[pulumi.Input[_builtins.str]] = None,
124
+ last_error: Optional[pulumi.Input[_builtins.str]] = None,
125
+ last_valid_at: Optional[pulumi.Input[_builtins.str]] = None,
126
+ mx_blackhole: Optional[pulumi.Input[_builtins.str]] = None,
127
+ mx_config: Optional[pulumi.Input[_builtins.str]] = None,
128
+ name: Optional[pulumi.Input[_builtins.str]] = None,
129
+ next_check_at: Optional[pulumi.Input[_builtins.str]] = None,
130
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
131
+ region: Optional[pulumi.Input[_builtins.str]] = None,
130
132
  reputations: Optional[pulumi.Input[Sequence[pulumi.Input['TemDomainReputationArgs']]]] = None,
131
- revoked_at: Optional[pulumi.Input[str]] = None,
132
- smtp_host: Optional[pulumi.Input[str]] = None,
133
- smtp_port: Optional[pulumi.Input[int]] = None,
134
- smtp_port_alternative: Optional[pulumi.Input[int]] = None,
135
- smtp_port_unsecure: Optional[pulumi.Input[int]] = None,
136
- smtps_auth_user: Optional[pulumi.Input[str]] = None,
137
- smtps_port: Optional[pulumi.Input[int]] = None,
138
- smtps_port_alternative: Optional[pulumi.Input[int]] = None,
139
- spf_config: Optional[pulumi.Input[str]] = None,
140
- status: Optional[pulumi.Input[str]] = None):
133
+ revoked_at: Optional[pulumi.Input[_builtins.str]] = None,
134
+ smtp_host: Optional[pulumi.Input[_builtins.str]] = None,
135
+ smtp_port: Optional[pulumi.Input[_builtins.int]] = None,
136
+ smtp_port_alternative: Optional[pulumi.Input[_builtins.int]] = None,
137
+ smtp_port_unsecure: Optional[pulumi.Input[_builtins.int]] = None,
138
+ smtps_auth_user: Optional[pulumi.Input[_builtins.str]] = None,
139
+ smtps_port: Optional[pulumi.Input[_builtins.int]] = None,
140
+ smtps_port_alternative: Optional[pulumi.Input[_builtins.int]] = None,
141
+ spf_config: Optional[pulumi.Input[_builtins.str]] = None,
142
+ spf_value: Optional[pulumi.Input[_builtins.str]] = None,
143
+ status: Optional[pulumi.Input[_builtins.str]] = None):
141
144
  """
142
145
  Input properties used for looking up and filtering TemDomain resources.
143
- :param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
146
+ :param pulumi.Input[_builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
144
147
  > **Important:** This attribute must be set to `true`.
145
- :param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
146
- :param pulumi.Input[str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
147
- :param pulumi.Input[str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
148
- :param pulumi.Input[str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
149
- :param pulumi.Input[str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
150
- :param pulumi.Input[str] last_error: (Deprecated) The error message if the last check failed.
151
- :param pulumi.Input[str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
152
- :param pulumi.Input[str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
153
- :param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
148
+ :param pulumi.Input[_builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
149
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
150
+ :param pulumi.Input[_builtins.str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
151
+ :param pulumi.Input[_builtins.str] dkim_name: DKIM name for the domain, as should be recorded in the DNS zone.
152
+ :param pulumi.Input[_builtins.str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
153
+ :param pulumi.Input[_builtins.str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
154
+ :param pulumi.Input[_builtins.str] last_error: (Deprecated) The error message if the last check failed.
155
+ :param pulumi.Input[_builtins.str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
156
+ :param pulumi.Input[_builtins.str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
157
+ :param pulumi.Input[_builtins.str] mx_config: MX record configuration for the domain blackhole.
158
+ :param pulumi.Input[_builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
154
159
  > **Important:** Updates to `name` will recreate the domain.
155
- :param pulumi.Input[str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
156
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
157
- :param pulumi.Input[str] region: `region`). The region in which the domain should be created.
160
+ :param pulumi.Input[_builtins.str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
161
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
162
+ :param pulumi.Input[_builtins.str] region: `region`). The region in which the domain should be created.
158
163
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
159
164
  :param pulumi.Input[Sequence[pulumi.Input['TemDomainReputationArgs']]] reputations: The domain's reputation.
160
- :param pulumi.Input[str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
161
- :param pulumi.Input[str] smtp_host: The SMTP host to use to send emails.
162
- :param pulumi.Input[int] smtp_port: The SMTP port to use to send emails over TLS.
163
- :param pulumi.Input[int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
164
- :param pulumi.Input[int] smtp_port_unsecure: The SMTP port to use to send emails.
165
- :param pulumi.Input[str] smtps_auth_user: SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
166
- :param pulumi.Input[int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
167
- :param pulumi.Input[int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
168
- :param pulumi.Input[str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
169
- :param pulumi.Input[str] status: The status of the domain's reputation.
165
+ :param pulumi.Input[_builtins.str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
166
+ :param pulumi.Input[_builtins.str] smtp_host: The SMTP host to use to send emails.
167
+ :param pulumi.Input[_builtins.int] smtp_port: The SMTP port to use to send emails over TLS.
168
+ :param pulumi.Input[_builtins.int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
169
+ :param pulumi.Input[_builtins.int] smtp_port_unsecure: The SMTP port to use to send emails.
170
+ :param pulumi.Input[_builtins.str] smtps_auth_user: SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
171
+ :param pulumi.Input[_builtins.int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
172
+ :param pulumi.Input[_builtins.int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
173
+ :param pulumi.Input[_builtins.str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
174
+ :param pulumi.Input[_builtins.str] spf_value: Complete SPF record value for the domain, as should be recorded in the DNS zone.
175
+ :param pulumi.Input[_builtins.str] status: The status of the domain's reputation.
170
176
  """
171
177
  if accept_tos is not None:
172
178
  pulumi.set(__self__, "accept_tos", accept_tos)
@@ -176,6 +182,8 @@ class _TemDomainState:
176
182
  pulumi.set(__self__, "created_at", created_at)
177
183
  if dkim_config is not None:
178
184
  pulumi.set(__self__, "dkim_config", dkim_config)
185
+ if dkim_name is not None:
186
+ pulumi.set(__self__, "dkim_name", dkim_name)
179
187
  if dmarc_config is not None:
180
188
  pulumi.set(__self__, "dmarc_config", dmarc_config)
181
189
  if dmarc_name is not None:
@@ -189,6 +197,8 @@ class _TemDomainState:
189
197
  pulumi.set(__self__, "last_valid_at", last_valid_at)
190
198
  if mx_blackhole is not None:
191
199
  pulumi.set(__self__, "mx_blackhole", mx_blackhole)
200
+ if mx_config is not None:
201
+ pulumi.set(__self__, "mx_config", mx_config)
192
202
  if name is not None:
193
203
  pulumi.set(__self__, "name", name)
194
204
  if next_check_at is not None:
@@ -217,12 +227,14 @@ class _TemDomainState:
217
227
  pulumi.set(__self__, "smtps_port_alternative", smtps_port_alternative)
218
228
  if spf_config is not None:
219
229
  pulumi.set(__self__, "spf_config", spf_config)
230
+ if spf_value is not None:
231
+ pulumi.set(__self__, "spf_value", spf_value)
220
232
  if status is not None:
221
233
  pulumi.set(__self__, "status", status)
222
234
 
223
- @property
235
+ @_builtins.property
224
236
  @pulumi.getter(name="acceptTos")
225
- def accept_tos(self) -> Optional[pulumi.Input[bool]]:
237
+ def accept_tos(self) -> Optional[pulumi.Input[_builtins.bool]]:
226
238
  """
227
239
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
228
240
  > **Important:** This attribute must be set to `true`.
@@ -230,109 +242,133 @@ class _TemDomainState:
230
242
  return pulumi.get(self, "accept_tos")
231
243
 
232
244
  @accept_tos.setter
233
- def accept_tos(self, value: Optional[pulumi.Input[bool]]):
245
+ def accept_tos(self, value: Optional[pulumi.Input[_builtins.bool]]):
234
246
  pulumi.set(self, "accept_tos", value)
235
247
 
236
- @property
248
+ @_builtins.property
237
249
  @pulumi.getter
238
- def autoconfig(self) -> Optional[pulumi.Input[bool]]:
250
+ def autoconfig(self) -> Optional[pulumi.Input[_builtins.bool]]:
239
251
  """
240
252
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
241
253
  """
242
254
  return pulumi.get(self, "autoconfig")
243
255
 
244
256
  @autoconfig.setter
245
- def autoconfig(self, value: Optional[pulumi.Input[bool]]):
257
+ def autoconfig(self, value: Optional[pulumi.Input[_builtins.bool]]):
246
258
  pulumi.set(self, "autoconfig", value)
247
259
 
248
- @property
260
+ @_builtins.property
249
261
  @pulumi.getter(name="createdAt")
250
- def created_at(self) -> Optional[pulumi.Input[str]]:
262
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
251
263
  """
252
264
  The date and time of the Transaction Email Domain's creation (RFC 3339 format).
253
265
  """
254
266
  return pulumi.get(self, "created_at")
255
267
 
256
268
  @created_at.setter
257
- def created_at(self, value: Optional[pulumi.Input[str]]):
269
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
258
270
  pulumi.set(self, "created_at", value)
259
271
 
260
- @property
272
+ @_builtins.property
261
273
  @pulumi.getter(name="dkimConfig")
262
- def dkim_config(self) -> Optional[pulumi.Input[str]]:
274
+ def dkim_config(self) -> Optional[pulumi.Input[_builtins.str]]:
263
275
  """
264
276
  The DKIM public key, as should be recorded in the DNS zone.
265
277
  """
266
278
  return pulumi.get(self, "dkim_config")
267
279
 
268
280
  @dkim_config.setter
269
- def dkim_config(self, value: Optional[pulumi.Input[str]]):
281
+ def dkim_config(self, value: Optional[pulumi.Input[_builtins.str]]):
270
282
  pulumi.set(self, "dkim_config", value)
271
283
 
272
- @property
284
+ @_builtins.property
285
+ @pulumi.getter(name="dkimName")
286
+ def dkim_name(self) -> Optional[pulumi.Input[_builtins.str]]:
287
+ """
288
+ DKIM name for the domain, as should be recorded in the DNS zone.
289
+ """
290
+ return pulumi.get(self, "dkim_name")
291
+
292
+ @dkim_name.setter
293
+ def dkim_name(self, value: Optional[pulumi.Input[_builtins.str]]):
294
+ pulumi.set(self, "dkim_name", value)
295
+
296
+ @_builtins.property
273
297
  @pulumi.getter(name="dmarcConfig")
274
- def dmarc_config(self) -> Optional[pulumi.Input[str]]:
298
+ def dmarc_config(self) -> Optional[pulumi.Input[_builtins.str]]:
275
299
  """
276
300
  DMARC record for the domain, as should be recorded in the DNS zone.
277
301
  """
278
302
  return pulumi.get(self, "dmarc_config")
279
303
 
280
304
  @dmarc_config.setter
281
- def dmarc_config(self, value: Optional[pulumi.Input[str]]):
305
+ def dmarc_config(self, value: Optional[pulumi.Input[_builtins.str]]):
282
306
  pulumi.set(self, "dmarc_config", value)
283
307
 
284
- @property
308
+ @_builtins.property
285
309
  @pulumi.getter(name="dmarcName")
286
- def dmarc_name(self) -> Optional[pulumi.Input[str]]:
310
+ def dmarc_name(self) -> Optional[pulumi.Input[_builtins.str]]:
287
311
  """
288
312
  DMARC name for the domain, as should be recorded in the DNS zone.
289
313
  """
290
314
  return pulumi.get(self, "dmarc_name")
291
315
 
292
316
  @dmarc_name.setter
293
- def dmarc_name(self, value: Optional[pulumi.Input[str]]):
317
+ def dmarc_name(self, value: Optional[pulumi.Input[_builtins.str]]):
294
318
  pulumi.set(self, "dmarc_name", value)
295
319
 
296
- @property
320
+ @_builtins.property
297
321
  @pulumi.getter(name="lastError")
298
322
  @_utilities.deprecated("""last_error is deprecated""")
299
- def last_error(self) -> Optional[pulumi.Input[str]]:
323
+ def last_error(self) -> Optional[pulumi.Input[_builtins.str]]:
300
324
  """
301
325
  (Deprecated) The error message if the last check failed.
302
326
  """
303
327
  return pulumi.get(self, "last_error")
304
328
 
305
329
  @last_error.setter
306
- def last_error(self, value: Optional[pulumi.Input[str]]):
330
+ def last_error(self, value: Optional[pulumi.Input[_builtins.str]]):
307
331
  pulumi.set(self, "last_error", value)
308
332
 
309
- @property
333
+ @_builtins.property
310
334
  @pulumi.getter(name="lastValidAt")
311
- def last_valid_at(self) -> Optional[pulumi.Input[str]]:
335
+ def last_valid_at(self) -> Optional[pulumi.Input[_builtins.str]]:
312
336
  """
313
337
  The date and time the domain was last found to be valid (RFC 3339 format).
314
338
  """
315
339
  return pulumi.get(self, "last_valid_at")
316
340
 
317
341
  @last_valid_at.setter
318
- def last_valid_at(self, value: Optional[pulumi.Input[str]]):
342
+ def last_valid_at(self, value: Optional[pulumi.Input[_builtins.str]]):
319
343
  pulumi.set(self, "last_valid_at", value)
320
344
 
321
- @property
345
+ @_builtins.property
322
346
  @pulumi.getter(name="mxBlackhole")
323
- def mx_blackhole(self) -> Optional[pulumi.Input[str]]:
347
+ def mx_blackhole(self) -> Optional[pulumi.Input[_builtins.str]]:
324
348
  """
325
349
  The Scaleway's blackhole MX server to use if you do not have one.
326
350
  """
327
351
  return pulumi.get(self, "mx_blackhole")
328
352
 
329
353
  @mx_blackhole.setter
330
- def mx_blackhole(self, value: Optional[pulumi.Input[str]]):
354
+ def mx_blackhole(self, value: Optional[pulumi.Input[_builtins.str]]):
331
355
  pulumi.set(self, "mx_blackhole", value)
332
356
 
333
- @property
357
+ @_builtins.property
358
+ @pulumi.getter(name="mxConfig")
359
+ def mx_config(self) -> Optional[pulumi.Input[_builtins.str]]:
360
+ """
361
+ MX record configuration for the domain blackhole.
362
+ """
363
+ return pulumi.get(self, "mx_config")
364
+
365
+ @mx_config.setter
366
+ def mx_config(self, value: Optional[pulumi.Input[_builtins.str]]):
367
+ pulumi.set(self, "mx_config", value)
368
+
369
+ @_builtins.property
334
370
  @pulumi.getter
335
- def name(self) -> Optional[pulumi.Input[str]]:
371
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
336
372
  """
337
373
  The domain name, must not be used in another Transactional Email Domain.
338
374
  > **Important:** Updates to `name` will recreate the domain.
@@ -340,36 +376,36 @@ class _TemDomainState:
340
376
  return pulumi.get(self, "name")
341
377
 
342
378
  @name.setter
343
- def name(self, value: Optional[pulumi.Input[str]]):
379
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
344
380
  pulumi.set(self, "name", value)
345
381
 
346
- @property
382
+ @_builtins.property
347
383
  @pulumi.getter(name="nextCheckAt")
348
- def next_check_at(self) -> Optional[pulumi.Input[str]]:
384
+ def next_check_at(self) -> Optional[pulumi.Input[_builtins.str]]:
349
385
  """
350
386
  The date and time of the next scheduled check (RFC 3339 format).
351
387
  """
352
388
  return pulumi.get(self, "next_check_at")
353
389
 
354
390
  @next_check_at.setter
355
- def next_check_at(self, value: Optional[pulumi.Input[str]]):
391
+ def next_check_at(self, value: Optional[pulumi.Input[_builtins.str]]):
356
392
  pulumi.set(self, "next_check_at", value)
357
393
 
358
- @property
394
+ @_builtins.property
359
395
  @pulumi.getter(name="projectId")
360
- def project_id(self) -> Optional[pulumi.Input[str]]:
396
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
361
397
  """
362
398
  `project_id`) The ID of the project the domain is associated with.
363
399
  """
364
400
  return pulumi.get(self, "project_id")
365
401
 
366
402
  @project_id.setter
367
- def project_id(self, value: Optional[pulumi.Input[str]]):
403
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
368
404
  pulumi.set(self, "project_id", value)
369
405
 
370
- @property
406
+ @_builtins.property
371
407
  @pulumi.getter
372
- def region(self) -> Optional[pulumi.Input[str]]:
408
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
373
409
  """
374
410
  `region`). The region in which the domain should be created.
375
411
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
@@ -377,10 +413,10 @@ class _TemDomainState:
377
413
  return pulumi.get(self, "region")
378
414
 
379
415
  @region.setter
380
- def region(self, value: Optional[pulumi.Input[str]]):
416
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
381
417
  pulumi.set(self, "region", value)
382
418
 
383
- @property
419
+ @_builtins.property
384
420
  @pulumi.getter
385
421
  def reputations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TemDomainReputationArgs']]]]:
386
422
  """
@@ -392,130 +428,143 @@ class _TemDomainState:
392
428
  def reputations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TemDomainReputationArgs']]]]):
393
429
  pulumi.set(self, "reputations", value)
394
430
 
395
- @property
431
+ @_builtins.property
396
432
  @pulumi.getter(name="revokedAt")
397
- def revoked_at(self) -> Optional[pulumi.Input[str]]:
433
+ def revoked_at(self) -> Optional[pulumi.Input[_builtins.str]]:
398
434
  """
399
435
  The date and time of the revocation of the domain (RFC 3339 format).
400
436
  """
401
437
  return pulumi.get(self, "revoked_at")
402
438
 
403
439
  @revoked_at.setter
404
- def revoked_at(self, value: Optional[pulumi.Input[str]]):
440
+ def revoked_at(self, value: Optional[pulumi.Input[_builtins.str]]):
405
441
  pulumi.set(self, "revoked_at", value)
406
442
 
407
- @property
443
+ @_builtins.property
408
444
  @pulumi.getter(name="smtpHost")
409
- def smtp_host(self) -> Optional[pulumi.Input[str]]:
445
+ def smtp_host(self) -> Optional[pulumi.Input[_builtins.str]]:
410
446
  """
411
447
  The SMTP host to use to send emails.
412
448
  """
413
449
  return pulumi.get(self, "smtp_host")
414
450
 
415
451
  @smtp_host.setter
416
- def smtp_host(self, value: Optional[pulumi.Input[str]]):
452
+ def smtp_host(self, value: Optional[pulumi.Input[_builtins.str]]):
417
453
  pulumi.set(self, "smtp_host", value)
418
454
 
419
- @property
455
+ @_builtins.property
420
456
  @pulumi.getter(name="smtpPort")
421
- def smtp_port(self) -> Optional[pulumi.Input[int]]:
457
+ def smtp_port(self) -> Optional[pulumi.Input[_builtins.int]]:
422
458
  """
423
459
  The SMTP port to use to send emails over TLS.
424
460
  """
425
461
  return pulumi.get(self, "smtp_port")
426
462
 
427
463
  @smtp_port.setter
428
- def smtp_port(self, value: Optional[pulumi.Input[int]]):
464
+ def smtp_port(self, value: Optional[pulumi.Input[_builtins.int]]):
429
465
  pulumi.set(self, "smtp_port", value)
430
466
 
431
- @property
467
+ @_builtins.property
432
468
  @pulumi.getter(name="smtpPortAlternative")
433
- def smtp_port_alternative(self) -> Optional[pulumi.Input[int]]:
469
+ def smtp_port_alternative(self) -> Optional[pulumi.Input[_builtins.int]]:
434
470
  """
435
471
  The SMTP port to use to send emails over TLS.
436
472
  """
437
473
  return pulumi.get(self, "smtp_port_alternative")
438
474
 
439
475
  @smtp_port_alternative.setter
440
- def smtp_port_alternative(self, value: Optional[pulumi.Input[int]]):
476
+ def smtp_port_alternative(self, value: Optional[pulumi.Input[_builtins.int]]):
441
477
  pulumi.set(self, "smtp_port_alternative", value)
442
478
 
443
- @property
479
+ @_builtins.property
444
480
  @pulumi.getter(name="smtpPortUnsecure")
445
- def smtp_port_unsecure(self) -> Optional[pulumi.Input[int]]:
481
+ def smtp_port_unsecure(self) -> Optional[pulumi.Input[_builtins.int]]:
446
482
  """
447
483
  The SMTP port to use to send emails.
448
484
  """
449
485
  return pulumi.get(self, "smtp_port_unsecure")
450
486
 
451
487
  @smtp_port_unsecure.setter
452
- def smtp_port_unsecure(self, value: Optional[pulumi.Input[int]]):
488
+ def smtp_port_unsecure(self, value: Optional[pulumi.Input[_builtins.int]]):
453
489
  pulumi.set(self, "smtp_port_unsecure", value)
454
490
 
455
- @property
491
+ @_builtins.property
456
492
  @pulumi.getter(name="smtpsAuthUser")
457
- def smtps_auth_user(self) -> Optional[pulumi.Input[str]]:
493
+ def smtps_auth_user(self) -> Optional[pulumi.Input[_builtins.str]]:
458
494
  """
459
495
  SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
460
496
  """
461
497
  return pulumi.get(self, "smtps_auth_user")
462
498
 
463
499
  @smtps_auth_user.setter
464
- def smtps_auth_user(self, value: Optional[pulumi.Input[str]]):
500
+ def smtps_auth_user(self, value: Optional[pulumi.Input[_builtins.str]]):
465
501
  pulumi.set(self, "smtps_auth_user", value)
466
502
 
467
- @property
503
+ @_builtins.property
468
504
  @pulumi.getter(name="smtpsPort")
469
- def smtps_port(self) -> Optional[pulumi.Input[int]]:
505
+ def smtps_port(self) -> Optional[pulumi.Input[_builtins.int]]:
470
506
  """
471
507
  The SMTPS port to use to send emails over TLS Wrapper.
472
508
  """
473
509
  return pulumi.get(self, "smtps_port")
474
510
 
475
511
  @smtps_port.setter
476
- def smtps_port(self, value: Optional[pulumi.Input[int]]):
512
+ def smtps_port(self, value: Optional[pulumi.Input[_builtins.int]]):
477
513
  pulumi.set(self, "smtps_port", value)
478
514
 
479
- @property
515
+ @_builtins.property
480
516
  @pulumi.getter(name="smtpsPortAlternative")
481
- def smtps_port_alternative(self) -> Optional[pulumi.Input[int]]:
517
+ def smtps_port_alternative(self) -> Optional[pulumi.Input[_builtins.int]]:
482
518
  """
483
519
  The SMTPS port to use to send emails over TLS Wrapper.
484
520
  """
485
521
  return pulumi.get(self, "smtps_port_alternative")
486
522
 
487
523
  @smtps_port_alternative.setter
488
- def smtps_port_alternative(self, value: Optional[pulumi.Input[int]]):
524
+ def smtps_port_alternative(self, value: Optional[pulumi.Input[_builtins.int]]):
489
525
  pulumi.set(self, "smtps_port_alternative", value)
490
526
 
491
- @property
527
+ @_builtins.property
492
528
  @pulumi.getter(name="spfConfig")
493
- def spf_config(self) -> Optional[pulumi.Input[str]]:
529
+ def spf_config(self) -> Optional[pulumi.Input[_builtins.str]]:
494
530
  """
495
531
  The snippet of the SPF record that should be registered in the DNS zone.
496
532
  """
497
533
  return pulumi.get(self, "spf_config")
498
534
 
499
535
  @spf_config.setter
500
- def spf_config(self, value: Optional[pulumi.Input[str]]):
536
+ def spf_config(self, value: Optional[pulumi.Input[_builtins.str]]):
501
537
  pulumi.set(self, "spf_config", value)
502
538
 
503
- @property
539
+ @_builtins.property
540
+ @pulumi.getter(name="spfValue")
541
+ def spf_value(self) -> Optional[pulumi.Input[_builtins.str]]:
542
+ """
543
+ Complete SPF record value for the domain, as should be recorded in the DNS zone.
544
+ """
545
+ return pulumi.get(self, "spf_value")
546
+
547
+ @spf_value.setter
548
+ def spf_value(self, value: Optional[pulumi.Input[_builtins.str]]):
549
+ pulumi.set(self, "spf_value", value)
550
+
551
+ @_builtins.property
504
552
  @pulumi.getter
505
- def status(self) -> Optional[pulumi.Input[str]]:
553
+ def status(self) -> Optional[pulumi.Input[_builtins.str]]:
506
554
  """
507
555
  The status of the domain's reputation.
508
556
  """
509
557
  return pulumi.get(self, "status")
510
558
 
511
559
  @status.setter
512
- def status(self, value: Optional[pulumi.Input[str]]):
560
+ def status(self, value: Optional[pulumi.Input[_builtins.str]]):
513
561
  pulumi.set(self, "status", value)
514
562
 
515
563
 
516
564
  warnings.warn("""scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""", DeprecationWarning)
517
565
 
518
566
 
567
+ @pulumi.type_token("scaleway:index/temDomain:TemDomain")
519
568
  class TemDomain(pulumi.CustomResource):
520
569
  warnings.warn("""scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""", DeprecationWarning)
521
570
 
@@ -523,11 +572,11 @@ class TemDomain(pulumi.CustomResource):
523
572
  def __init__(__self__,
524
573
  resource_name: str,
525
574
  opts: Optional[pulumi.ResourceOptions] = None,
526
- accept_tos: Optional[pulumi.Input[bool]] = None,
527
- autoconfig: Optional[pulumi.Input[bool]] = None,
528
- name: Optional[pulumi.Input[str]] = None,
529
- project_id: Optional[pulumi.Input[str]] = None,
530
- region: Optional[pulumi.Input[str]] = None,
575
+ accept_tos: Optional[pulumi.Input[_builtins.bool]] = None,
576
+ autoconfig: Optional[pulumi.Input[_builtins.bool]] = None,
577
+ name: Optional[pulumi.Input[_builtins.str]] = None,
578
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
579
+ region: Optional[pulumi.Input[_builtins.str]] = None,
531
580
  __props__=None):
532
581
  """
533
582
  Creates and manages Scaleway Transactional Email Domains.
@@ -560,16 +609,16 @@ class TemDomain(pulumi.CustomResource):
560
609
  spf = scaleway.domain.Record("spf",
561
610
  dns_zone=domain_name,
562
611
  type="TXT",
563
- data=main.spf_config.apply(lambda spf_config: f"v=spf1 {spf_config} -all"))
612
+ data=main.spf_value)
564
613
  dkim = scaleway.domain.Record("dkim",
565
614
  dns_zone=domain_name,
566
- name=main.project_id.apply(lambda project_id: f"{project_id}._domainkey"),
615
+ name=main.dkim_name,
567
616
  type="TXT",
568
617
  data=main.dkim_config)
569
618
  mx = scaleway.domain.Record("mx",
570
619
  dns_zone=domain_name,
571
620
  type="MX",
572
- data=".")
621
+ data=main.mx_config)
573
622
  dmarc = scaleway.domain.Record("dmarc",
574
623
  dns_zone=domain_name,
575
624
  name=main.dmarc_name,
@@ -591,6 +640,27 @@ class TemDomain(pulumi.CustomResource):
591
640
  autoconfig=True)
592
641
  ```
593
642
 
643
+ ### Configuring GitLab Project Variables
644
+
645
+ ```python
646
+ import pulumi
647
+ import pulumi_gitlab as gitlab
648
+ import pulumi_scaleway as scaleway
649
+
650
+ config = pulumi.Config()
651
+ domain_name = config.require("domainName")
652
+ my_domain = scaleway.tem.get_domain(name=domain_name)
653
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
654
+ key="SMTP_AUTH_USER",
655
+ value=my_domain.smtps_auth_user)
656
+ smtp_port = gitlab.ProjectVariable("smtp_port",
657
+ key="SMTP_PORT",
658
+ value=my_domain.smtps_port)
659
+ smtp_host = gitlab.ProjectVariable("smtp_host",
660
+ key="SMTP_HOST",
661
+ value=my_domain.smtps_host)
662
+ ```
663
+
594
664
  ## Import
595
665
 
596
666
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -603,13 +673,13 @@ class TemDomain(pulumi.CustomResource):
603
673
 
604
674
  :param str resource_name: The name of the resource.
605
675
  :param pulumi.ResourceOptions opts: Options for the resource.
606
- :param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
676
+ :param pulumi.Input[_builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
607
677
  > **Important:** This attribute must be set to `true`.
608
- :param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
609
- :param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
678
+ :param pulumi.Input[_builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
679
+ :param pulumi.Input[_builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
610
680
  > **Important:** Updates to `name` will recreate the domain.
611
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
612
- :param pulumi.Input[str] region: `region`). The region in which the domain should be created.
681
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
682
+ :param pulumi.Input[_builtins.str] region: `region`). The region in which the domain should be created.
613
683
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
614
684
  """
615
685
  ...
@@ -649,16 +719,16 @@ class TemDomain(pulumi.CustomResource):
649
719
  spf = scaleway.domain.Record("spf",
650
720
  dns_zone=domain_name,
651
721
  type="TXT",
652
- data=main.spf_config.apply(lambda spf_config: f"v=spf1 {spf_config} -all"))
722
+ data=main.spf_value)
653
723
  dkim = scaleway.domain.Record("dkim",
654
724
  dns_zone=domain_name,
655
- name=main.project_id.apply(lambda project_id: f"{project_id}._domainkey"),
725
+ name=main.dkim_name,
656
726
  type="TXT",
657
727
  data=main.dkim_config)
658
728
  mx = scaleway.domain.Record("mx",
659
729
  dns_zone=domain_name,
660
730
  type="MX",
661
- data=".")
731
+ data=main.mx_config)
662
732
  dmarc = scaleway.domain.Record("dmarc",
663
733
  dns_zone=domain_name,
664
734
  name=main.dmarc_name,
@@ -680,6 +750,27 @@ class TemDomain(pulumi.CustomResource):
680
750
  autoconfig=True)
681
751
  ```
682
752
 
753
+ ### Configuring GitLab Project Variables
754
+
755
+ ```python
756
+ import pulumi
757
+ import pulumi_gitlab as gitlab
758
+ import pulumi_scaleway as scaleway
759
+
760
+ config = pulumi.Config()
761
+ domain_name = config.require("domainName")
762
+ my_domain = scaleway.tem.get_domain(name=domain_name)
763
+ smtp_auth_user = gitlab.ProjectVariable("smtp_auth_user",
764
+ key="SMTP_AUTH_USER",
765
+ value=my_domain.smtps_auth_user)
766
+ smtp_port = gitlab.ProjectVariable("smtp_port",
767
+ key="SMTP_PORT",
768
+ value=my_domain.smtps_port)
769
+ smtp_host = gitlab.ProjectVariable("smtp_host",
770
+ key="SMTP_HOST",
771
+ value=my_domain.smtps_host)
772
+ ```
773
+
683
774
  ## Import
684
775
 
685
776
  Domains can be imported using the `{region}/{id}`, e.g.
@@ -705,11 +796,11 @@ class TemDomain(pulumi.CustomResource):
705
796
  def _internal_init(__self__,
706
797
  resource_name: str,
707
798
  opts: Optional[pulumi.ResourceOptions] = None,
708
- accept_tos: Optional[pulumi.Input[bool]] = None,
709
- autoconfig: Optional[pulumi.Input[bool]] = None,
710
- name: Optional[pulumi.Input[str]] = None,
711
- project_id: Optional[pulumi.Input[str]] = None,
712
- region: Optional[pulumi.Input[str]] = None,
799
+ accept_tos: Optional[pulumi.Input[_builtins.bool]] = None,
800
+ autoconfig: Optional[pulumi.Input[_builtins.bool]] = None,
801
+ name: Optional[pulumi.Input[_builtins.str]] = None,
802
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
803
+ region: Optional[pulumi.Input[_builtins.str]] = None,
713
804
  __props__=None):
714
805
  pulumi.log.warn("""TemDomain is deprecated: scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""")
715
806
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -729,11 +820,13 @@ class TemDomain(pulumi.CustomResource):
729
820
  __props__.__dict__["region"] = region
730
821
  __props__.__dict__["created_at"] = None
731
822
  __props__.__dict__["dkim_config"] = None
823
+ __props__.__dict__["dkim_name"] = None
732
824
  __props__.__dict__["dmarc_config"] = None
733
825
  __props__.__dict__["dmarc_name"] = None
734
826
  __props__.__dict__["last_error"] = None
735
827
  __props__.__dict__["last_valid_at"] = None
736
828
  __props__.__dict__["mx_blackhole"] = None
829
+ __props__.__dict__["mx_config"] = None
737
830
  __props__.__dict__["next_check_at"] = None
738
831
  __props__.__dict__["reputations"] = None
739
832
  __props__.__dict__["revoked_at"] = None
@@ -745,6 +838,7 @@ class TemDomain(pulumi.CustomResource):
745
838
  __props__.__dict__["smtps_port"] = None
746
839
  __props__.__dict__["smtps_port_alternative"] = None
747
840
  __props__.__dict__["spf_config"] = None
841
+ __props__.__dict__["spf_value"] = None
748
842
  __props__.__dict__["status"] = None
749
843
  super(TemDomain, __self__).__init__(
750
844
  'scaleway:index/temDomain:TemDomain',
@@ -756,30 +850,33 @@ class TemDomain(pulumi.CustomResource):
756
850
  def get(resource_name: str,
757
851
  id: pulumi.Input[str],
758
852
  opts: Optional[pulumi.ResourceOptions] = None,
759
- accept_tos: Optional[pulumi.Input[bool]] = None,
760
- autoconfig: Optional[pulumi.Input[bool]] = None,
761
- created_at: Optional[pulumi.Input[str]] = None,
762
- dkim_config: Optional[pulumi.Input[str]] = None,
763
- dmarc_config: Optional[pulumi.Input[str]] = None,
764
- dmarc_name: Optional[pulumi.Input[str]] = None,
765
- last_error: Optional[pulumi.Input[str]] = None,
766
- last_valid_at: Optional[pulumi.Input[str]] = None,
767
- mx_blackhole: Optional[pulumi.Input[str]] = None,
768
- name: Optional[pulumi.Input[str]] = None,
769
- next_check_at: Optional[pulumi.Input[str]] = None,
770
- project_id: Optional[pulumi.Input[str]] = None,
771
- region: Optional[pulumi.Input[str]] = None,
853
+ accept_tos: Optional[pulumi.Input[_builtins.bool]] = None,
854
+ autoconfig: Optional[pulumi.Input[_builtins.bool]] = None,
855
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
856
+ dkim_config: Optional[pulumi.Input[_builtins.str]] = None,
857
+ dkim_name: Optional[pulumi.Input[_builtins.str]] = None,
858
+ dmarc_config: Optional[pulumi.Input[_builtins.str]] = None,
859
+ dmarc_name: Optional[pulumi.Input[_builtins.str]] = None,
860
+ last_error: Optional[pulumi.Input[_builtins.str]] = None,
861
+ last_valid_at: Optional[pulumi.Input[_builtins.str]] = None,
862
+ mx_blackhole: Optional[pulumi.Input[_builtins.str]] = None,
863
+ mx_config: Optional[pulumi.Input[_builtins.str]] = None,
864
+ name: Optional[pulumi.Input[_builtins.str]] = None,
865
+ next_check_at: Optional[pulumi.Input[_builtins.str]] = None,
866
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
867
+ region: Optional[pulumi.Input[_builtins.str]] = None,
772
868
  reputations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TemDomainReputationArgs', 'TemDomainReputationArgsDict']]]]] = None,
773
- revoked_at: Optional[pulumi.Input[str]] = None,
774
- smtp_host: Optional[pulumi.Input[str]] = None,
775
- smtp_port: Optional[pulumi.Input[int]] = None,
776
- smtp_port_alternative: Optional[pulumi.Input[int]] = None,
777
- smtp_port_unsecure: Optional[pulumi.Input[int]] = None,
778
- smtps_auth_user: Optional[pulumi.Input[str]] = None,
779
- smtps_port: Optional[pulumi.Input[int]] = None,
780
- smtps_port_alternative: Optional[pulumi.Input[int]] = None,
781
- spf_config: Optional[pulumi.Input[str]] = None,
782
- status: Optional[pulumi.Input[str]] = None) -> 'TemDomain':
869
+ revoked_at: Optional[pulumi.Input[_builtins.str]] = None,
870
+ smtp_host: Optional[pulumi.Input[_builtins.str]] = None,
871
+ smtp_port: Optional[pulumi.Input[_builtins.int]] = None,
872
+ smtp_port_alternative: Optional[pulumi.Input[_builtins.int]] = None,
873
+ smtp_port_unsecure: Optional[pulumi.Input[_builtins.int]] = None,
874
+ smtps_auth_user: Optional[pulumi.Input[_builtins.str]] = None,
875
+ smtps_port: Optional[pulumi.Input[_builtins.int]] = None,
876
+ smtps_port_alternative: Optional[pulumi.Input[_builtins.int]] = None,
877
+ spf_config: Optional[pulumi.Input[_builtins.str]] = None,
878
+ spf_value: Optional[pulumi.Input[_builtins.str]] = None,
879
+ status: Optional[pulumi.Input[_builtins.str]] = None) -> 'TemDomain':
783
880
  """
784
881
  Get an existing TemDomain resource's state with the given name, id, and optional extra
785
882
  properties used to qualify the lookup.
@@ -787,33 +884,36 @@ class TemDomain(pulumi.CustomResource):
787
884
  :param str resource_name: The unique name of the resulting resource.
788
885
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
789
886
  :param pulumi.ResourceOptions opts: Options for the resource.
790
- :param pulumi.Input[bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
887
+ :param pulumi.Input[_builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
791
888
  > **Important:** This attribute must be set to `true`.
792
- :param pulumi.Input[bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
793
- :param pulumi.Input[str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
794
- :param pulumi.Input[str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
795
- :param pulumi.Input[str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
796
- :param pulumi.Input[str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
797
- :param pulumi.Input[str] last_error: (Deprecated) The error message if the last check failed.
798
- :param pulumi.Input[str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
799
- :param pulumi.Input[str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
800
- :param pulumi.Input[str] name: The domain name, must not be used in another Transactional Email Domain.
889
+ :param pulumi.Input[_builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
890
+ :param pulumi.Input[_builtins.str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
891
+ :param pulumi.Input[_builtins.str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
892
+ :param pulumi.Input[_builtins.str] dkim_name: DKIM name for the domain, as should be recorded in the DNS zone.
893
+ :param pulumi.Input[_builtins.str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
894
+ :param pulumi.Input[_builtins.str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
895
+ :param pulumi.Input[_builtins.str] last_error: (Deprecated) The error message if the last check failed.
896
+ :param pulumi.Input[_builtins.str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
897
+ :param pulumi.Input[_builtins.str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
898
+ :param pulumi.Input[_builtins.str] mx_config: MX record configuration for the domain blackhole.
899
+ :param pulumi.Input[_builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
801
900
  > **Important:** Updates to `name` will recreate the domain.
802
- :param pulumi.Input[str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
803
- :param pulumi.Input[str] project_id: `project_id`) The ID of the project the domain is associated with.
804
- :param pulumi.Input[str] region: `region`). The region in which the domain should be created.
901
+ :param pulumi.Input[_builtins.str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
902
+ :param pulumi.Input[_builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
903
+ :param pulumi.Input[_builtins.str] region: `region`). The region in which the domain should be created.
805
904
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
806
905
  :param pulumi.Input[Sequence[pulumi.Input[Union['TemDomainReputationArgs', 'TemDomainReputationArgsDict']]]] reputations: The domain's reputation.
807
- :param pulumi.Input[str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
808
- :param pulumi.Input[str] smtp_host: The SMTP host to use to send emails.
809
- :param pulumi.Input[int] smtp_port: The SMTP port to use to send emails over TLS.
810
- :param pulumi.Input[int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
811
- :param pulumi.Input[int] smtp_port_unsecure: The SMTP port to use to send emails.
812
- :param pulumi.Input[str] smtps_auth_user: SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
813
- :param pulumi.Input[int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
814
- :param pulumi.Input[int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
815
- :param pulumi.Input[str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
816
- :param pulumi.Input[str] status: The status of the domain's reputation.
906
+ :param pulumi.Input[_builtins.str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
907
+ :param pulumi.Input[_builtins.str] smtp_host: The SMTP host to use to send emails.
908
+ :param pulumi.Input[_builtins.int] smtp_port: The SMTP port to use to send emails over TLS.
909
+ :param pulumi.Input[_builtins.int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
910
+ :param pulumi.Input[_builtins.int] smtp_port_unsecure: The SMTP port to use to send emails.
911
+ :param pulumi.Input[_builtins.str] smtps_auth_user: SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
912
+ :param pulumi.Input[_builtins.int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
913
+ :param pulumi.Input[_builtins.int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
914
+ :param pulumi.Input[_builtins.str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
915
+ :param pulumi.Input[_builtins.str] spf_value: Complete SPF record value for the domain, as should be recorded in the DNS zone.
916
+ :param pulumi.Input[_builtins.str] status: The status of the domain's reputation.
817
917
  """
818
918
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
819
919
 
@@ -823,11 +923,13 @@ class TemDomain(pulumi.CustomResource):
823
923
  __props__.__dict__["autoconfig"] = autoconfig
824
924
  __props__.__dict__["created_at"] = created_at
825
925
  __props__.__dict__["dkim_config"] = dkim_config
926
+ __props__.__dict__["dkim_name"] = dkim_name
826
927
  __props__.__dict__["dmarc_config"] = dmarc_config
827
928
  __props__.__dict__["dmarc_name"] = dmarc_name
828
929
  __props__.__dict__["last_error"] = last_error
829
930
  __props__.__dict__["last_valid_at"] = last_valid_at
830
931
  __props__.__dict__["mx_blackhole"] = mx_blackhole
932
+ __props__.__dict__["mx_config"] = mx_config
831
933
  __props__.__dict__["name"] = name
832
934
  __props__.__dict__["next_check_at"] = next_check_at
833
935
  __props__.__dict__["project_id"] = project_id
@@ -842,118 +944,135 @@ class TemDomain(pulumi.CustomResource):
842
944
  __props__.__dict__["smtps_port"] = smtps_port
843
945
  __props__.__dict__["smtps_port_alternative"] = smtps_port_alternative
844
946
  __props__.__dict__["spf_config"] = spf_config
947
+ __props__.__dict__["spf_value"] = spf_value
845
948
  __props__.__dict__["status"] = status
846
949
  return TemDomain(resource_name, opts=opts, __props__=__props__)
847
950
 
848
- @property
951
+ @_builtins.property
849
952
  @pulumi.getter(name="acceptTos")
850
- def accept_tos(self) -> pulumi.Output[bool]:
953
+ def accept_tos(self) -> pulumi.Output[_builtins.bool]:
851
954
  """
852
955
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
853
956
  > **Important:** This attribute must be set to `true`.
854
957
  """
855
958
  return pulumi.get(self, "accept_tos")
856
959
 
857
- @property
960
+ @_builtins.property
858
961
  @pulumi.getter
859
- def autoconfig(self) -> pulumi.Output[Optional[bool]]:
962
+ def autoconfig(self) -> pulumi.Output[Optional[_builtins.bool]]:
860
963
  """
861
964
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
862
965
  """
863
966
  return pulumi.get(self, "autoconfig")
864
967
 
865
- @property
968
+ @_builtins.property
866
969
  @pulumi.getter(name="createdAt")
867
- def created_at(self) -> pulumi.Output[str]:
970
+ def created_at(self) -> pulumi.Output[_builtins.str]:
868
971
  """
869
972
  The date and time of the Transaction Email Domain's creation (RFC 3339 format).
870
973
  """
871
974
  return pulumi.get(self, "created_at")
872
975
 
873
- @property
976
+ @_builtins.property
874
977
  @pulumi.getter(name="dkimConfig")
875
- def dkim_config(self) -> pulumi.Output[str]:
978
+ def dkim_config(self) -> pulumi.Output[_builtins.str]:
876
979
  """
877
980
  The DKIM public key, as should be recorded in the DNS zone.
878
981
  """
879
982
  return pulumi.get(self, "dkim_config")
880
983
 
881
- @property
984
+ @_builtins.property
985
+ @pulumi.getter(name="dkimName")
986
+ def dkim_name(self) -> pulumi.Output[_builtins.str]:
987
+ """
988
+ DKIM name for the domain, as should be recorded in the DNS zone.
989
+ """
990
+ return pulumi.get(self, "dkim_name")
991
+
992
+ @_builtins.property
882
993
  @pulumi.getter(name="dmarcConfig")
883
- def dmarc_config(self) -> pulumi.Output[str]:
994
+ def dmarc_config(self) -> pulumi.Output[_builtins.str]:
884
995
  """
885
996
  DMARC record for the domain, as should be recorded in the DNS zone.
886
997
  """
887
998
  return pulumi.get(self, "dmarc_config")
888
999
 
889
- @property
1000
+ @_builtins.property
890
1001
  @pulumi.getter(name="dmarcName")
891
- def dmarc_name(self) -> pulumi.Output[str]:
1002
+ def dmarc_name(self) -> pulumi.Output[_builtins.str]:
892
1003
  """
893
1004
  DMARC name for the domain, as should be recorded in the DNS zone.
894
1005
  """
895
1006
  return pulumi.get(self, "dmarc_name")
896
1007
 
897
- @property
1008
+ @_builtins.property
898
1009
  @pulumi.getter(name="lastError")
899
1010
  @_utilities.deprecated("""last_error is deprecated""")
900
- def last_error(self) -> pulumi.Output[str]:
1011
+ def last_error(self) -> pulumi.Output[_builtins.str]:
901
1012
  """
902
1013
  (Deprecated) The error message if the last check failed.
903
1014
  """
904
1015
  return pulumi.get(self, "last_error")
905
1016
 
906
- @property
1017
+ @_builtins.property
907
1018
  @pulumi.getter(name="lastValidAt")
908
- def last_valid_at(self) -> pulumi.Output[str]:
1019
+ def last_valid_at(self) -> pulumi.Output[_builtins.str]:
909
1020
  """
910
1021
  The date and time the domain was last found to be valid (RFC 3339 format).
911
1022
  """
912
1023
  return pulumi.get(self, "last_valid_at")
913
1024
 
914
- @property
1025
+ @_builtins.property
915
1026
  @pulumi.getter(name="mxBlackhole")
916
- def mx_blackhole(self) -> pulumi.Output[str]:
1027
+ def mx_blackhole(self) -> pulumi.Output[_builtins.str]:
917
1028
  """
918
1029
  The Scaleway's blackhole MX server to use if you do not have one.
919
1030
  """
920
1031
  return pulumi.get(self, "mx_blackhole")
921
1032
 
922
- @property
1033
+ @_builtins.property
1034
+ @pulumi.getter(name="mxConfig")
1035
+ def mx_config(self) -> pulumi.Output[_builtins.str]:
1036
+ """
1037
+ MX record configuration for the domain blackhole.
1038
+ """
1039
+ return pulumi.get(self, "mx_config")
1040
+
1041
+ @_builtins.property
923
1042
  @pulumi.getter
924
- def name(self) -> pulumi.Output[str]:
1043
+ def name(self) -> pulumi.Output[_builtins.str]:
925
1044
  """
926
1045
  The domain name, must not be used in another Transactional Email Domain.
927
1046
  > **Important:** Updates to `name` will recreate the domain.
928
1047
  """
929
1048
  return pulumi.get(self, "name")
930
1049
 
931
- @property
1050
+ @_builtins.property
932
1051
  @pulumi.getter(name="nextCheckAt")
933
- def next_check_at(self) -> pulumi.Output[str]:
1052
+ def next_check_at(self) -> pulumi.Output[_builtins.str]:
934
1053
  """
935
1054
  The date and time of the next scheduled check (RFC 3339 format).
936
1055
  """
937
1056
  return pulumi.get(self, "next_check_at")
938
1057
 
939
- @property
1058
+ @_builtins.property
940
1059
  @pulumi.getter(name="projectId")
941
- def project_id(self) -> pulumi.Output[str]:
1060
+ def project_id(self) -> pulumi.Output[_builtins.str]:
942
1061
  """
943
1062
  `project_id`) The ID of the project the domain is associated with.
944
1063
  """
945
1064
  return pulumi.get(self, "project_id")
946
1065
 
947
- @property
1066
+ @_builtins.property
948
1067
  @pulumi.getter
949
- def region(self) -> pulumi.Output[str]:
1068
+ def region(self) -> pulumi.Output[Optional[_builtins.str]]:
950
1069
  """
951
1070
  `region`). The region in which the domain should be created.
952
1071
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
953
1072
  """
954
1073
  return pulumi.get(self, "region")
955
1074
 
956
- @property
1075
+ @_builtins.property
957
1076
  @pulumi.getter
958
1077
  def reputations(self) -> pulumi.Output[Sequence['outputs.TemDomainReputation']]:
959
1078
  """
@@ -961,81 +1080,89 @@ class TemDomain(pulumi.CustomResource):
961
1080
  """
962
1081
  return pulumi.get(self, "reputations")
963
1082
 
964
- @property
1083
+ @_builtins.property
965
1084
  @pulumi.getter(name="revokedAt")
966
- def revoked_at(self) -> pulumi.Output[str]:
1085
+ def revoked_at(self) -> pulumi.Output[_builtins.str]:
967
1086
  """
968
1087
  The date and time of the revocation of the domain (RFC 3339 format).
969
1088
  """
970
1089
  return pulumi.get(self, "revoked_at")
971
1090
 
972
- @property
1091
+ @_builtins.property
973
1092
  @pulumi.getter(name="smtpHost")
974
- def smtp_host(self) -> pulumi.Output[str]:
1093
+ def smtp_host(self) -> pulumi.Output[_builtins.str]:
975
1094
  """
976
1095
  The SMTP host to use to send emails.
977
1096
  """
978
1097
  return pulumi.get(self, "smtp_host")
979
1098
 
980
- @property
1099
+ @_builtins.property
981
1100
  @pulumi.getter(name="smtpPort")
982
- def smtp_port(self) -> pulumi.Output[int]:
1101
+ def smtp_port(self) -> pulumi.Output[_builtins.int]:
983
1102
  """
984
1103
  The SMTP port to use to send emails over TLS.
985
1104
  """
986
1105
  return pulumi.get(self, "smtp_port")
987
1106
 
988
- @property
1107
+ @_builtins.property
989
1108
  @pulumi.getter(name="smtpPortAlternative")
990
- def smtp_port_alternative(self) -> pulumi.Output[int]:
1109
+ def smtp_port_alternative(self) -> pulumi.Output[_builtins.int]:
991
1110
  """
992
1111
  The SMTP port to use to send emails over TLS.
993
1112
  """
994
1113
  return pulumi.get(self, "smtp_port_alternative")
995
1114
 
996
- @property
1115
+ @_builtins.property
997
1116
  @pulumi.getter(name="smtpPortUnsecure")
998
- def smtp_port_unsecure(self) -> pulumi.Output[int]:
1117
+ def smtp_port_unsecure(self) -> pulumi.Output[_builtins.int]:
999
1118
  """
1000
1119
  The SMTP port to use to send emails.
1001
1120
  """
1002
1121
  return pulumi.get(self, "smtp_port_unsecure")
1003
1122
 
1004
- @property
1123
+ @_builtins.property
1005
1124
  @pulumi.getter(name="smtpsAuthUser")
1006
- def smtps_auth_user(self) -> pulumi.Output[str]:
1125
+ def smtps_auth_user(self) -> pulumi.Output[_builtins.str]:
1007
1126
  """
1008
1127
  SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
1009
1128
  """
1010
1129
  return pulumi.get(self, "smtps_auth_user")
1011
1130
 
1012
- @property
1131
+ @_builtins.property
1013
1132
  @pulumi.getter(name="smtpsPort")
1014
- def smtps_port(self) -> pulumi.Output[int]:
1133
+ def smtps_port(self) -> pulumi.Output[_builtins.int]:
1015
1134
  """
1016
1135
  The SMTPS port to use to send emails over TLS Wrapper.
1017
1136
  """
1018
1137
  return pulumi.get(self, "smtps_port")
1019
1138
 
1020
- @property
1139
+ @_builtins.property
1021
1140
  @pulumi.getter(name="smtpsPortAlternative")
1022
- def smtps_port_alternative(self) -> pulumi.Output[int]:
1141
+ def smtps_port_alternative(self) -> pulumi.Output[_builtins.int]:
1023
1142
  """
1024
1143
  The SMTPS port to use to send emails over TLS Wrapper.
1025
1144
  """
1026
1145
  return pulumi.get(self, "smtps_port_alternative")
1027
1146
 
1028
- @property
1147
+ @_builtins.property
1029
1148
  @pulumi.getter(name="spfConfig")
1030
- def spf_config(self) -> pulumi.Output[str]:
1149
+ def spf_config(self) -> pulumi.Output[_builtins.str]:
1031
1150
  """
1032
1151
  The snippet of the SPF record that should be registered in the DNS zone.
1033
1152
  """
1034
1153
  return pulumi.get(self, "spf_config")
1035
1154
 
1036
- @property
1155
+ @_builtins.property
1156
+ @pulumi.getter(name="spfValue")
1157
+ def spf_value(self) -> pulumi.Output[_builtins.str]:
1158
+ """
1159
+ Complete SPF record value for the domain, as should be recorded in the DNS zone.
1160
+ """
1161
+ return pulumi.get(self, "spf_value")
1162
+
1163
+ @_builtins.property
1037
1164
  @pulumi.getter
1038
- def status(self) -> pulumi.Output[str]:
1165
+ def status(self) -> pulumi.Output[_builtins.str]:
1039
1166
  """
1040
1167
  The status of the domain's reputation.
1041
1168
  """