pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.31.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (499) hide show
  1. pulumiverse_scaleway/__init__.py +38 -1
  2. pulumiverse_scaleway/_inputs.py +2331 -2160
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +2 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +9 -8
  6. pulumiverse_scaleway/account/get_project.py +21 -20
  7. pulumiverse_scaleway/account/get_projects.py +28 -21
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +20 -19
  10. pulumiverse_scaleway/account/project.py +59 -57
  11. pulumiverse_scaleway/account/ssh_key.py +87 -85
  12. pulumiverse_scaleway/account_project.py +59 -57
  13. pulumiverse_scaleway/account_ssh_key.py +87 -85
  14. pulumiverse_scaleway/apple_silicon_server.py +251 -155
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
  17. pulumiverse_scaleway/applesilicon/outputs.py +54 -21
  18. pulumiverse_scaleway/applesilicon/server.py +251 -155
  19. pulumiverse_scaleway/autoscaling/__init__.py +13 -0
  20. pulumiverse_scaleway/autoscaling/_inputs.py +559 -0
  21. pulumiverse_scaleway/autoscaling/instance_group.py +808 -0
  22. pulumiverse_scaleway/autoscaling/instance_policy.py +635 -0
  23. pulumiverse_scaleway/autoscaling/instance_template.py +879 -0
  24. pulumiverse_scaleway/autoscaling/outputs.py +439 -0
  25. pulumiverse_scaleway/baremetal_server.py +262 -260
  26. pulumiverse_scaleway/billing/__init__.py +2 -1
  27. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  28. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  29. pulumiverse_scaleway/billing/outputs.py +73 -72
  30. pulumiverse_scaleway/block/__init__.py +2 -1
  31. pulumiverse_scaleway/block/_inputs.py +12 -11
  32. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  33. pulumiverse_scaleway/block/get_volume.py +28 -27
  34. pulumiverse_scaleway/block/outputs.py +14 -13
  35. pulumiverse_scaleway/block/snapshot.py +73 -71
  36. pulumiverse_scaleway/block/volume.py +115 -113
  37. pulumiverse_scaleway/block_snapshot.py +73 -71
  38. pulumiverse_scaleway/block_volume.py +115 -113
  39. pulumiverse_scaleway/cockpit.py +38 -36
  40. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  41. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  42. pulumiverse_scaleway/cockpit_source.py +115 -113
  43. pulumiverse_scaleway/cockpit_token.py +66 -64
  44. pulumiverse_scaleway/config/__init__.py +2 -1
  45. pulumiverse_scaleway/config/__init__.pyi +2 -1
  46. pulumiverse_scaleway/config/vars.py +2 -1
  47. pulumiverse_scaleway/container.py +573 -343
  48. pulumiverse_scaleway/container_cron.py +80 -78
  49. pulumiverse_scaleway/container_domain.py +52 -50
  50. pulumiverse_scaleway/container_namespace.py +211 -140
  51. pulumiverse_scaleway/container_token.py +80 -78
  52. pulumiverse_scaleway/container_trigger.py +59 -57
  53. pulumiverse_scaleway/containers/__init__.py +2 -1
  54. pulumiverse_scaleway/containers/_inputs.py +72 -71
  55. pulumiverse_scaleway/containers/container.py +573 -343
  56. pulumiverse_scaleway/containers/cron.py +80 -78
  57. pulumiverse_scaleway/containers/domain.py +52 -50
  58. pulumiverse_scaleway/containers/get_container.py +87 -42
  59. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  60. pulumiverse_scaleway/containers/namespace.py +211 -140
  61. pulumiverse_scaleway/containers/outputs.py +62 -61
  62. pulumiverse_scaleway/containers/token.py +80 -78
  63. pulumiverse_scaleway/containers/trigger.py +59 -57
  64. pulumiverse_scaleway/database.py +66 -64
  65. pulumiverse_scaleway/database_acl.py +31 -29
  66. pulumiverse_scaleway/database_backup.py +101 -99
  67. pulumiverse_scaleway/database_instance.py +297 -295
  68. pulumiverse_scaleway/database_privilege.py +73 -71
  69. pulumiverse_scaleway/database_read_replica.py +45 -43
  70. pulumiverse_scaleway/database_user.py +73 -71
  71. pulumiverse_scaleway/databases/__init__.py +2 -1
  72. pulumiverse_scaleway/databases/_inputs.py +191 -190
  73. pulumiverse_scaleway/databases/acl.py +31 -29
  74. pulumiverse_scaleway/databases/database.py +66 -64
  75. pulumiverse_scaleway/databases/database_backup.py +101 -99
  76. pulumiverse_scaleway/databases/get_acl.py +13 -12
  77. pulumiverse_scaleway/databases/get_database.py +19 -18
  78. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  79. pulumiverse_scaleway/databases/get_instance.py +43 -42
  80. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  81. pulumiverse_scaleway/databases/instance.py +297 -295
  82. pulumiverse_scaleway/databases/outputs.py +188 -187
  83. pulumiverse_scaleway/databases/privilege.py +73 -71
  84. pulumiverse_scaleway/databases/read_replica.py +45 -43
  85. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  86. pulumiverse_scaleway/databases/snapshot.py +101 -99
  87. pulumiverse_scaleway/databases/user.py +73 -71
  88. pulumiverse_scaleway/domain/__init__.py +2 -1
  89. pulumiverse_scaleway/domain/_inputs.py +531 -530
  90. pulumiverse_scaleway/domain/get_record.py +38 -37
  91. pulumiverse_scaleway/domain/get_zone.py +24 -23
  92. pulumiverse_scaleway/domain/outputs.py +358 -357
  93. pulumiverse_scaleway/domain/record.py +129 -127
  94. pulumiverse_scaleway/domain/registration.py +94 -92
  95. pulumiverse_scaleway/domain/zone.py +87 -85
  96. pulumiverse_scaleway/domain_record.py +129 -127
  97. pulumiverse_scaleway/domain_zone.py +87 -85
  98. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  99. pulumiverse_scaleway/edge_services_cache_stage.py +162 -113
  100. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  101. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  102. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  103. pulumiverse_scaleway/edge_services_plan.py +31 -29
  104. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  105. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  106. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  107. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  108. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  109. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  110. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  111. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  112. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  113. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  114. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  115. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  116. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  117. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  118. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  119. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  120. pulumiverse_scaleway/file_filesystem.py +552 -0
  121. pulumiverse_scaleway/flexible_ip.py +139 -137
  122. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  123. pulumiverse_scaleway/function.py +394 -284
  124. pulumiverse_scaleway/function_cron.py +80 -78
  125. pulumiverse_scaleway/function_domain.py +52 -50
  126. pulumiverse_scaleway/function_namespace.py +197 -126
  127. pulumiverse_scaleway/function_token.py +80 -78
  128. pulumiverse_scaleway/function_trigger.py +59 -57
  129. pulumiverse_scaleway/functions/__init__.py +2 -1
  130. pulumiverse_scaleway/functions/_inputs.py +42 -41
  131. pulumiverse_scaleway/functions/cron.py +80 -78
  132. pulumiverse_scaleway/functions/domain.py +52 -50
  133. pulumiverse_scaleway/functions/function.py +394 -284
  134. pulumiverse_scaleway/functions/get_function.py +69 -46
  135. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  136. pulumiverse_scaleway/functions/namespace.py +197 -126
  137. pulumiverse_scaleway/functions/outputs.py +26 -25
  138. pulumiverse_scaleway/functions/token.py +80 -78
  139. pulumiverse_scaleway/functions/trigger.py +59 -57
  140. pulumiverse_scaleway/get_account_project.py +21 -20
  141. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  142. pulumiverse_scaleway/get_availability_zones.py +9 -8
  143. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  144. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  145. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  146. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  147. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  148. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  149. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  150. pulumiverse_scaleway/get_block_volume.py +28 -27
  151. pulumiverse_scaleway/get_cockpit.py +10 -9
  152. pulumiverse_scaleway/get_cockpit_source.py +77 -33
  153. pulumiverse_scaleway/get_config.py +13 -12
  154. pulumiverse_scaleway/get_container.py +87 -42
  155. pulumiverse_scaleway/get_container_namespace.py +43 -31
  156. pulumiverse_scaleway/get_database.py +19 -18
  157. pulumiverse_scaleway/get_database_acl.py +13 -12
  158. pulumiverse_scaleway/get_database_backup.py +34 -33
  159. pulumiverse_scaleway/get_database_instance.py +43 -42
  160. pulumiverse_scaleway/get_database_privilege.py +24 -23
  161. pulumiverse_scaleway/get_domain_record.py +38 -37
  162. pulumiverse_scaleway/get_domain_zone.py +24 -23
  163. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  164. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  165. pulumiverse_scaleway/get_function.py +69 -46
  166. pulumiverse_scaleway/get_function_namespace.py +42 -30
  167. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  168. pulumiverse_scaleway/get_iam_application.py +23 -22
  169. pulumiverse_scaleway/get_iam_group.py +25 -24
  170. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  171. pulumiverse_scaleway/get_iam_user.py +23 -22
  172. pulumiverse_scaleway/get_instance_image.py +42 -41
  173. pulumiverse_scaleway/get_instance_ip.py +20 -19
  174. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  175. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  176. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  177. pulumiverse_scaleway/get_instance_server.py +59 -47
  178. pulumiverse_scaleway/get_instance_servers.py +24 -23
  179. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  180. pulumiverse_scaleway/get_instance_volume.py +30 -29
  181. pulumiverse_scaleway/get_iot_device.py +31 -30
  182. pulumiverse_scaleway/get_iot_hub.py +39 -38
  183. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  184. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  185. pulumiverse_scaleway/get_k8s_version.py +16 -15
  186. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  187. pulumiverse_scaleway/get_kubernetes_node_pool.py +59 -47
  188. pulumiverse_scaleway/get_lb_acls.py +22 -21
  189. pulumiverse_scaleway/get_lb_backend.py +43 -42
  190. pulumiverse_scaleway/get_lb_backends.py +22 -21
  191. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  192. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  193. pulumiverse_scaleway/get_lb_ips.py +29 -28
  194. pulumiverse_scaleway/get_lb_route.py +16 -15
  195. pulumiverse_scaleway/get_lb_routes.py +17 -16
  196. pulumiverse_scaleway/get_lbs.py +24 -23
  197. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  198. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  199. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  200. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  201. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  202. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  203. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  204. pulumiverse_scaleway/get_object_bucket.py +22 -21
  205. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  206. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  207. pulumiverse_scaleway/get_registry_image.py +37 -36
  208. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  209. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  210. pulumiverse_scaleway/get_secret.py +41 -40
  211. pulumiverse_scaleway/get_secret_version.py +34 -33
  212. pulumiverse_scaleway/get_tem_domain.py +43 -42
  213. pulumiverse_scaleway/get_vpc.py +47 -35
  214. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  215. pulumiverse_scaleway/get_vpc_private_network.py +44 -32
  216. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  217. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  218. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  219. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  220. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  221. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  222. pulumiverse_scaleway/get_vpcs.py +24 -23
  223. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  224. pulumiverse_scaleway/get_webhosting.py +36 -35
  225. pulumiverse_scaleway/hosting/__init__.py +2 -1
  226. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  227. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  228. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  229. pulumiverse_scaleway/hosting/hosting.py +164 -162
  230. pulumiverse_scaleway/hosting/outputs.py +139 -138
  231. pulumiverse_scaleway/iam/__init__.py +2 -1
  232. pulumiverse_scaleway/iam/_inputs.py +22 -21
  233. pulumiverse_scaleway/iam/api_key.py +115 -113
  234. pulumiverse_scaleway/iam/application.py +80 -78
  235. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  236. pulumiverse_scaleway/iam/get_application.py +23 -22
  237. pulumiverse_scaleway/iam/get_group.py +25 -24
  238. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  239. pulumiverse_scaleway/iam/get_user.py +23 -22
  240. pulumiverse_scaleway/iam/group.py +115 -113
  241. pulumiverse_scaleway/iam/group_membership.py +45 -43
  242. pulumiverse_scaleway/iam/outputs.py +14 -13
  243. pulumiverse_scaleway/iam/policy.py +136 -134
  244. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  245. pulumiverse_scaleway/iam/user.py +284 -273
  246. pulumiverse_scaleway/iam_api_key.py +115 -113
  247. pulumiverse_scaleway/iam_application.py +80 -78
  248. pulumiverse_scaleway/iam_group.py +115 -113
  249. pulumiverse_scaleway/iam_group_membership.py +45 -43
  250. pulumiverse_scaleway/iam_policy.py +136 -134
  251. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  252. pulumiverse_scaleway/iam_user.py +284 -273
  253. pulumiverse_scaleway/inference/__init__.py +2 -1
  254. pulumiverse_scaleway/inference/_inputs.py +116 -61
  255. pulumiverse_scaleway/inference/deployment.py +225 -176
  256. pulumiverse_scaleway/inference/get_model.py +27 -26
  257. pulumiverse_scaleway/inference/model.py +129 -127
  258. pulumiverse_scaleway/inference/outputs.py +82 -49
  259. pulumiverse_scaleway/inference_deployment.py +225 -176
  260. pulumiverse_scaleway/instance/__init__.py +2 -1
  261. pulumiverse_scaleway/instance/_inputs.py +296 -295
  262. pulumiverse_scaleway/instance/get_image.py +42 -41
  263. pulumiverse_scaleway/instance/get_ip.py +20 -19
  264. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  265. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  266. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  267. pulumiverse_scaleway/instance/get_server.py +59 -47
  268. pulumiverse_scaleway/instance/get_servers.py +24 -23
  269. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  270. pulumiverse_scaleway/instance/get_volume.py +30 -29
  271. pulumiverse_scaleway/instance/image.py +150 -148
  272. pulumiverse_scaleway/instance/ip.py +94 -92
  273. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  274. pulumiverse_scaleway/instance/outputs.py +349 -348
  275. pulumiverse_scaleway/instance/placement_group.py +101 -99
  276. pulumiverse_scaleway/instance/private_nic.py +94 -92
  277. pulumiverse_scaleway/instance/security_group.py +150 -148
  278. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  279. pulumiverse_scaleway/instance/server.py +393 -330
  280. pulumiverse_scaleway/instance/snapshot.py +108 -106
  281. pulumiverse_scaleway/instance/user_data.py +59 -57
  282. pulumiverse_scaleway/instance/volume.py +129 -127
  283. pulumiverse_scaleway/instance_image.py +150 -148
  284. pulumiverse_scaleway/instance_ip.py +94 -92
  285. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  286. pulumiverse_scaleway/instance_placement_group.py +101 -99
  287. pulumiverse_scaleway/instance_private_nic.py +94 -92
  288. pulumiverse_scaleway/instance_security_group.py +150 -148
  289. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  290. pulumiverse_scaleway/instance_server.py +393 -330
  291. pulumiverse_scaleway/instance_snapshot.py +108 -106
  292. pulumiverse_scaleway/instance_user_data.py +59 -57
  293. pulumiverse_scaleway/instance_volume.py +129 -127
  294. pulumiverse_scaleway/iot/__init__.py +2 -1
  295. pulumiverse_scaleway/iot/_inputs.py +98 -97
  296. pulumiverse_scaleway/iot/device.py +122 -120
  297. pulumiverse_scaleway/iot/get_device.py +31 -30
  298. pulumiverse_scaleway/iot/get_hub.py +39 -38
  299. pulumiverse_scaleway/iot/hub.py +206 -204
  300. pulumiverse_scaleway/iot/network.py +94 -92
  301. pulumiverse_scaleway/iot/outputs.py +78 -77
  302. pulumiverse_scaleway/iot/route.py +66 -64
  303. pulumiverse_scaleway/iot_device.py +122 -120
  304. pulumiverse_scaleway/iot_hub.py +206 -204
  305. pulumiverse_scaleway/iot_network.py +94 -92
  306. pulumiverse_scaleway/iot_route.py +66 -64
  307. pulumiverse_scaleway/ipam/__init__.py +2 -1
  308. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  309. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  310. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  311. pulumiverse_scaleway/ipam/ip.py +94 -92
  312. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  313. pulumiverse_scaleway/ipam/outputs.py +90 -89
  314. pulumiverse_scaleway/ipam_ip.py +94 -92
  315. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  316. pulumiverse_scaleway/job/__init__.py +2 -1
  317. pulumiverse_scaleway/job/_inputs.py +38 -37
  318. pulumiverse_scaleway/job/definition.py +143 -141
  319. pulumiverse_scaleway/job/outputs.py +24 -23
  320. pulumiverse_scaleway/job_definition.py +143 -141
  321. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  322. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  323. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  324. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  326. pulumiverse_scaleway/kubernetes/get_pool.py +59 -47
  327. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  328. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  329. pulumiverse_scaleway/kubernetes/pool.py +351 -288
  330. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  331. pulumiverse_scaleway/kubernetes_node_pool.py +351 -288
  332. pulumiverse_scaleway/loadbalancer.py +199 -197
  333. pulumiverse_scaleway/loadbalancer_acl.py +80 -78
  334. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  335. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  336. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  337. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  338. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  339. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  340. pulumiverse_scaleway/loadbalancers/_inputs.py +263 -222
  341. pulumiverse_scaleway/loadbalancers/acl.py +80 -78
  342. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  343. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  344. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  345. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  346. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  347. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  348. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  350. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  351. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  352. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  353. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  354. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  355. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  356. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  357. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  358. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  359. pulumiverse_scaleway/loadbalancers/outputs.py +581 -530
  360. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  361. pulumiverse_scaleway/mnq/__init__.py +2 -1
  362. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  363. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  364. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  365. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  366. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  367. pulumiverse_scaleway/mnq/outputs.py +20 -19
  368. pulumiverse_scaleway/mnq/sns.py +38 -36
  369. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  370. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  371. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  372. pulumiverse_scaleway/mnq/sqs.py +38 -36
  373. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  374. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  375. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  376. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  377. pulumiverse_scaleway/mnq_sns.py +38 -36
  378. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  379. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  380. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  381. pulumiverse_scaleway/mnq_sqs.py +38 -36
  382. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  383. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  384. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  385. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  386. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  387. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  388. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  389. pulumiverse_scaleway/mongodb/instance.py +199 -197
  390. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  391. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  392. pulumiverse_scaleway/network/__init__.py +2 -1
  393. pulumiverse_scaleway/network/_inputs.py +140 -139
  394. pulumiverse_scaleway/network/acl.py +59 -57
  395. pulumiverse_scaleway/network/gateway_network.py +143 -141
  396. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  397. pulumiverse_scaleway/network/get_private_network.py +44 -32
  398. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  399. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  400. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  401. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  402. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  403. pulumiverse_scaleway/network/get_routes.py +38 -37
  404. pulumiverse_scaleway/network/get_vpc.py +47 -35
  405. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  406. pulumiverse_scaleway/network/outputs.py +206 -205
  407. pulumiverse_scaleway/network/private_network.py +170 -121
  408. pulumiverse_scaleway/network/public_gateway.py +213 -211
  409. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  410. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  411. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  412. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  413. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  414. pulumiverse_scaleway/network/route.py +115 -113
  415. pulumiverse_scaleway/network/vpc.py +149 -100
  416. pulumiverse_scaleway/object/__init__.py +2 -1
  417. pulumiverse_scaleway/object/_inputs.py +157 -134
  418. pulumiverse_scaleway/object/bucket.py +115 -113
  419. pulumiverse_scaleway/object/bucket_acl.py +79 -75
  420. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  421. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  422. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  423. pulumiverse_scaleway/object/get_bucket.py +22 -21
  424. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  425. pulumiverse_scaleway/object/item.py +232 -183
  426. pulumiverse_scaleway/object/outputs.py +133 -118
  427. pulumiverse_scaleway/object_bucket.py +115 -113
  428. pulumiverse_scaleway/object_bucket_acl.py +79 -75
  429. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  430. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  431. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  432. pulumiverse_scaleway/object_item.py +232 -183
  433. pulumiverse_scaleway/observability/__init__.py +2 -1
  434. pulumiverse_scaleway/observability/_inputs.py +89 -88
  435. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  436. pulumiverse_scaleway/observability/cockpit.py +38 -36
  437. pulumiverse_scaleway/observability/get_instance.py +10 -9
  438. pulumiverse_scaleway/observability/get_source.py +77 -33
  439. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  440. pulumiverse_scaleway/observability/outputs.py +77 -76
  441. pulumiverse_scaleway/observability/source.py +115 -113
  442. pulumiverse_scaleway/observability/token.py +66 -64
  443. pulumiverse_scaleway/outputs.py +2870 -2741
  444. pulumiverse_scaleway/provider.py +87 -65
  445. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  446. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  447. pulumiverse_scaleway/redis/__init__.py +2 -1
  448. pulumiverse_scaleway/redis/_inputs.py +63 -62
  449. pulumiverse_scaleway/redis/cluster.py +178 -176
  450. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  451. pulumiverse_scaleway/redis/outputs.py +74 -73
  452. pulumiverse_scaleway/redis_cluster.py +178 -176
  453. pulumiverse_scaleway/registry/__init__.py +2 -1
  454. pulumiverse_scaleway/registry/get_image.py +37 -36
  455. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  456. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  457. pulumiverse_scaleway/registry/namespace.py +87 -85
  458. pulumiverse_scaleway/registry_namespace.py +87 -85
  459. pulumiverse_scaleway/sdb_database.py +80 -78
  460. pulumiverse_scaleway/secret.py +143 -141
  461. pulumiverse_scaleway/secret_version.py +87 -85
  462. pulumiverse_scaleway/secrets/__init__.py +2 -1
  463. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  464. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  465. pulumiverse_scaleway/secrets/get_version.py +34 -33
  466. pulumiverse_scaleway/secrets/outputs.py +64 -63
  467. pulumiverse_scaleway/secrets/secret.py +143 -141
  468. pulumiverse_scaleway/secrets/version.py +87 -85
  469. pulumiverse_scaleway/tem/__init__.py +2 -1
  470. pulumiverse_scaleway/tem/_inputs.py +28 -27
  471. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  472. pulumiverse_scaleway/tem/domain.py +199 -197
  473. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem/get_domain.py +43 -42
  475. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  476. pulumiverse_scaleway/tem/outputs.py +34 -33
  477. pulumiverse_scaleway/tem/webhook.py +108 -106
  478. pulumiverse_scaleway/tem_domain.py +199 -197
  479. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  480. pulumiverse_scaleway/tem_webhook.py +108 -106
  481. pulumiverse_scaleway/vpc.py +149 -100
  482. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  483. pulumiverse_scaleway/vpc_private_network.py +170 -121
  484. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  485. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  486. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  487. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  488. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  489. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  490. pulumiverse_scaleway/vpc_route.py +115 -113
  491. pulumiverse_scaleway/webhosting.py +164 -162
  492. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/METADATA +2 -2
  493. pulumiverse_scaleway-1.31.0.dist-info/RECORD +496 -0
  494. pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +0 -177
  495. pulumiverse_scaleway/get_cockpit_plan.py +0 -94
  496. pulumiverse_scaleway/observability/get_plan.py +0 -90
  497. pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
  498. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -21,20 +22,20 @@ __all__ = ['TemDomainArgs', 'TemDomain']
21
22
  @pulumi.input_type
22
23
  class TemDomainArgs:
23
24
  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):
25
+ accept_tos: pulumi.Input[builtins.bool],
26
+ autoconfig: Optional[pulumi.Input[builtins.bool]] = None,
27
+ name: Optional[pulumi.Input[builtins.str]] = None,
28
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
29
+ region: Optional[pulumi.Input[builtins.str]] = None):
29
30
  """
30
31
  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).
32
+ :param pulumi.Input[builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
32
33
  > **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.
34
+ :param pulumi.Input[builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
35
+ :param pulumi.Input[builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
35
36
  > **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.
37
+ :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
38
+ :param pulumi.Input[builtins.str] region: `region`). The region in which the domain should be created.
38
39
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
39
40
  """
40
41
  pulumi.set(__self__, "accept_tos", accept_tos)
@@ -49,7 +50,7 @@ class TemDomainArgs:
49
50
 
50
51
  @property
51
52
  @pulumi.getter(name="acceptTos")
52
- def accept_tos(self) -> pulumi.Input[bool]:
53
+ def accept_tos(self) -> pulumi.Input[builtins.bool]:
53
54
  """
54
55
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
55
56
  > **Important:** This attribute must be set to `true`.
@@ -57,24 +58,24 @@ class TemDomainArgs:
57
58
  return pulumi.get(self, "accept_tos")
58
59
 
59
60
  @accept_tos.setter
60
- def accept_tos(self, value: pulumi.Input[bool]):
61
+ def accept_tos(self, value: pulumi.Input[builtins.bool]):
61
62
  pulumi.set(self, "accept_tos", value)
62
63
 
63
64
  @property
64
65
  @pulumi.getter
65
- def autoconfig(self) -> Optional[pulumi.Input[bool]]:
66
+ def autoconfig(self) -> Optional[pulumi.Input[builtins.bool]]:
66
67
  """
67
68
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
68
69
  """
69
70
  return pulumi.get(self, "autoconfig")
70
71
 
71
72
  @autoconfig.setter
72
- def autoconfig(self, value: Optional[pulumi.Input[bool]]):
73
+ def autoconfig(self, value: Optional[pulumi.Input[builtins.bool]]):
73
74
  pulumi.set(self, "autoconfig", value)
74
75
 
75
76
  @property
76
77
  @pulumi.getter
77
- def name(self) -> Optional[pulumi.Input[str]]:
78
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
78
79
  """
79
80
  The domain name, must not be used in another Transactional Email Domain.
80
81
  > **Important:** Updates to `name` will recreate the domain.
@@ -82,24 +83,24 @@ class TemDomainArgs:
82
83
  return pulumi.get(self, "name")
83
84
 
84
85
  @name.setter
85
- def name(self, value: Optional[pulumi.Input[str]]):
86
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
86
87
  pulumi.set(self, "name", value)
87
88
 
88
89
  @property
89
90
  @pulumi.getter(name="projectId")
90
- def project_id(self) -> Optional[pulumi.Input[str]]:
91
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
91
92
  """
92
93
  `project_id`) The ID of the project the domain is associated with.
93
94
  """
94
95
  return pulumi.get(self, "project_id")
95
96
 
96
97
  @project_id.setter
97
- def project_id(self, value: Optional[pulumi.Input[str]]):
98
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
98
99
  pulumi.set(self, "project_id", value)
99
100
 
100
101
  @property
101
102
  @pulumi.getter
102
- def region(self) -> Optional[pulumi.Input[str]]:
103
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
103
104
  """
104
105
  `region`). The region in which the domain should be created.
105
106
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
@@ -107,66 +108,66 @@ class TemDomainArgs:
107
108
  return pulumi.get(self, "region")
108
109
 
109
110
  @region.setter
110
- def region(self, value: Optional[pulumi.Input[str]]):
111
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
111
112
  pulumi.set(self, "region", value)
112
113
 
113
114
 
114
115
  @pulumi.input_type
115
116
  class _TemDomainState:
116
117
  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,
118
+ accept_tos: Optional[pulumi.Input[builtins.bool]] = None,
119
+ autoconfig: Optional[pulumi.Input[builtins.bool]] = None,
120
+ created_at: Optional[pulumi.Input[builtins.str]] = None,
121
+ dkim_config: 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
+ name: Optional[pulumi.Input[builtins.str]] = None,
128
+ next_check_at: Optional[pulumi.Input[builtins.str]] = None,
129
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
130
+ region: Optional[pulumi.Input[builtins.str]] = None,
130
131
  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):
132
+ revoked_at: Optional[pulumi.Input[builtins.str]] = None,
133
+ smtp_host: Optional[pulumi.Input[builtins.str]] = None,
134
+ smtp_port: Optional[pulumi.Input[builtins.int]] = None,
135
+ smtp_port_alternative: Optional[pulumi.Input[builtins.int]] = None,
136
+ smtp_port_unsecure: Optional[pulumi.Input[builtins.int]] = None,
137
+ smtps_auth_user: Optional[pulumi.Input[builtins.str]] = None,
138
+ smtps_port: Optional[pulumi.Input[builtins.int]] = None,
139
+ smtps_port_alternative: Optional[pulumi.Input[builtins.int]] = None,
140
+ spf_config: Optional[pulumi.Input[builtins.str]] = None,
141
+ status: Optional[pulumi.Input[builtins.str]] = None):
141
142
  """
142
143
  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).
144
+ :param pulumi.Input[builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
144
145
  > **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.
146
+ :param pulumi.Input[builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
147
+ :param pulumi.Input[builtins.str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
148
+ :param pulumi.Input[builtins.str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
149
+ :param pulumi.Input[builtins.str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
150
+ :param pulumi.Input[builtins.str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
151
+ :param pulumi.Input[builtins.str] last_error: (Deprecated) The error message if the last check failed.
152
+ :param pulumi.Input[builtins.str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
153
+ :param pulumi.Input[builtins.str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
154
+ :param pulumi.Input[builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
154
155
  > **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.
156
+ :param pulumi.Input[builtins.str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
157
+ :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
158
+ :param pulumi.Input[builtins.str] region: `region`). The region in which the domain should be created.
158
159
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
159
160
  :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.
161
+ :param pulumi.Input[builtins.str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
162
+ :param pulumi.Input[builtins.str] smtp_host: The SMTP host to use to send emails.
163
+ :param pulumi.Input[builtins.int] smtp_port: The SMTP port to use to send emails over TLS.
164
+ :param pulumi.Input[builtins.int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
165
+ :param pulumi.Input[builtins.int] smtp_port_unsecure: The SMTP port to use to send emails.
166
+ :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.
167
+ :param pulumi.Input[builtins.int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
168
+ :param pulumi.Input[builtins.int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
169
+ :param pulumi.Input[builtins.str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
170
+ :param pulumi.Input[builtins.str] status: The status of the domain's reputation.
170
171
  """
171
172
  if accept_tos is not None:
172
173
  pulumi.set(__self__, "accept_tos", accept_tos)
@@ -222,7 +223,7 @@ class _TemDomainState:
222
223
 
223
224
  @property
224
225
  @pulumi.getter(name="acceptTos")
225
- def accept_tos(self) -> Optional[pulumi.Input[bool]]:
226
+ def accept_tos(self) -> Optional[pulumi.Input[builtins.bool]]:
226
227
  """
227
228
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
228
229
  > **Important:** This attribute must be set to `true`.
@@ -230,109 +231,109 @@ class _TemDomainState:
230
231
  return pulumi.get(self, "accept_tos")
231
232
 
232
233
  @accept_tos.setter
233
- def accept_tos(self, value: Optional[pulumi.Input[bool]]):
234
+ def accept_tos(self, value: Optional[pulumi.Input[builtins.bool]]):
234
235
  pulumi.set(self, "accept_tos", value)
235
236
 
236
237
  @property
237
238
  @pulumi.getter
238
- def autoconfig(self) -> Optional[pulumi.Input[bool]]:
239
+ def autoconfig(self) -> Optional[pulumi.Input[builtins.bool]]:
239
240
  """
240
241
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
241
242
  """
242
243
  return pulumi.get(self, "autoconfig")
243
244
 
244
245
  @autoconfig.setter
245
- def autoconfig(self, value: Optional[pulumi.Input[bool]]):
246
+ def autoconfig(self, value: Optional[pulumi.Input[builtins.bool]]):
246
247
  pulumi.set(self, "autoconfig", value)
247
248
 
248
249
  @property
249
250
  @pulumi.getter(name="createdAt")
250
- def created_at(self) -> Optional[pulumi.Input[str]]:
251
+ def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
251
252
  """
252
253
  The date and time of the Transaction Email Domain's creation (RFC 3339 format).
253
254
  """
254
255
  return pulumi.get(self, "created_at")
255
256
 
256
257
  @created_at.setter
257
- def created_at(self, value: Optional[pulumi.Input[str]]):
258
+ def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
258
259
  pulumi.set(self, "created_at", value)
259
260
 
260
261
  @property
261
262
  @pulumi.getter(name="dkimConfig")
262
- def dkim_config(self) -> Optional[pulumi.Input[str]]:
263
+ def dkim_config(self) -> Optional[pulumi.Input[builtins.str]]:
263
264
  """
264
265
  The DKIM public key, as should be recorded in the DNS zone.
265
266
  """
266
267
  return pulumi.get(self, "dkim_config")
267
268
 
268
269
  @dkim_config.setter
269
- def dkim_config(self, value: Optional[pulumi.Input[str]]):
270
+ def dkim_config(self, value: Optional[pulumi.Input[builtins.str]]):
270
271
  pulumi.set(self, "dkim_config", value)
271
272
 
272
273
  @property
273
274
  @pulumi.getter(name="dmarcConfig")
274
- def dmarc_config(self) -> Optional[pulumi.Input[str]]:
275
+ def dmarc_config(self) -> Optional[pulumi.Input[builtins.str]]:
275
276
  """
276
277
  DMARC record for the domain, as should be recorded in the DNS zone.
277
278
  """
278
279
  return pulumi.get(self, "dmarc_config")
279
280
 
280
281
  @dmarc_config.setter
281
- def dmarc_config(self, value: Optional[pulumi.Input[str]]):
282
+ def dmarc_config(self, value: Optional[pulumi.Input[builtins.str]]):
282
283
  pulumi.set(self, "dmarc_config", value)
283
284
 
284
285
  @property
285
286
  @pulumi.getter(name="dmarcName")
286
- def dmarc_name(self) -> Optional[pulumi.Input[str]]:
287
+ def dmarc_name(self) -> Optional[pulumi.Input[builtins.str]]:
287
288
  """
288
289
  DMARC name for the domain, as should be recorded in the DNS zone.
289
290
  """
290
291
  return pulumi.get(self, "dmarc_name")
291
292
 
292
293
  @dmarc_name.setter
293
- def dmarc_name(self, value: Optional[pulumi.Input[str]]):
294
+ def dmarc_name(self, value: Optional[pulumi.Input[builtins.str]]):
294
295
  pulumi.set(self, "dmarc_name", value)
295
296
 
296
297
  @property
297
298
  @pulumi.getter(name="lastError")
298
299
  @_utilities.deprecated("""last_error is deprecated""")
299
- def last_error(self) -> Optional[pulumi.Input[str]]:
300
+ def last_error(self) -> Optional[pulumi.Input[builtins.str]]:
300
301
  """
301
302
  (Deprecated) The error message if the last check failed.
302
303
  """
303
304
  return pulumi.get(self, "last_error")
304
305
 
305
306
  @last_error.setter
306
- def last_error(self, value: Optional[pulumi.Input[str]]):
307
+ def last_error(self, value: Optional[pulumi.Input[builtins.str]]):
307
308
  pulumi.set(self, "last_error", value)
308
309
 
309
310
  @property
310
311
  @pulumi.getter(name="lastValidAt")
311
- def last_valid_at(self) -> Optional[pulumi.Input[str]]:
312
+ def last_valid_at(self) -> Optional[pulumi.Input[builtins.str]]:
312
313
  """
313
314
  The date and time the domain was last found to be valid (RFC 3339 format).
314
315
  """
315
316
  return pulumi.get(self, "last_valid_at")
316
317
 
317
318
  @last_valid_at.setter
318
- def last_valid_at(self, value: Optional[pulumi.Input[str]]):
319
+ def last_valid_at(self, value: Optional[pulumi.Input[builtins.str]]):
319
320
  pulumi.set(self, "last_valid_at", value)
320
321
 
321
322
  @property
322
323
  @pulumi.getter(name="mxBlackhole")
323
- def mx_blackhole(self) -> Optional[pulumi.Input[str]]:
324
+ def mx_blackhole(self) -> Optional[pulumi.Input[builtins.str]]:
324
325
  """
325
326
  The Scaleway's blackhole MX server to use if you do not have one.
326
327
  """
327
328
  return pulumi.get(self, "mx_blackhole")
328
329
 
329
330
  @mx_blackhole.setter
330
- def mx_blackhole(self, value: Optional[pulumi.Input[str]]):
331
+ def mx_blackhole(self, value: Optional[pulumi.Input[builtins.str]]):
331
332
  pulumi.set(self, "mx_blackhole", value)
332
333
 
333
334
  @property
334
335
  @pulumi.getter
335
- def name(self) -> Optional[pulumi.Input[str]]:
336
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
336
337
  """
337
338
  The domain name, must not be used in another Transactional Email Domain.
338
339
  > **Important:** Updates to `name` will recreate the domain.
@@ -340,36 +341,36 @@ class _TemDomainState:
340
341
  return pulumi.get(self, "name")
341
342
 
342
343
  @name.setter
343
- def name(self, value: Optional[pulumi.Input[str]]):
344
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
344
345
  pulumi.set(self, "name", value)
345
346
 
346
347
  @property
347
348
  @pulumi.getter(name="nextCheckAt")
348
- def next_check_at(self) -> Optional[pulumi.Input[str]]:
349
+ def next_check_at(self) -> Optional[pulumi.Input[builtins.str]]:
349
350
  """
350
351
  The date and time of the next scheduled check (RFC 3339 format).
351
352
  """
352
353
  return pulumi.get(self, "next_check_at")
353
354
 
354
355
  @next_check_at.setter
355
- def next_check_at(self, value: Optional[pulumi.Input[str]]):
356
+ def next_check_at(self, value: Optional[pulumi.Input[builtins.str]]):
356
357
  pulumi.set(self, "next_check_at", value)
357
358
 
358
359
  @property
359
360
  @pulumi.getter(name="projectId")
360
- def project_id(self) -> Optional[pulumi.Input[str]]:
361
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
361
362
  """
362
363
  `project_id`) The ID of the project the domain is associated with.
363
364
  """
364
365
  return pulumi.get(self, "project_id")
365
366
 
366
367
  @project_id.setter
367
- def project_id(self, value: Optional[pulumi.Input[str]]):
368
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
368
369
  pulumi.set(self, "project_id", value)
369
370
 
370
371
  @property
371
372
  @pulumi.getter
372
- def region(self) -> Optional[pulumi.Input[str]]:
373
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
373
374
  """
374
375
  `region`). The region in which the domain should be created.
375
376
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
@@ -377,7 +378,7 @@ class _TemDomainState:
377
378
  return pulumi.get(self, "region")
378
379
 
379
380
  @region.setter
380
- def region(self, value: Optional[pulumi.Input[str]]):
381
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
381
382
  pulumi.set(self, "region", value)
382
383
 
383
384
  @property
@@ -394,128 +395,129 @@ class _TemDomainState:
394
395
 
395
396
  @property
396
397
  @pulumi.getter(name="revokedAt")
397
- def revoked_at(self) -> Optional[pulumi.Input[str]]:
398
+ def revoked_at(self) -> Optional[pulumi.Input[builtins.str]]:
398
399
  """
399
400
  The date and time of the revocation of the domain (RFC 3339 format).
400
401
  """
401
402
  return pulumi.get(self, "revoked_at")
402
403
 
403
404
  @revoked_at.setter
404
- def revoked_at(self, value: Optional[pulumi.Input[str]]):
405
+ def revoked_at(self, value: Optional[pulumi.Input[builtins.str]]):
405
406
  pulumi.set(self, "revoked_at", value)
406
407
 
407
408
  @property
408
409
  @pulumi.getter(name="smtpHost")
409
- def smtp_host(self) -> Optional[pulumi.Input[str]]:
410
+ def smtp_host(self) -> Optional[pulumi.Input[builtins.str]]:
410
411
  """
411
412
  The SMTP host to use to send emails.
412
413
  """
413
414
  return pulumi.get(self, "smtp_host")
414
415
 
415
416
  @smtp_host.setter
416
- def smtp_host(self, value: Optional[pulumi.Input[str]]):
417
+ def smtp_host(self, value: Optional[pulumi.Input[builtins.str]]):
417
418
  pulumi.set(self, "smtp_host", value)
418
419
 
419
420
  @property
420
421
  @pulumi.getter(name="smtpPort")
421
- def smtp_port(self) -> Optional[pulumi.Input[int]]:
422
+ def smtp_port(self) -> Optional[pulumi.Input[builtins.int]]:
422
423
  """
423
424
  The SMTP port to use to send emails over TLS.
424
425
  """
425
426
  return pulumi.get(self, "smtp_port")
426
427
 
427
428
  @smtp_port.setter
428
- def smtp_port(self, value: Optional[pulumi.Input[int]]):
429
+ def smtp_port(self, value: Optional[pulumi.Input[builtins.int]]):
429
430
  pulumi.set(self, "smtp_port", value)
430
431
 
431
432
  @property
432
433
  @pulumi.getter(name="smtpPortAlternative")
433
- def smtp_port_alternative(self) -> Optional[pulumi.Input[int]]:
434
+ def smtp_port_alternative(self) -> Optional[pulumi.Input[builtins.int]]:
434
435
  """
435
436
  The SMTP port to use to send emails over TLS.
436
437
  """
437
438
  return pulumi.get(self, "smtp_port_alternative")
438
439
 
439
440
  @smtp_port_alternative.setter
440
- def smtp_port_alternative(self, value: Optional[pulumi.Input[int]]):
441
+ def smtp_port_alternative(self, value: Optional[pulumi.Input[builtins.int]]):
441
442
  pulumi.set(self, "smtp_port_alternative", value)
442
443
 
443
444
  @property
444
445
  @pulumi.getter(name="smtpPortUnsecure")
445
- def smtp_port_unsecure(self) -> Optional[pulumi.Input[int]]:
446
+ def smtp_port_unsecure(self) -> Optional[pulumi.Input[builtins.int]]:
446
447
  """
447
448
  The SMTP port to use to send emails.
448
449
  """
449
450
  return pulumi.get(self, "smtp_port_unsecure")
450
451
 
451
452
  @smtp_port_unsecure.setter
452
- def smtp_port_unsecure(self, value: Optional[pulumi.Input[int]]):
453
+ def smtp_port_unsecure(self, value: Optional[pulumi.Input[builtins.int]]):
453
454
  pulumi.set(self, "smtp_port_unsecure", value)
454
455
 
455
456
  @property
456
457
  @pulumi.getter(name="smtpsAuthUser")
457
- def smtps_auth_user(self) -> Optional[pulumi.Input[str]]:
458
+ def smtps_auth_user(self) -> Optional[pulumi.Input[builtins.str]]:
458
459
  """
459
460
  SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
460
461
  """
461
462
  return pulumi.get(self, "smtps_auth_user")
462
463
 
463
464
  @smtps_auth_user.setter
464
- def smtps_auth_user(self, value: Optional[pulumi.Input[str]]):
465
+ def smtps_auth_user(self, value: Optional[pulumi.Input[builtins.str]]):
465
466
  pulumi.set(self, "smtps_auth_user", value)
466
467
 
467
468
  @property
468
469
  @pulumi.getter(name="smtpsPort")
469
- def smtps_port(self) -> Optional[pulumi.Input[int]]:
470
+ def smtps_port(self) -> Optional[pulumi.Input[builtins.int]]:
470
471
  """
471
472
  The SMTPS port to use to send emails over TLS Wrapper.
472
473
  """
473
474
  return pulumi.get(self, "smtps_port")
474
475
 
475
476
  @smtps_port.setter
476
- def smtps_port(self, value: Optional[pulumi.Input[int]]):
477
+ def smtps_port(self, value: Optional[pulumi.Input[builtins.int]]):
477
478
  pulumi.set(self, "smtps_port", value)
478
479
 
479
480
  @property
480
481
  @pulumi.getter(name="smtpsPortAlternative")
481
- def smtps_port_alternative(self) -> Optional[pulumi.Input[int]]:
482
+ def smtps_port_alternative(self) -> Optional[pulumi.Input[builtins.int]]:
482
483
  """
483
484
  The SMTPS port to use to send emails over TLS Wrapper.
484
485
  """
485
486
  return pulumi.get(self, "smtps_port_alternative")
486
487
 
487
488
  @smtps_port_alternative.setter
488
- def smtps_port_alternative(self, value: Optional[pulumi.Input[int]]):
489
+ def smtps_port_alternative(self, value: Optional[pulumi.Input[builtins.int]]):
489
490
  pulumi.set(self, "smtps_port_alternative", value)
490
491
 
491
492
  @property
492
493
  @pulumi.getter(name="spfConfig")
493
- def spf_config(self) -> Optional[pulumi.Input[str]]:
494
+ def spf_config(self) -> Optional[pulumi.Input[builtins.str]]:
494
495
  """
495
496
  The snippet of the SPF record that should be registered in the DNS zone.
496
497
  """
497
498
  return pulumi.get(self, "spf_config")
498
499
 
499
500
  @spf_config.setter
500
- def spf_config(self, value: Optional[pulumi.Input[str]]):
501
+ def spf_config(self, value: Optional[pulumi.Input[builtins.str]]):
501
502
  pulumi.set(self, "spf_config", value)
502
503
 
503
504
  @property
504
505
  @pulumi.getter
505
- def status(self) -> Optional[pulumi.Input[str]]:
506
+ def status(self) -> Optional[pulumi.Input[builtins.str]]:
506
507
  """
507
508
  The status of the domain's reputation.
508
509
  """
509
510
  return pulumi.get(self, "status")
510
511
 
511
512
  @status.setter
512
- def status(self, value: Optional[pulumi.Input[str]]):
513
+ def status(self, value: Optional[pulumi.Input[builtins.str]]):
513
514
  pulumi.set(self, "status", value)
514
515
 
515
516
 
516
517
  warnings.warn("""scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""", DeprecationWarning)
517
518
 
518
519
 
520
+ @pulumi.type_token("scaleway:index/temDomain:TemDomain")
519
521
  class TemDomain(pulumi.CustomResource):
520
522
  warnings.warn("""scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""", DeprecationWarning)
521
523
 
@@ -523,11 +525,11 @@ class TemDomain(pulumi.CustomResource):
523
525
  def __init__(__self__,
524
526
  resource_name: str,
525
527
  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,
528
+ accept_tos: Optional[pulumi.Input[builtins.bool]] = None,
529
+ autoconfig: Optional[pulumi.Input[builtins.bool]] = None,
530
+ name: Optional[pulumi.Input[builtins.str]] = None,
531
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
532
+ region: Optional[pulumi.Input[builtins.str]] = None,
531
533
  __props__=None):
532
534
  """
533
535
  Creates and manages Scaleway Transactional Email Domains.
@@ -603,13 +605,13 @@ class TemDomain(pulumi.CustomResource):
603
605
 
604
606
  :param str resource_name: The name of the resource.
605
607
  :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).
608
+ :param pulumi.Input[builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
607
609
  > **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.
610
+ :param pulumi.Input[builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
611
+ :param pulumi.Input[builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
610
612
  > **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.
613
+ :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
614
+ :param pulumi.Input[builtins.str] region: `region`). The region in which the domain should be created.
613
615
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
614
616
  """
615
617
  ...
@@ -705,11 +707,11 @@ class TemDomain(pulumi.CustomResource):
705
707
  def _internal_init(__self__,
706
708
  resource_name: str,
707
709
  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,
710
+ accept_tos: Optional[pulumi.Input[builtins.bool]] = None,
711
+ autoconfig: Optional[pulumi.Input[builtins.bool]] = None,
712
+ name: Optional[pulumi.Input[builtins.str]] = None,
713
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
714
+ region: Optional[pulumi.Input[builtins.str]] = None,
713
715
  __props__=None):
714
716
  pulumi.log.warn("""TemDomain is deprecated: scaleway.index/temdomain.TemDomain has been deprecated in favor of scaleway.tem/domain.Domain""")
715
717
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -756,30 +758,30 @@ class TemDomain(pulumi.CustomResource):
756
758
  def get(resource_name: str,
757
759
  id: pulumi.Input[str],
758
760
  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,
761
+ accept_tos: Optional[pulumi.Input[builtins.bool]] = None,
762
+ autoconfig: Optional[pulumi.Input[builtins.bool]] = None,
763
+ created_at: Optional[pulumi.Input[builtins.str]] = None,
764
+ dkim_config: Optional[pulumi.Input[builtins.str]] = None,
765
+ dmarc_config: Optional[pulumi.Input[builtins.str]] = None,
766
+ dmarc_name: Optional[pulumi.Input[builtins.str]] = None,
767
+ last_error: Optional[pulumi.Input[builtins.str]] = None,
768
+ last_valid_at: Optional[pulumi.Input[builtins.str]] = None,
769
+ mx_blackhole: Optional[pulumi.Input[builtins.str]] = None,
770
+ name: Optional[pulumi.Input[builtins.str]] = None,
771
+ next_check_at: Optional[pulumi.Input[builtins.str]] = None,
772
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
773
+ region: Optional[pulumi.Input[builtins.str]] = None,
772
774
  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':
775
+ revoked_at: Optional[pulumi.Input[builtins.str]] = None,
776
+ smtp_host: Optional[pulumi.Input[builtins.str]] = None,
777
+ smtp_port: Optional[pulumi.Input[builtins.int]] = None,
778
+ smtp_port_alternative: Optional[pulumi.Input[builtins.int]] = None,
779
+ smtp_port_unsecure: Optional[pulumi.Input[builtins.int]] = None,
780
+ smtps_auth_user: Optional[pulumi.Input[builtins.str]] = None,
781
+ smtps_port: Optional[pulumi.Input[builtins.int]] = None,
782
+ smtps_port_alternative: Optional[pulumi.Input[builtins.int]] = None,
783
+ spf_config: Optional[pulumi.Input[builtins.str]] = None,
784
+ status: Optional[pulumi.Input[builtins.str]] = None) -> 'TemDomain':
783
785
  """
784
786
  Get an existing TemDomain resource's state with the given name, id, and optional extra
785
787
  properties used to qualify the lookup.
@@ -787,33 +789,33 @@ class TemDomain(pulumi.CustomResource):
787
789
  :param str resource_name: The unique name of the resulting resource.
788
790
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
789
791
  :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).
792
+ :param pulumi.Input[builtins.bool] accept_tos: Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
791
793
  > **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.
794
+ :param pulumi.Input[builtins.bool] autoconfig: Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
795
+ :param pulumi.Input[builtins.str] created_at: The date and time of the Transaction Email Domain's creation (RFC 3339 format).
796
+ :param pulumi.Input[builtins.str] dkim_config: The DKIM public key, as should be recorded in the DNS zone.
797
+ :param pulumi.Input[builtins.str] dmarc_config: DMARC record for the domain, as should be recorded in the DNS zone.
798
+ :param pulumi.Input[builtins.str] dmarc_name: DMARC name for the domain, as should be recorded in the DNS zone.
799
+ :param pulumi.Input[builtins.str] last_error: (Deprecated) The error message if the last check failed.
800
+ :param pulumi.Input[builtins.str] last_valid_at: The date and time the domain was last found to be valid (RFC 3339 format).
801
+ :param pulumi.Input[builtins.str] mx_blackhole: The Scaleway's blackhole MX server to use if you do not have one.
802
+ :param pulumi.Input[builtins.str] name: The domain name, must not be used in another Transactional Email Domain.
801
803
  > **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.
804
+ :param pulumi.Input[builtins.str] next_check_at: The date and time of the next scheduled check (RFC 3339 format).
805
+ :param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the domain is associated with.
806
+ :param pulumi.Input[builtins.str] region: `region`). The region in which the domain should be created.
805
807
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
806
808
  :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.
809
+ :param pulumi.Input[builtins.str] revoked_at: The date and time of the revocation of the domain (RFC 3339 format).
810
+ :param pulumi.Input[builtins.str] smtp_host: The SMTP host to use to send emails.
811
+ :param pulumi.Input[builtins.int] smtp_port: The SMTP port to use to send emails over TLS.
812
+ :param pulumi.Input[builtins.int] smtp_port_alternative: The SMTP port to use to send emails over TLS.
813
+ :param pulumi.Input[builtins.int] smtp_port_unsecure: The SMTP port to use to send emails.
814
+ :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.
815
+ :param pulumi.Input[builtins.int] smtps_port: The SMTPS port to use to send emails over TLS Wrapper.
816
+ :param pulumi.Input[builtins.int] smtps_port_alternative: The SMTPS port to use to send emails over TLS Wrapper.
817
+ :param pulumi.Input[builtins.str] spf_config: The snippet of the SPF record that should be registered in the DNS zone.
818
+ :param pulumi.Input[builtins.str] status: The status of the domain's reputation.
817
819
  """
818
820
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
819
821
 
@@ -847,7 +849,7 @@ class TemDomain(pulumi.CustomResource):
847
849
 
848
850
  @property
849
851
  @pulumi.getter(name="acceptTos")
850
- def accept_tos(self) -> pulumi.Output[bool]:
852
+ def accept_tos(self) -> pulumi.Output[builtins.bool]:
851
853
  """
852
854
  Acceptation of the [Term of Service](https://tem.s3.fr-par.scw.cloud/antispam_policy.pdf).
853
855
  > **Important:** This attribute must be set to `true`.
@@ -856,7 +858,7 @@ class TemDomain(pulumi.CustomResource):
856
858
 
857
859
  @property
858
860
  @pulumi.getter
859
- def autoconfig(self) -> pulumi.Output[Optional[bool]]:
861
+ def autoconfig(self) -> pulumi.Output[Optional[builtins.bool]]:
860
862
  """
861
863
  Automatically configures DNS settings for the domain, simplifying the setup process by applying predefined configurations.
862
864
  """
@@ -864,7 +866,7 @@ class TemDomain(pulumi.CustomResource):
864
866
 
865
867
  @property
866
868
  @pulumi.getter(name="createdAt")
867
- def created_at(self) -> pulumi.Output[str]:
869
+ def created_at(self) -> pulumi.Output[builtins.str]:
868
870
  """
869
871
  The date and time of the Transaction Email Domain's creation (RFC 3339 format).
870
872
  """
@@ -872,7 +874,7 @@ class TemDomain(pulumi.CustomResource):
872
874
 
873
875
  @property
874
876
  @pulumi.getter(name="dkimConfig")
875
- def dkim_config(self) -> pulumi.Output[str]:
877
+ def dkim_config(self) -> pulumi.Output[builtins.str]:
876
878
  """
877
879
  The DKIM public key, as should be recorded in the DNS zone.
878
880
  """
@@ -880,7 +882,7 @@ class TemDomain(pulumi.CustomResource):
880
882
 
881
883
  @property
882
884
  @pulumi.getter(name="dmarcConfig")
883
- def dmarc_config(self) -> pulumi.Output[str]:
885
+ def dmarc_config(self) -> pulumi.Output[builtins.str]:
884
886
  """
885
887
  DMARC record for the domain, as should be recorded in the DNS zone.
886
888
  """
@@ -888,7 +890,7 @@ class TemDomain(pulumi.CustomResource):
888
890
 
889
891
  @property
890
892
  @pulumi.getter(name="dmarcName")
891
- def dmarc_name(self) -> pulumi.Output[str]:
893
+ def dmarc_name(self) -> pulumi.Output[builtins.str]:
892
894
  """
893
895
  DMARC name for the domain, as should be recorded in the DNS zone.
894
896
  """
@@ -897,7 +899,7 @@ class TemDomain(pulumi.CustomResource):
897
899
  @property
898
900
  @pulumi.getter(name="lastError")
899
901
  @_utilities.deprecated("""last_error is deprecated""")
900
- def last_error(self) -> pulumi.Output[str]:
902
+ def last_error(self) -> pulumi.Output[builtins.str]:
901
903
  """
902
904
  (Deprecated) The error message if the last check failed.
903
905
  """
@@ -905,7 +907,7 @@ class TemDomain(pulumi.CustomResource):
905
907
 
906
908
  @property
907
909
  @pulumi.getter(name="lastValidAt")
908
- def last_valid_at(self) -> pulumi.Output[str]:
910
+ def last_valid_at(self) -> pulumi.Output[builtins.str]:
909
911
  """
910
912
  The date and time the domain was last found to be valid (RFC 3339 format).
911
913
  """
@@ -913,7 +915,7 @@ class TemDomain(pulumi.CustomResource):
913
915
 
914
916
  @property
915
917
  @pulumi.getter(name="mxBlackhole")
916
- def mx_blackhole(self) -> pulumi.Output[str]:
918
+ def mx_blackhole(self) -> pulumi.Output[builtins.str]:
917
919
  """
918
920
  The Scaleway's blackhole MX server to use if you do not have one.
919
921
  """
@@ -921,7 +923,7 @@ class TemDomain(pulumi.CustomResource):
921
923
 
922
924
  @property
923
925
  @pulumi.getter
924
- def name(self) -> pulumi.Output[str]:
926
+ def name(self) -> pulumi.Output[builtins.str]:
925
927
  """
926
928
  The domain name, must not be used in another Transactional Email Domain.
927
929
  > **Important:** Updates to `name` will recreate the domain.
@@ -930,7 +932,7 @@ class TemDomain(pulumi.CustomResource):
930
932
 
931
933
  @property
932
934
  @pulumi.getter(name="nextCheckAt")
933
- def next_check_at(self) -> pulumi.Output[str]:
935
+ def next_check_at(self) -> pulumi.Output[builtins.str]:
934
936
  """
935
937
  The date and time of the next scheduled check (RFC 3339 format).
936
938
  """
@@ -938,7 +940,7 @@ class TemDomain(pulumi.CustomResource):
938
940
 
939
941
  @property
940
942
  @pulumi.getter(name="projectId")
941
- def project_id(self) -> pulumi.Output[str]:
943
+ def project_id(self) -> pulumi.Output[builtins.str]:
942
944
  """
943
945
  `project_id`) The ID of the project the domain is associated with.
944
946
  """
@@ -946,7 +948,7 @@ class TemDomain(pulumi.CustomResource):
946
948
 
947
949
  @property
948
950
  @pulumi.getter
949
- def region(self) -> pulumi.Output[str]:
951
+ def region(self) -> pulumi.Output[builtins.str]:
950
952
  """
951
953
  `region`). The region in which the domain should be created.
952
954
  > **Important:** Currently, only fr-par is supported. Specifying any other region will cause an error.
@@ -963,7 +965,7 @@ class TemDomain(pulumi.CustomResource):
963
965
 
964
966
  @property
965
967
  @pulumi.getter(name="revokedAt")
966
- def revoked_at(self) -> pulumi.Output[str]:
968
+ def revoked_at(self) -> pulumi.Output[builtins.str]:
967
969
  """
968
970
  The date and time of the revocation of the domain (RFC 3339 format).
969
971
  """
@@ -971,7 +973,7 @@ class TemDomain(pulumi.CustomResource):
971
973
 
972
974
  @property
973
975
  @pulumi.getter(name="smtpHost")
974
- def smtp_host(self) -> pulumi.Output[str]:
976
+ def smtp_host(self) -> pulumi.Output[builtins.str]:
975
977
  """
976
978
  The SMTP host to use to send emails.
977
979
  """
@@ -979,7 +981,7 @@ class TemDomain(pulumi.CustomResource):
979
981
 
980
982
  @property
981
983
  @pulumi.getter(name="smtpPort")
982
- def smtp_port(self) -> pulumi.Output[int]:
984
+ def smtp_port(self) -> pulumi.Output[builtins.int]:
983
985
  """
984
986
  The SMTP port to use to send emails over TLS.
985
987
  """
@@ -987,7 +989,7 @@ class TemDomain(pulumi.CustomResource):
987
989
 
988
990
  @property
989
991
  @pulumi.getter(name="smtpPortAlternative")
990
- def smtp_port_alternative(self) -> pulumi.Output[int]:
992
+ def smtp_port_alternative(self) -> pulumi.Output[builtins.int]:
991
993
  """
992
994
  The SMTP port to use to send emails over TLS.
993
995
  """
@@ -995,7 +997,7 @@ class TemDomain(pulumi.CustomResource):
995
997
 
996
998
  @property
997
999
  @pulumi.getter(name="smtpPortUnsecure")
998
- def smtp_port_unsecure(self) -> pulumi.Output[int]:
1000
+ def smtp_port_unsecure(self) -> pulumi.Output[builtins.int]:
999
1001
  """
1000
1002
  The SMTP port to use to send emails.
1001
1003
  """
@@ -1003,7 +1005,7 @@ class TemDomain(pulumi.CustomResource):
1003
1005
 
1004
1006
  @property
1005
1007
  @pulumi.getter(name="smtpsAuthUser")
1006
- def smtps_auth_user(self) -> pulumi.Output[str]:
1008
+ def smtps_auth_user(self) -> pulumi.Output[builtins.str]:
1007
1009
  """
1008
1010
  SMTPS auth user refers to the identifier for a user authorized to send emails via SMTPS, ensuring secure email transmission.
1009
1011
  """
@@ -1011,7 +1013,7 @@ class TemDomain(pulumi.CustomResource):
1011
1013
 
1012
1014
  @property
1013
1015
  @pulumi.getter(name="smtpsPort")
1014
- def smtps_port(self) -> pulumi.Output[int]:
1016
+ def smtps_port(self) -> pulumi.Output[builtins.int]:
1015
1017
  """
1016
1018
  The SMTPS port to use to send emails over TLS Wrapper.
1017
1019
  """
@@ -1019,7 +1021,7 @@ class TemDomain(pulumi.CustomResource):
1019
1021
 
1020
1022
  @property
1021
1023
  @pulumi.getter(name="smtpsPortAlternative")
1022
- def smtps_port_alternative(self) -> pulumi.Output[int]:
1024
+ def smtps_port_alternative(self) -> pulumi.Output[builtins.int]:
1023
1025
  """
1024
1026
  The SMTPS port to use to send emails over TLS Wrapper.
1025
1027
  """
@@ -1027,7 +1029,7 @@ class TemDomain(pulumi.CustomResource):
1027
1029
 
1028
1030
  @property
1029
1031
  @pulumi.getter(name="spfConfig")
1030
- def spf_config(self) -> pulumi.Output[str]:
1032
+ def spf_config(self) -> pulumi.Output[builtins.str]:
1031
1033
  """
1032
1034
  The snippet of the SPF record that should be registered in the DNS zone.
1033
1035
  """
@@ -1035,7 +1037,7 @@ class TemDomain(pulumi.CustomResource):
1035
1037
 
1036
1038
  @property
1037
1039
  @pulumi.getter
1038
- def status(self) -> pulumi.Output[str]:
1040
+ def status(self) -> pulumi.Output[builtins.str]:
1039
1041
  """
1040
1042
  The status of the domain's reputation.
1041
1043
  """