pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__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 (490) hide show
  1. pulumiverse_scaleway/__init__.py +11 -1
  2. pulumiverse_scaleway/_inputs.py +2252 -2143
  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 +204 -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 +204 -155
  19. pulumiverse_scaleway/baremetal_server.py +262 -260
  20. pulumiverse_scaleway/billing/__init__.py +2 -1
  21. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  22. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  23. pulumiverse_scaleway/billing/outputs.py +73 -72
  24. pulumiverse_scaleway/block/__init__.py +2 -1
  25. pulumiverse_scaleway/block/_inputs.py +12 -11
  26. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  27. pulumiverse_scaleway/block/get_volume.py +28 -27
  28. pulumiverse_scaleway/block/outputs.py +14 -13
  29. pulumiverse_scaleway/block/snapshot.py +73 -71
  30. pulumiverse_scaleway/block/volume.py +115 -113
  31. pulumiverse_scaleway/block_snapshot.py +73 -71
  32. pulumiverse_scaleway/block_volume.py +115 -113
  33. pulumiverse_scaleway/cockpit.py +38 -36
  34. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  35. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  36. pulumiverse_scaleway/cockpit_source.py +115 -113
  37. pulumiverse_scaleway/cockpit_token.py +66 -64
  38. pulumiverse_scaleway/config/__init__.py +2 -1
  39. pulumiverse_scaleway/config/__init__.pyi +2 -1
  40. pulumiverse_scaleway/config/vars.py +2 -1
  41. pulumiverse_scaleway/container.py +573 -343
  42. pulumiverse_scaleway/container_cron.py +80 -78
  43. pulumiverse_scaleway/container_domain.py +52 -50
  44. pulumiverse_scaleway/container_namespace.py +211 -140
  45. pulumiverse_scaleway/container_token.py +80 -78
  46. pulumiverse_scaleway/container_trigger.py +59 -57
  47. pulumiverse_scaleway/containers/__init__.py +2 -1
  48. pulumiverse_scaleway/containers/_inputs.py +72 -71
  49. pulumiverse_scaleway/containers/container.py +573 -343
  50. pulumiverse_scaleway/containers/cron.py +80 -78
  51. pulumiverse_scaleway/containers/domain.py +52 -50
  52. pulumiverse_scaleway/containers/get_container.py +87 -42
  53. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  54. pulumiverse_scaleway/containers/namespace.py +211 -140
  55. pulumiverse_scaleway/containers/outputs.py +62 -61
  56. pulumiverse_scaleway/containers/token.py +80 -78
  57. pulumiverse_scaleway/containers/trigger.py +59 -57
  58. pulumiverse_scaleway/database.py +66 -64
  59. pulumiverse_scaleway/database_acl.py +31 -29
  60. pulumiverse_scaleway/database_backup.py +101 -99
  61. pulumiverse_scaleway/database_instance.py +297 -295
  62. pulumiverse_scaleway/database_privilege.py +73 -71
  63. pulumiverse_scaleway/database_read_replica.py +45 -43
  64. pulumiverse_scaleway/database_user.py +73 -71
  65. pulumiverse_scaleway/databases/__init__.py +2 -1
  66. pulumiverse_scaleway/databases/_inputs.py +191 -190
  67. pulumiverse_scaleway/databases/acl.py +31 -29
  68. pulumiverse_scaleway/databases/database.py +66 -64
  69. pulumiverse_scaleway/databases/database_backup.py +101 -99
  70. pulumiverse_scaleway/databases/get_acl.py +13 -12
  71. pulumiverse_scaleway/databases/get_database.py +19 -18
  72. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  73. pulumiverse_scaleway/databases/get_instance.py +43 -42
  74. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  75. pulumiverse_scaleway/databases/instance.py +297 -295
  76. pulumiverse_scaleway/databases/outputs.py +188 -187
  77. pulumiverse_scaleway/databases/privilege.py +73 -71
  78. pulumiverse_scaleway/databases/read_replica.py +45 -43
  79. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  80. pulumiverse_scaleway/databases/snapshot.py +101 -99
  81. pulumiverse_scaleway/databases/user.py +73 -71
  82. pulumiverse_scaleway/domain/__init__.py +2 -1
  83. pulumiverse_scaleway/domain/_inputs.py +531 -530
  84. pulumiverse_scaleway/domain/get_record.py +38 -37
  85. pulumiverse_scaleway/domain/get_zone.py +24 -23
  86. pulumiverse_scaleway/domain/outputs.py +358 -357
  87. pulumiverse_scaleway/domain/record.py +129 -127
  88. pulumiverse_scaleway/domain/registration.py +94 -92
  89. pulumiverse_scaleway/domain/zone.py +87 -85
  90. pulumiverse_scaleway/domain_record.py +129 -127
  91. pulumiverse_scaleway/domain_zone.py +87 -85
  92. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  93. pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
  94. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  95. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  96. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  97. pulumiverse_scaleway/edge_services_plan.py +31 -29
  98. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  99. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  100. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  101. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  102. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  103. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  104. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  105. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  106. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  107. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  108. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  109. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  110. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  111. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  112. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  113. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  114. pulumiverse_scaleway/file_filesystem.py +552 -0
  115. pulumiverse_scaleway/flexible_ip.py +139 -137
  116. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  117. pulumiverse_scaleway/function.py +394 -284
  118. pulumiverse_scaleway/function_cron.py +80 -78
  119. pulumiverse_scaleway/function_domain.py +52 -50
  120. pulumiverse_scaleway/function_namespace.py +197 -126
  121. pulumiverse_scaleway/function_token.py +80 -78
  122. pulumiverse_scaleway/function_trigger.py +59 -57
  123. pulumiverse_scaleway/functions/__init__.py +2 -1
  124. pulumiverse_scaleway/functions/_inputs.py +42 -41
  125. pulumiverse_scaleway/functions/cron.py +80 -78
  126. pulumiverse_scaleway/functions/domain.py +52 -50
  127. pulumiverse_scaleway/functions/function.py +394 -284
  128. pulumiverse_scaleway/functions/get_function.py +69 -46
  129. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  130. pulumiverse_scaleway/functions/namespace.py +197 -126
  131. pulumiverse_scaleway/functions/outputs.py +26 -25
  132. pulumiverse_scaleway/functions/token.py +80 -78
  133. pulumiverse_scaleway/functions/trigger.py +59 -57
  134. pulumiverse_scaleway/get_account_project.py +21 -20
  135. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  136. pulumiverse_scaleway/get_availability_zones.py +9 -8
  137. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  138. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  139. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  140. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  141. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  142. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  143. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  144. pulumiverse_scaleway/get_block_volume.py +28 -27
  145. pulumiverse_scaleway/get_cockpit.py +10 -9
  146. pulumiverse_scaleway/get_cockpit_source.py +33 -32
  147. pulumiverse_scaleway/get_config.py +13 -12
  148. pulumiverse_scaleway/get_container.py +87 -42
  149. pulumiverse_scaleway/get_container_namespace.py +43 -31
  150. pulumiverse_scaleway/get_database.py +19 -18
  151. pulumiverse_scaleway/get_database_acl.py +13 -12
  152. pulumiverse_scaleway/get_database_backup.py +34 -33
  153. pulumiverse_scaleway/get_database_instance.py +43 -42
  154. pulumiverse_scaleway/get_database_privilege.py +24 -23
  155. pulumiverse_scaleway/get_domain_record.py +38 -37
  156. pulumiverse_scaleway/get_domain_zone.py +24 -23
  157. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  158. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  159. pulumiverse_scaleway/get_function.py +69 -46
  160. pulumiverse_scaleway/get_function_namespace.py +42 -30
  161. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  162. pulumiverse_scaleway/get_iam_application.py +23 -22
  163. pulumiverse_scaleway/get_iam_group.py +25 -24
  164. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  165. pulumiverse_scaleway/get_iam_user.py +23 -22
  166. pulumiverse_scaleway/get_instance_image.py +42 -41
  167. pulumiverse_scaleway/get_instance_ip.py +20 -19
  168. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  169. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  170. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  171. pulumiverse_scaleway/get_instance_server.py +59 -47
  172. pulumiverse_scaleway/get_instance_servers.py +24 -23
  173. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  174. pulumiverse_scaleway/get_instance_volume.py +30 -29
  175. pulumiverse_scaleway/get_iot_device.py +31 -30
  176. pulumiverse_scaleway/get_iot_hub.py +39 -38
  177. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  178. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  179. pulumiverse_scaleway/get_k8s_version.py +16 -15
  180. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  181. pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
  182. pulumiverse_scaleway/get_lb_acls.py +22 -21
  183. pulumiverse_scaleway/get_lb_backend.py +43 -42
  184. pulumiverse_scaleway/get_lb_backends.py +22 -21
  185. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  186. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  187. pulumiverse_scaleway/get_lb_ips.py +29 -28
  188. pulumiverse_scaleway/get_lb_route.py +16 -15
  189. pulumiverse_scaleway/get_lb_routes.py +17 -16
  190. pulumiverse_scaleway/get_lbs.py +24 -23
  191. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  192. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  193. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  194. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  195. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  196. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  197. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  198. pulumiverse_scaleway/get_object_bucket.py +22 -21
  199. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  200. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  201. pulumiverse_scaleway/get_registry_image.py +37 -36
  202. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  203. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  204. pulumiverse_scaleway/get_secret.py +41 -40
  205. pulumiverse_scaleway/get_secret_version.py +34 -33
  206. pulumiverse_scaleway/get_tem_domain.py +43 -42
  207. pulumiverse_scaleway/get_vpc.py +35 -34
  208. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  209. pulumiverse_scaleway/get_vpc_private_network.py +32 -31
  210. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  211. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  212. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  213. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  214. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  215. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  216. pulumiverse_scaleway/get_vpcs.py +24 -23
  217. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  218. pulumiverse_scaleway/get_webhosting.py +36 -35
  219. pulumiverse_scaleway/hosting/__init__.py +2 -1
  220. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  221. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  222. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  223. pulumiverse_scaleway/hosting/hosting.py +164 -162
  224. pulumiverse_scaleway/hosting/outputs.py +139 -138
  225. pulumiverse_scaleway/iam/__init__.py +2 -1
  226. pulumiverse_scaleway/iam/_inputs.py +22 -21
  227. pulumiverse_scaleway/iam/api_key.py +115 -113
  228. pulumiverse_scaleway/iam/application.py +80 -78
  229. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  230. pulumiverse_scaleway/iam/get_application.py +23 -22
  231. pulumiverse_scaleway/iam/get_group.py +25 -24
  232. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  233. pulumiverse_scaleway/iam/get_user.py +23 -22
  234. pulumiverse_scaleway/iam/group.py +115 -113
  235. pulumiverse_scaleway/iam/group_membership.py +45 -43
  236. pulumiverse_scaleway/iam/outputs.py +14 -13
  237. pulumiverse_scaleway/iam/policy.py +136 -134
  238. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  239. pulumiverse_scaleway/iam/user.py +284 -273
  240. pulumiverse_scaleway/iam_api_key.py +115 -113
  241. pulumiverse_scaleway/iam_application.py +80 -78
  242. pulumiverse_scaleway/iam_group.py +115 -113
  243. pulumiverse_scaleway/iam_group_membership.py +45 -43
  244. pulumiverse_scaleway/iam_policy.py +136 -134
  245. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  246. pulumiverse_scaleway/iam_user.py +284 -273
  247. pulumiverse_scaleway/inference/__init__.py +2 -1
  248. pulumiverse_scaleway/inference/_inputs.py +116 -61
  249. pulumiverse_scaleway/inference/deployment.py +225 -176
  250. pulumiverse_scaleway/inference/get_model.py +27 -26
  251. pulumiverse_scaleway/inference/model.py +129 -127
  252. pulumiverse_scaleway/inference/outputs.py +82 -49
  253. pulumiverse_scaleway/inference_deployment.py +225 -176
  254. pulumiverse_scaleway/instance/__init__.py +2 -1
  255. pulumiverse_scaleway/instance/_inputs.py +296 -295
  256. pulumiverse_scaleway/instance/get_image.py +42 -41
  257. pulumiverse_scaleway/instance/get_ip.py +20 -19
  258. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  259. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  260. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  261. pulumiverse_scaleway/instance/get_server.py +59 -47
  262. pulumiverse_scaleway/instance/get_servers.py +24 -23
  263. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  264. pulumiverse_scaleway/instance/get_volume.py +30 -29
  265. pulumiverse_scaleway/instance/image.py +150 -148
  266. pulumiverse_scaleway/instance/ip.py +94 -92
  267. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  268. pulumiverse_scaleway/instance/outputs.py +349 -348
  269. pulumiverse_scaleway/instance/placement_group.py +101 -99
  270. pulumiverse_scaleway/instance/private_nic.py +94 -92
  271. pulumiverse_scaleway/instance/security_group.py +150 -148
  272. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  273. pulumiverse_scaleway/instance/server.py +393 -330
  274. pulumiverse_scaleway/instance/snapshot.py +108 -106
  275. pulumiverse_scaleway/instance/user_data.py +59 -57
  276. pulumiverse_scaleway/instance/volume.py +129 -127
  277. pulumiverse_scaleway/instance_image.py +150 -148
  278. pulumiverse_scaleway/instance_ip.py +94 -92
  279. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  280. pulumiverse_scaleway/instance_placement_group.py +101 -99
  281. pulumiverse_scaleway/instance_private_nic.py +94 -92
  282. pulumiverse_scaleway/instance_security_group.py +150 -148
  283. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  284. pulumiverse_scaleway/instance_server.py +393 -330
  285. pulumiverse_scaleway/instance_snapshot.py +108 -106
  286. pulumiverse_scaleway/instance_user_data.py +59 -57
  287. pulumiverse_scaleway/instance_volume.py +129 -127
  288. pulumiverse_scaleway/iot/__init__.py +2 -1
  289. pulumiverse_scaleway/iot/_inputs.py +98 -97
  290. pulumiverse_scaleway/iot/device.py +122 -120
  291. pulumiverse_scaleway/iot/get_device.py +31 -30
  292. pulumiverse_scaleway/iot/get_hub.py +39 -38
  293. pulumiverse_scaleway/iot/hub.py +206 -204
  294. pulumiverse_scaleway/iot/network.py +94 -92
  295. pulumiverse_scaleway/iot/outputs.py +78 -77
  296. pulumiverse_scaleway/iot/route.py +66 -64
  297. pulumiverse_scaleway/iot_device.py +122 -120
  298. pulumiverse_scaleway/iot_hub.py +206 -204
  299. pulumiverse_scaleway/iot_network.py +94 -92
  300. pulumiverse_scaleway/iot_route.py +66 -64
  301. pulumiverse_scaleway/ipam/__init__.py +2 -1
  302. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  303. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  304. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  305. pulumiverse_scaleway/ipam/ip.py +94 -92
  306. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  307. pulumiverse_scaleway/ipam/outputs.py +90 -89
  308. pulumiverse_scaleway/ipam_ip.py +94 -92
  309. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  310. pulumiverse_scaleway/job/__init__.py +2 -1
  311. pulumiverse_scaleway/job/_inputs.py +38 -37
  312. pulumiverse_scaleway/job/definition.py +143 -141
  313. pulumiverse_scaleway/job/outputs.py +24 -23
  314. pulumiverse_scaleway/job_definition.py +143 -141
  315. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  316. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  317. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  318. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  319. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  320. pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
  321. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  322. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  323. pulumiverse_scaleway/kubernetes/pool.py +290 -288
  324. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
  326. pulumiverse_scaleway/loadbalancer.py +199 -197
  327. pulumiverse_scaleway/loadbalancer_acl.py +73 -71
  328. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  329. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  330. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  331. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  332. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  333. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  334. pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
  335. pulumiverse_scaleway/loadbalancers/acl.py +73 -71
  336. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  337. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  338. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  339. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  340. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  341. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  342. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  343. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  344. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  345. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  346. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  347. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  348. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  350. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  351. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  352. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  353. pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
  354. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  355. pulumiverse_scaleway/mnq/__init__.py +2 -1
  356. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  357. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  358. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  359. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  360. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  361. pulumiverse_scaleway/mnq/outputs.py +20 -19
  362. pulumiverse_scaleway/mnq/sns.py +38 -36
  363. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  364. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  365. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  366. pulumiverse_scaleway/mnq/sqs.py +38 -36
  367. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  368. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  369. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  370. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  371. pulumiverse_scaleway/mnq_sns.py +38 -36
  372. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  373. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  374. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  375. pulumiverse_scaleway/mnq_sqs.py +38 -36
  376. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  377. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  378. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  379. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  380. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  381. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  382. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  383. pulumiverse_scaleway/mongodb/instance.py +199 -197
  384. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  385. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  386. pulumiverse_scaleway/network/__init__.py +2 -1
  387. pulumiverse_scaleway/network/_inputs.py +140 -139
  388. pulumiverse_scaleway/network/acl.py +59 -57
  389. pulumiverse_scaleway/network/gateway_network.py +143 -141
  390. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  391. pulumiverse_scaleway/network/get_private_network.py +32 -31
  392. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  393. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  394. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  395. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  396. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  397. pulumiverse_scaleway/network/get_routes.py +38 -37
  398. pulumiverse_scaleway/network/get_vpc.py +35 -34
  399. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  400. pulumiverse_scaleway/network/outputs.py +206 -205
  401. pulumiverse_scaleway/network/private_network.py +122 -120
  402. pulumiverse_scaleway/network/public_gateway.py +213 -211
  403. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  404. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  405. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  406. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  407. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  408. pulumiverse_scaleway/network/route.py +115 -113
  409. pulumiverse_scaleway/network/vpc.py +101 -99
  410. pulumiverse_scaleway/object/__init__.py +2 -1
  411. pulumiverse_scaleway/object/_inputs.py +127 -126
  412. pulumiverse_scaleway/object/bucket.py +115 -113
  413. pulumiverse_scaleway/object/bucket_acl.py +73 -71
  414. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  415. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  416. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  417. pulumiverse_scaleway/object/get_bucket.py +22 -21
  418. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  419. pulumiverse_scaleway/object/item.py +232 -183
  420. pulumiverse_scaleway/object/outputs.py +114 -113
  421. pulumiverse_scaleway/object_bucket.py +115 -113
  422. pulumiverse_scaleway/object_bucket_acl.py +73 -71
  423. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  424. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  425. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  426. pulumiverse_scaleway/object_item.py +232 -183
  427. pulumiverse_scaleway/observability/__init__.py +2 -1
  428. pulumiverse_scaleway/observability/_inputs.py +89 -88
  429. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  430. pulumiverse_scaleway/observability/cockpit.py +38 -36
  431. pulumiverse_scaleway/observability/get_instance.py +10 -9
  432. pulumiverse_scaleway/observability/get_source.py +33 -32
  433. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  434. pulumiverse_scaleway/observability/outputs.py +77 -76
  435. pulumiverse_scaleway/observability/source.py +115 -113
  436. pulumiverse_scaleway/observability/token.py +66 -64
  437. pulumiverse_scaleway/outputs.py +2797 -2732
  438. pulumiverse_scaleway/provider.py +87 -65
  439. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  440. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  441. pulumiverse_scaleway/redis/__init__.py +2 -1
  442. pulumiverse_scaleway/redis/_inputs.py +63 -62
  443. pulumiverse_scaleway/redis/cluster.py +178 -176
  444. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  445. pulumiverse_scaleway/redis/outputs.py +74 -73
  446. pulumiverse_scaleway/redis_cluster.py +178 -176
  447. pulumiverse_scaleway/registry/__init__.py +2 -1
  448. pulumiverse_scaleway/registry/get_image.py +37 -36
  449. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  450. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  451. pulumiverse_scaleway/registry/namespace.py +87 -85
  452. pulumiverse_scaleway/registry_namespace.py +87 -85
  453. pulumiverse_scaleway/sdb_database.py +80 -78
  454. pulumiverse_scaleway/secret.py +143 -141
  455. pulumiverse_scaleway/secret_version.py +87 -85
  456. pulumiverse_scaleway/secrets/__init__.py +2 -1
  457. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  458. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  459. pulumiverse_scaleway/secrets/get_version.py +34 -33
  460. pulumiverse_scaleway/secrets/outputs.py +64 -63
  461. pulumiverse_scaleway/secrets/secret.py +143 -141
  462. pulumiverse_scaleway/secrets/version.py +87 -85
  463. pulumiverse_scaleway/tem/__init__.py +2 -1
  464. pulumiverse_scaleway/tem/_inputs.py +28 -27
  465. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  466. pulumiverse_scaleway/tem/domain.py +199 -197
  467. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  468. pulumiverse_scaleway/tem/get_domain.py +43 -42
  469. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  470. pulumiverse_scaleway/tem/outputs.py +34 -33
  471. pulumiverse_scaleway/tem/webhook.py +108 -106
  472. pulumiverse_scaleway/tem_domain.py +199 -197
  473. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem_webhook.py +108 -106
  475. pulumiverse_scaleway/vpc.py +101 -99
  476. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  477. pulumiverse_scaleway/vpc_private_network.py +122 -120
  478. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  479. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  480. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  481. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  482. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  483. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  484. pulumiverse_scaleway/vpc_route.py +115 -113
  485. pulumiverse_scaleway/webhosting.py +164 -162
  486. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
  488. pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
  489. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
  490. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.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
@@ -118,15 +119,15 @@ class RecordGeoIpArgs:
118
119
 
119
120
  if not MYPY:
120
121
  class RecordGeoIpMatchArgsDict(TypedDict):
121
- data: pulumi.Input[str]
122
+ data: pulumi.Input[builtins.str]
122
123
  """
123
124
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
124
125
  """
125
- continents: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
126
+ continents: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
126
127
  """
127
128
  List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
128
129
  """
129
- countries: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
130
+ countries: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
130
131
  """
131
132
  List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
132
133
  """
@@ -136,13 +137,13 @@ elif False:
136
137
  @pulumi.input_type
137
138
  class RecordGeoIpMatchArgs:
138
139
  def __init__(__self__, *,
139
- data: pulumi.Input[str],
140
- continents: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
141
- countries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
140
+ data: pulumi.Input[builtins.str],
141
+ continents: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
142
+ countries: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
142
143
  """
143
- :param pulumi.Input[str] data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
144
- :param pulumi.Input[Sequence[pulumi.Input[str]]] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
145
- :param pulumi.Input[Sequence[pulumi.Input[str]]] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
144
+ :param pulumi.Input[builtins.str] data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
145
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] continents: List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
146
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] countries: List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
146
147
  """
147
148
  pulumi.set(__self__, "data", data)
148
149
  if continents is not None:
@@ -152,60 +153,60 @@ class RecordGeoIpMatchArgs:
152
153
 
153
154
  @property
154
155
  @pulumi.getter
155
- def data(self) -> pulumi.Input[str]:
156
+ def data(self) -> pulumi.Input[builtins.str]:
156
157
  """
157
158
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
158
159
  """
159
160
  return pulumi.get(self, "data")
160
161
 
161
162
  @data.setter
162
- def data(self, value: pulumi.Input[str]):
163
+ def data(self, value: pulumi.Input[builtins.str]):
163
164
  pulumi.set(self, "data", value)
164
165
 
165
166
  @property
166
167
  @pulumi.getter
167
- def continents(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
168
+ def continents(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
168
169
  """
169
170
  List of continents (eg: EU for Europe, NA for North America, AS for Asia...). List of all continents code: https://api.scaleway.com/domain-private/v2beta1/continents
170
171
  """
171
172
  return pulumi.get(self, "continents")
172
173
 
173
174
  @continents.setter
174
- def continents(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
175
+ def continents(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
175
176
  pulumi.set(self, "continents", value)
176
177
 
177
178
  @property
178
179
  @pulumi.getter
179
- def countries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
180
+ def countries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
180
181
  """
181
182
  List of countries (eg: FR for France, US for the United States, GB for Great Britain...). List of all countries code: https://api.scaleway.com/domain-private/v2beta1/countries
182
183
  """
183
184
  return pulumi.get(self, "countries")
184
185
 
185
186
  @countries.setter
186
- def countries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
187
+ def countries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
187
188
  pulumi.set(self, "countries", value)
188
189
 
189
190
 
190
191
  if not MYPY:
191
192
  class RecordHttpServiceArgsDict(TypedDict):
192
- ips: pulumi.Input[Sequence[pulumi.Input[str]]]
193
+ ips: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
193
194
  """
194
195
  IPs to check
195
196
  """
196
- must_contain: pulumi.Input[str]
197
+ must_contain: pulumi.Input[builtins.str]
197
198
  """
198
199
  Text to search
199
200
  """
200
- strategy: pulumi.Input[str]
201
+ strategy: pulumi.Input[builtins.str]
201
202
  """
202
203
  Strategy to return an IP from the IPs list
203
204
  """
204
- url: pulumi.Input[str]
205
+ url: pulumi.Input[builtins.str]
205
206
  """
206
207
  URL to match the must_contain text to validate an IP
207
208
  """
208
- user_agent: NotRequired[pulumi.Input[str]]
209
+ user_agent: NotRequired[pulumi.Input[builtins.str]]
209
210
  """
210
211
  User-agent used when checking the URL
211
212
  """
@@ -215,17 +216,17 @@ elif False:
215
216
  @pulumi.input_type
216
217
  class RecordHttpServiceArgs:
217
218
  def __init__(__self__, *,
218
- ips: pulumi.Input[Sequence[pulumi.Input[str]]],
219
- must_contain: pulumi.Input[str],
220
- strategy: pulumi.Input[str],
221
- url: pulumi.Input[str],
222
- user_agent: Optional[pulumi.Input[str]] = None):
223
- """
224
- :param pulumi.Input[Sequence[pulumi.Input[str]]] ips: IPs to check
225
- :param pulumi.Input[str] must_contain: Text to search
226
- :param pulumi.Input[str] strategy: Strategy to return an IP from the IPs list
227
- :param pulumi.Input[str] url: URL to match the must_contain text to validate an IP
228
- :param pulumi.Input[str] user_agent: User-agent used when checking the URL
219
+ ips: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
220
+ must_contain: pulumi.Input[builtins.str],
221
+ strategy: pulumi.Input[builtins.str],
222
+ url: pulumi.Input[builtins.str],
223
+ user_agent: Optional[pulumi.Input[builtins.str]] = None):
224
+ """
225
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: IPs to check
226
+ :param pulumi.Input[builtins.str] must_contain: Text to search
227
+ :param pulumi.Input[builtins.str] strategy: Strategy to return an IP from the IPs list
228
+ :param pulumi.Input[builtins.str] url: URL to match the must_contain text to validate an IP
229
+ :param pulumi.Input[builtins.str] user_agent: User-agent used when checking the URL
229
230
  """
230
231
  pulumi.set(__self__, "ips", ips)
231
232
  pulumi.set(__self__, "must_contain", must_contain)
@@ -236,72 +237,72 @@ class RecordHttpServiceArgs:
236
237
 
237
238
  @property
238
239
  @pulumi.getter
239
- def ips(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
240
+ def ips(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
240
241
  """
241
242
  IPs to check
242
243
  """
243
244
  return pulumi.get(self, "ips")
244
245
 
245
246
  @ips.setter
246
- def ips(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
247
+ def ips(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
247
248
  pulumi.set(self, "ips", value)
248
249
 
249
250
  @property
250
251
  @pulumi.getter(name="mustContain")
251
- def must_contain(self) -> pulumi.Input[str]:
252
+ def must_contain(self) -> pulumi.Input[builtins.str]:
252
253
  """
253
254
  Text to search
254
255
  """
255
256
  return pulumi.get(self, "must_contain")
256
257
 
257
258
  @must_contain.setter
258
- def must_contain(self, value: pulumi.Input[str]):
259
+ def must_contain(self, value: pulumi.Input[builtins.str]):
259
260
  pulumi.set(self, "must_contain", value)
260
261
 
261
262
  @property
262
263
  @pulumi.getter
263
- def strategy(self) -> pulumi.Input[str]:
264
+ def strategy(self) -> pulumi.Input[builtins.str]:
264
265
  """
265
266
  Strategy to return an IP from the IPs list
266
267
  """
267
268
  return pulumi.get(self, "strategy")
268
269
 
269
270
  @strategy.setter
270
- def strategy(self, value: pulumi.Input[str]):
271
+ def strategy(self, value: pulumi.Input[builtins.str]):
271
272
  pulumi.set(self, "strategy", value)
272
273
 
273
274
  @property
274
275
  @pulumi.getter
275
- def url(self) -> pulumi.Input[str]:
276
+ def url(self) -> pulumi.Input[builtins.str]:
276
277
  """
277
278
  URL to match the must_contain text to validate an IP
278
279
  """
279
280
  return pulumi.get(self, "url")
280
281
 
281
282
  @url.setter
282
- def url(self, value: pulumi.Input[str]):
283
+ def url(self, value: pulumi.Input[builtins.str]):
283
284
  pulumi.set(self, "url", value)
284
285
 
285
286
  @property
286
287
  @pulumi.getter(name="userAgent")
287
- def user_agent(self) -> Optional[pulumi.Input[str]]:
288
+ def user_agent(self) -> Optional[pulumi.Input[builtins.str]]:
288
289
  """
289
290
  User-agent used when checking the URL
290
291
  """
291
292
  return pulumi.get(self, "user_agent")
292
293
 
293
294
  @user_agent.setter
294
- def user_agent(self, value: Optional[pulumi.Input[str]]):
295
+ def user_agent(self, value: Optional[pulumi.Input[builtins.str]]):
295
296
  pulumi.set(self, "user_agent", value)
296
297
 
297
298
 
298
299
  if not MYPY:
299
300
  class RecordViewArgsDict(TypedDict):
300
- data: pulumi.Input[str]
301
+ data: pulumi.Input[builtins.str]
301
302
  """
302
303
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
303
304
  """
304
- subnet: pulumi.Input[str]
305
+ subnet: pulumi.Input[builtins.str]
305
306
  """
306
307
  The subnet of the view
307
308
  """
@@ -311,47 +312,47 @@ elif False:
311
312
  @pulumi.input_type
312
313
  class RecordViewArgs:
313
314
  def __init__(__self__, *,
314
- data: pulumi.Input[str],
315
- subnet: pulumi.Input[str]):
315
+ data: pulumi.Input[builtins.str],
316
+ subnet: pulumi.Input[builtins.str]):
316
317
  """
317
- :param pulumi.Input[str] data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
318
- :param pulumi.Input[str] subnet: The subnet of the view
318
+ :param pulumi.Input[builtins.str] data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
319
+ :param pulumi.Input[builtins.str] subnet: The subnet of the view
319
320
  """
320
321
  pulumi.set(__self__, "data", data)
321
322
  pulumi.set(__self__, "subnet", subnet)
322
323
 
323
324
  @property
324
325
  @pulumi.getter
325
- def data(self) -> pulumi.Input[str]:
326
+ def data(self) -> pulumi.Input[builtins.str]:
326
327
  """
327
328
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
328
329
  """
329
330
  return pulumi.get(self, "data")
330
331
 
331
332
  @data.setter
332
- def data(self, value: pulumi.Input[str]):
333
+ def data(self, value: pulumi.Input[builtins.str]):
333
334
  pulumi.set(self, "data", value)
334
335
 
335
336
  @property
336
337
  @pulumi.getter
337
- def subnet(self) -> pulumi.Input[str]:
338
+ def subnet(self) -> pulumi.Input[builtins.str]:
338
339
  """
339
340
  The subnet of the view
340
341
  """
341
342
  return pulumi.get(self, "subnet")
342
343
 
343
344
  @subnet.setter
344
- def subnet(self, value: pulumi.Input[str]):
345
+ def subnet(self, value: pulumi.Input[builtins.str]):
345
346
  pulumi.set(self, "subnet", value)
346
347
 
347
348
 
348
349
  if not MYPY:
349
350
  class RecordWeightedArgsDict(TypedDict):
350
- ip: pulumi.Input[str]
351
+ ip: pulumi.Input[builtins.str]
351
352
  """
352
353
  The weighted IP
353
354
  """
354
- weight: pulumi.Input[int]
355
+ weight: pulumi.Input[builtins.int]
355
356
  """
356
357
  The weight of the IP
357
358
  """
@@ -361,95 +362,95 @@ elif False:
361
362
  @pulumi.input_type
362
363
  class RecordWeightedArgs:
363
364
  def __init__(__self__, *,
364
- ip: pulumi.Input[str],
365
- weight: pulumi.Input[int]):
365
+ ip: pulumi.Input[builtins.str],
366
+ weight: pulumi.Input[builtins.int]):
366
367
  """
367
- :param pulumi.Input[str] ip: The weighted IP
368
- :param pulumi.Input[int] weight: The weight of the IP
368
+ :param pulumi.Input[builtins.str] ip: The weighted IP
369
+ :param pulumi.Input[builtins.int] weight: The weight of the IP
369
370
  """
370
371
  pulumi.set(__self__, "ip", ip)
371
372
  pulumi.set(__self__, "weight", weight)
372
373
 
373
374
  @property
374
375
  @pulumi.getter
375
- def ip(self) -> pulumi.Input[str]:
376
+ def ip(self) -> pulumi.Input[builtins.str]:
376
377
  """
377
378
  The weighted IP
378
379
  """
379
380
  return pulumi.get(self, "ip")
380
381
 
381
382
  @ip.setter
382
- def ip(self, value: pulumi.Input[str]):
383
+ def ip(self, value: pulumi.Input[builtins.str]):
383
384
  pulumi.set(self, "ip", value)
384
385
 
385
386
  @property
386
387
  @pulumi.getter
387
- def weight(self) -> pulumi.Input[int]:
388
+ def weight(self) -> pulumi.Input[builtins.int]:
388
389
  """
389
390
  The weight of the IP
390
391
  """
391
392
  return pulumi.get(self, "weight")
392
393
 
393
394
  @weight.setter
394
- def weight(self, value: pulumi.Input[int]):
395
+ def weight(self, value: pulumi.Input[builtins.int]):
395
396
  pulumi.set(self, "weight", value)
396
397
 
397
398
 
398
399
  if not MYPY:
399
400
  class RegistrationAdministrativeContactArgsDict(TypedDict):
400
- address_line1: pulumi.Input[str]
401
+ address_line1: pulumi.Input[builtins.str]
401
402
  """
402
403
  Primary address line for the contact.
403
404
  """
404
- city: pulumi.Input[str]
405
+ city: pulumi.Input[builtins.str]
405
406
  """
406
407
  City of the contact's address.
407
408
  """
408
- company_identification_code: pulumi.Input[str]
409
+ company_identification_code: pulumi.Input[builtins.str]
409
410
  """
410
411
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
411
412
  """
412
- country: pulumi.Input[str]
413
+ country: pulumi.Input[builtins.str]
413
414
  """
414
415
  Country code of the contact's address (ISO format).
415
416
  """
416
- email: pulumi.Input[str]
417
+ email: pulumi.Input[builtins.str]
417
418
  """
418
419
  Primary email address of the contact.
419
420
  """
420
- firstname: pulumi.Input[str]
421
+ firstname: pulumi.Input[builtins.str]
421
422
  """
422
423
  First name of the contact.
423
424
  """
424
- lastname: pulumi.Input[str]
425
+ lastname: pulumi.Input[builtins.str]
425
426
  """
426
427
  Last name of the contact.
427
428
  """
428
- legal_form: pulumi.Input[str]
429
+ legal_form: pulumi.Input[builtins.str]
429
430
  """
430
431
  Legal form of the contact (e.g., 'individual' or 'organization').
431
432
  """
432
- phone_number: pulumi.Input[str]
433
+ phone_number: pulumi.Input[builtins.str]
433
434
  """
434
435
  Primary phone number of the contact.
435
436
  """
436
- vat_identification_code: pulumi.Input[str]
437
+ vat_identification_code: pulumi.Input[builtins.str]
437
438
  """
438
439
  VAT identification code of the contact, if applicable.
439
440
  """
440
- zip: pulumi.Input[str]
441
+ zip: pulumi.Input[builtins.str]
441
442
  """
442
443
  Postal code of the contact's address.
443
444
  """
444
- address_line2: NotRequired[pulumi.Input[str]]
445
+ address_line2: NotRequired[pulumi.Input[builtins.str]]
445
446
  """
446
447
  Secondary address line for the contact (optional).
447
448
  """
448
- company_name: NotRequired[pulumi.Input[str]]
449
+ company_name: NotRequired[pulumi.Input[builtins.str]]
449
450
  """
450
451
  Name of the company associated with the contact (if applicable).
451
452
  """
452
- email_alt: NotRequired[pulumi.Input[str]]
453
+ email_alt: NotRequired[pulumi.Input[builtins.str]]
453
454
  """
454
455
  Alternative email address for the contact.
455
456
  """
@@ -461,27 +462,27 @@ if not MYPY:
461
462
  """
462
463
  Details specific to French domain extensions.
463
464
  """
464
- extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
465
+ extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
465
466
  """
466
467
  Extension details specific to Dutch domain registrations.
467
468
  """
468
- fax_number: NotRequired[pulumi.Input[str]]
469
+ fax_number: NotRequired[pulumi.Input[builtins.str]]
469
470
  """
470
471
  Fax number for the contact (if available).
471
472
  """
472
- lang: NotRequired[pulumi.Input[str]]
473
+ lang: NotRequired[pulumi.Input[builtins.str]]
473
474
  """
474
475
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
475
476
  """
476
- resale: NotRequired[pulumi.Input[bool]]
477
+ resale: NotRequired[pulumi.Input[builtins.bool]]
477
478
  """
478
479
  Indicates if the contact is used for resale purposes.
479
480
  """
480
- state: NotRequired[pulumi.Input[str]]
481
+ state: NotRequired[pulumi.Input[builtins.str]]
481
482
  """
482
483
  State or region of the contact.
483
484
  """
484
- whois_opt_in: NotRequired[pulumi.Input[bool]]
485
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
485
486
  """
486
487
  Indicates whether the contact has opted into WHOIS publishing.
487
488
  """
@@ -491,51 +492,51 @@ elif False:
491
492
  @pulumi.input_type
492
493
  class RegistrationAdministrativeContactArgs:
493
494
  def __init__(__self__, *,
494
- address_line1: pulumi.Input[str],
495
- city: pulumi.Input[str],
496
- company_identification_code: pulumi.Input[str],
497
- country: pulumi.Input[str],
498
- email: pulumi.Input[str],
499
- firstname: pulumi.Input[str],
500
- lastname: pulumi.Input[str],
501
- legal_form: pulumi.Input[str],
502
- phone_number: pulumi.Input[str],
503
- vat_identification_code: pulumi.Input[str],
504
- zip: pulumi.Input[str],
505
- address_line2: Optional[pulumi.Input[str]] = None,
506
- company_name: Optional[pulumi.Input[str]] = None,
507
- email_alt: Optional[pulumi.Input[str]] = None,
495
+ address_line1: pulumi.Input[builtins.str],
496
+ city: pulumi.Input[builtins.str],
497
+ company_identification_code: pulumi.Input[builtins.str],
498
+ country: pulumi.Input[builtins.str],
499
+ email: pulumi.Input[builtins.str],
500
+ firstname: pulumi.Input[builtins.str],
501
+ lastname: pulumi.Input[builtins.str],
502
+ legal_form: pulumi.Input[builtins.str],
503
+ phone_number: pulumi.Input[builtins.str],
504
+ vat_identification_code: pulumi.Input[builtins.str],
505
+ zip: pulumi.Input[builtins.str],
506
+ address_line2: Optional[pulumi.Input[builtins.str]] = None,
507
+ company_name: Optional[pulumi.Input[builtins.str]] = None,
508
+ email_alt: Optional[pulumi.Input[builtins.str]] = None,
508
509
  extension_eu: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionEuArgs']] = None,
509
510
  extension_fr: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionFrArgs']] = None,
510
- extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
511
- fax_number: Optional[pulumi.Input[str]] = None,
512
- lang: Optional[pulumi.Input[str]] = None,
513
- resale: Optional[pulumi.Input[bool]] = None,
514
- state: Optional[pulumi.Input[str]] = None,
515
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
516
- """
517
- :param pulumi.Input[str] address_line1: Primary address line for the contact.
518
- :param pulumi.Input[str] city: City of the contact's address.
519
- :param pulumi.Input[str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
520
- :param pulumi.Input[str] country: Country code of the contact's address (ISO format).
521
- :param pulumi.Input[str] email: Primary email address of the contact.
522
- :param pulumi.Input[str] firstname: First name of the contact.
523
- :param pulumi.Input[str] lastname: Last name of the contact.
524
- :param pulumi.Input[str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
525
- :param pulumi.Input[str] phone_number: Primary phone number of the contact.
526
- :param pulumi.Input[str] vat_identification_code: VAT identification code of the contact, if applicable.
527
- :param pulumi.Input[str] zip: Postal code of the contact's address.
528
- :param pulumi.Input[str] address_line2: Secondary address line for the contact (optional).
529
- :param pulumi.Input[str] company_name: Name of the company associated with the contact (if applicable).
530
- :param pulumi.Input[str] email_alt: Alternative email address for the contact.
511
+ extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
512
+ fax_number: Optional[pulumi.Input[builtins.str]] = None,
513
+ lang: Optional[pulumi.Input[builtins.str]] = None,
514
+ resale: Optional[pulumi.Input[builtins.bool]] = None,
515
+ state: Optional[pulumi.Input[builtins.str]] = None,
516
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
517
+ """
518
+ :param pulumi.Input[builtins.str] address_line1: Primary address line for the contact.
519
+ :param pulumi.Input[builtins.str] city: City of the contact's address.
520
+ :param pulumi.Input[builtins.str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
521
+ :param pulumi.Input[builtins.str] country: Country code of the contact's address (ISO format).
522
+ :param pulumi.Input[builtins.str] email: Primary email address of the contact.
523
+ :param pulumi.Input[builtins.str] firstname: First name of the contact.
524
+ :param pulumi.Input[builtins.str] lastname: Last name of the contact.
525
+ :param pulumi.Input[builtins.str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
526
+ :param pulumi.Input[builtins.str] phone_number: Primary phone number of the contact.
527
+ :param pulumi.Input[builtins.str] vat_identification_code: VAT identification code of the contact, if applicable.
528
+ :param pulumi.Input[builtins.str] zip: Postal code of the contact's address.
529
+ :param pulumi.Input[builtins.str] address_line2: Secondary address line for the contact (optional).
530
+ :param pulumi.Input[builtins.str] company_name: Name of the company associated with the contact (if applicable).
531
+ :param pulumi.Input[builtins.str] email_alt: Alternative email address for the contact.
531
532
  :param pulumi.Input['RegistrationAdministrativeContactExtensionEuArgs'] extension_eu: Details specific to European domain extensions.
532
533
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrArgs'] extension_fr: Details specific to French domain extensions.
533
- :param pulumi.Input[Sequence[pulumi.Input[str]]] extension_nls: Extension details specific to Dutch domain registrations.
534
- :param pulumi.Input[str] fax_number: Fax number for the contact (if available).
535
- :param pulumi.Input[str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
536
- :param pulumi.Input[bool] resale: Indicates if the contact is used for resale purposes.
537
- :param pulumi.Input[str] state: State or region of the contact.
538
- :param pulumi.Input[bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
534
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] extension_nls: Extension details specific to Dutch domain registrations.
535
+ :param pulumi.Input[builtins.str] fax_number: Fax number for the contact (if available).
536
+ :param pulumi.Input[builtins.str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
537
+ :param pulumi.Input[builtins.bool] resale: Indicates if the contact is used for resale purposes.
538
+ :param pulumi.Input[builtins.str] state: State or region of the contact.
539
+ :param pulumi.Input[builtins.bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
539
540
  """
540
541
  pulumi.set(__self__, "address_line1", address_line1)
541
542
  pulumi.set(__self__, "city", city)
@@ -573,170 +574,170 @@ class RegistrationAdministrativeContactArgs:
573
574
 
574
575
  @property
575
576
  @pulumi.getter(name="addressLine1")
576
- def address_line1(self) -> pulumi.Input[str]:
577
+ def address_line1(self) -> pulumi.Input[builtins.str]:
577
578
  """
578
579
  Primary address line for the contact.
579
580
  """
580
581
  return pulumi.get(self, "address_line1")
581
582
 
582
583
  @address_line1.setter
583
- def address_line1(self, value: pulumi.Input[str]):
584
+ def address_line1(self, value: pulumi.Input[builtins.str]):
584
585
  pulumi.set(self, "address_line1", value)
585
586
 
586
587
  @property
587
588
  @pulumi.getter
588
- def city(self) -> pulumi.Input[str]:
589
+ def city(self) -> pulumi.Input[builtins.str]:
589
590
  """
590
591
  City of the contact's address.
591
592
  """
592
593
  return pulumi.get(self, "city")
593
594
 
594
595
  @city.setter
595
- def city(self, value: pulumi.Input[str]):
596
+ def city(self, value: pulumi.Input[builtins.str]):
596
597
  pulumi.set(self, "city", value)
597
598
 
598
599
  @property
599
600
  @pulumi.getter(name="companyIdentificationCode")
600
- def company_identification_code(self) -> pulumi.Input[str]:
601
+ def company_identification_code(self) -> pulumi.Input[builtins.str]:
601
602
  """
602
603
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
603
604
  """
604
605
  return pulumi.get(self, "company_identification_code")
605
606
 
606
607
  @company_identification_code.setter
607
- def company_identification_code(self, value: pulumi.Input[str]):
608
+ def company_identification_code(self, value: pulumi.Input[builtins.str]):
608
609
  pulumi.set(self, "company_identification_code", value)
609
610
 
610
611
  @property
611
612
  @pulumi.getter
612
- def country(self) -> pulumi.Input[str]:
613
+ def country(self) -> pulumi.Input[builtins.str]:
613
614
  """
614
615
  Country code of the contact's address (ISO format).
615
616
  """
616
617
  return pulumi.get(self, "country")
617
618
 
618
619
  @country.setter
619
- def country(self, value: pulumi.Input[str]):
620
+ def country(self, value: pulumi.Input[builtins.str]):
620
621
  pulumi.set(self, "country", value)
621
622
 
622
623
  @property
623
624
  @pulumi.getter
624
- def email(self) -> pulumi.Input[str]:
625
+ def email(self) -> pulumi.Input[builtins.str]:
625
626
  """
626
627
  Primary email address of the contact.
627
628
  """
628
629
  return pulumi.get(self, "email")
629
630
 
630
631
  @email.setter
631
- def email(self, value: pulumi.Input[str]):
632
+ def email(self, value: pulumi.Input[builtins.str]):
632
633
  pulumi.set(self, "email", value)
633
634
 
634
635
  @property
635
636
  @pulumi.getter
636
- def firstname(self) -> pulumi.Input[str]:
637
+ def firstname(self) -> pulumi.Input[builtins.str]:
637
638
  """
638
639
  First name of the contact.
639
640
  """
640
641
  return pulumi.get(self, "firstname")
641
642
 
642
643
  @firstname.setter
643
- def firstname(self, value: pulumi.Input[str]):
644
+ def firstname(self, value: pulumi.Input[builtins.str]):
644
645
  pulumi.set(self, "firstname", value)
645
646
 
646
647
  @property
647
648
  @pulumi.getter
648
- def lastname(self) -> pulumi.Input[str]:
649
+ def lastname(self) -> pulumi.Input[builtins.str]:
649
650
  """
650
651
  Last name of the contact.
651
652
  """
652
653
  return pulumi.get(self, "lastname")
653
654
 
654
655
  @lastname.setter
655
- def lastname(self, value: pulumi.Input[str]):
656
+ def lastname(self, value: pulumi.Input[builtins.str]):
656
657
  pulumi.set(self, "lastname", value)
657
658
 
658
659
  @property
659
660
  @pulumi.getter(name="legalForm")
660
- def legal_form(self) -> pulumi.Input[str]:
661
+ def legal_form(self) -> pulumi.Input[builtins.str]:
661
662
  """
662
663
  Legal form of the contact (e.g., 'individual' or 'organization').
663
664
  """
664
665
  return pulumi.get(self, "legal_form")
665
666
 
666
667
  @legal_form.setter
667
- def legal_form(self, value: pulumi.Input[str]):
668
+ def legal_form(self, value: pulumi.Input[builtins.str]):
668
669
  pulumi.set(self, "legal_form", value)
669
670
 
670
671
  @property
671
672
  @pulumi.getter(name="phoneNumber")
672
- def phone_number(self) -> pulumi.Input[str]:
673
+ def phone_number(self) -> pulumi.Input[builtins.str]:
673
674
  """
674
675
  Primary phone number of the contact.
675
676
  """
676
677
  return pulumi.get(self, "phone_number")
677
678
 
678
679
  @phone_number.setter
679
- def phone_number(self, value: pulumi.Input[str]):
680
+ def phone_number(self, value: pulumi.Input[builtins.str]):
680
681
  pulumi.set(self, "phone_number", value)
681
682
 
682
683
  @property
683
684
  @pulumi.getter(name="vatIdentificationCode")
684
- def vat_identification_code(self) -> pulumi.Input[str]:
685
+ def vat_identification_code(self) -> pulumi.Input[builtins.str]:
685
686
  """
686
687
  VAT identification code of the contact, if applicable.
687
688
  """
688
689
  return pulumi.get(self, "vat_identification_code")
689
690
 
690
691
  @vat_identification_code.setter
691
- def vat_identification_code(self, value: pulumi.Input[str]):
692
+ def vat_identification_code(self, value: pulumi.Input[builtins.str]):
692
693
  pulumi.set(self, "vat_identification_code", value)
693
694
 
694
695
  @property
695
696
  @pulumi.getter
696
- def zip(self) -> pulumi.Input[str]:
697
+ def zip(self) -> pulumi.Input[builtins.str]:
697
698
  """
698
699
  Postal code of the contact's address.
699
700
  """
700
701
  return pulumi.get(self, "zip")
701
702
 
702
703
  @zip.setter
703
- def zip(self, value: pulumi.Input[str]):
704
+ def zip(self, value: pulumi.Input[builtins.str]):
704
705
  pulumi.set(self, "zip", value)
705
706
 
706
707
  @property
707
708
  @pulumi.getter(name="addressLine2")
708
- def address_line2(self) -> Optional[pulumi.Input[str]]:
709
+ def address_line2(self) -> Optional[pulumi.Input[builtins.str]]:
709
710
  """
710
711
  Secondary address line for the contact (optional).
711
712
  """
712
713
  return pulumi.get(self, "address_line2")
713
714
 
714
715
  @address_line2.setter
715
- def address_line2(self, value: Optional[pulumi.Input[str]]):
716
+ def address_line2(self, value: Optional[pulumi.Input[builtins.str]]):
716
717
  pulumi.set(self, "address_line2", value)
717
718
 
718
719
  @property
719
720
  @pulumi.getter(name="companyName")
720
- def company_name(self) -> Optional[pulumi.Input[str]]:
721
+ def company_name(self) -> Optional[pulumi.Input[builtins.str]]:
721
722
  """
722
723
  Name of the company associated with the contact (if applicable).
723
724
  """
724
725
  return pulumi.get(self, "company_name")
725
726
 
726
727
  @company_name.setter
727
- def company_name(self, value: Optional[pulumi.Input[str]]):
728
+ def company_name(self, value: Optional[pulumi.Input[builtins.str]]):
728
729
  pulumi.set(self, "company_name", value)
729
730
 
730
731
  @property
731
732
  @pulumi.getter(name="emailAlt")
732
- def email_alt(self) -> Optional[pulumi.Input[str]]:
733
+ def email_alt(self) -> Optional[pulumi.Input[builtins.str]]:
733
734
  """
734
735
  Alternative email address for the contact.
735
736
  """
736
737
  return pulumi.get(self, "email_alt")
737
738
 
738
739
  @email_alt.setter
739
- def email_alt(self, value: Optional[pulumi.Input[str]]):
740
+ def email_alt(self, value: Optional[pulumi.Input[builtins.str]]):
740
741
  pulumi.set(self, "email_alt", value)
741
742
 
742
743
  @property
@@ -765,80 +766,80 @@ class RegistrationAdministrativeContactArgs:
765
766
 
766
767
  @property
767
768
  @pulumi.getter(name="extensionNls")
768
- def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
769
+ def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
769
770
  """
770
771
  Extension details specific to Dutch domain registrations.
771
772
  """
772
773
  return pulumi.get(self, "extension_nls")
773
774
 
774
775
  @extension_nls.setter
775
- def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
776
+ def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
776
777
  pulumi.set(self, "extension_nls", value)
777
778
 
778
779
  @property
779
780
  @pulumi.getter(name="faxNumber")
780
- def fax_number(self) -> Optional[pulumi.Input[str]]:
781
+ def fax_number(self) -> Optional[pulumi.Input[builtins.str]]:
781
782
  """
782
783
  Fax number for the contact (if available).
783
784
  """
784
785
  return pulumi.get(self, "fax_number")
785
786
 
786
787
  @fax_number.setter
787
- def fax_number(self, value: Optional[pulumi.Input[str]]):
788
+ def fax_number(self, value: Optional[pulumi.Input[builtins.str]]):
788
789
  pulumi.set(self, "fax_number", value)
789
790
 
790
791
  @property
791
792
  @pulumi.getter
792
- def lang(self) -> Optional[pulumi.Input[str]]:
793
+ def lang(self) -> Optional[pulumi.Input[builtins.str]]:
793
794
  """
794
795
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
795
796
  """
796
797
  return pulumi.get(self, "lang")
797
798
 
798
799
  @lang.setter
799
- def lang(self, value: Optional[pulumi.Input[str]]):
800
+ def lang(self, value: Optional[pulumi.Input[builtins.str]]):
800
801
  pulumi.set(self, "lang", value)
801
802
 
802
803
  @property
803
804
  @pulumi.getter
804
- def resale(self) -> Optional[pulumi.Input[bool]]:
805
+ def resale(self) -> Optional[pulumi.Input[builtins.bool]]:
805
806
  """
806
807
  Indicates if the contact is used for resale purposes.
807
808
  """
808
809
  return pulumi.get(self, "resale")
809
810
 
810
811
  @resale.setter
811
- def resale(self, value: Optional[pulumi.Input[bool]]):
812
+ def resale(self, value: Optional[pulumi.Input[builtins.bool]]):
812
813
  pulumi.set(self, "resale", value)
813
814
 
814
815
  @property
815
816
  @pulumi.getter
816
- def state(self) -> Optional[pulumi.Input[str]]:
817
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
817
818
  """
818
819
  State or region of the contact.
819
820
  """
820
821
  return pulumi.get(self, "state")
821
822
 
822
823
  @state.setter
823
- def state(self, value: Optional[pulumi.Input[str]]):
824
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
824
825
  pulumi.set(self, "state", value)
825
826
 
826
827
  @property
827
828
  @pulumi.getter(name="whoisOptIn")
828
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
829
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
829
830
  """
830
831
  Indicates whether the contact has opted into WHOIS publishing.
831
832
  """
832
833
  return pulumi.get(self, "whois_opt_in")
833
834
 
834
835
  @whois_opt_in.setter
835
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
836
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
836
837
  pulumi.set(self, "whois_opt_in", value)
837
838
 
838
839
 
839
840
  if not MYPY:
840
841
  class RegistrationAdministrativeContactExtensionEuArgsDict(TypedDict):
841
- european_citizenship: NotRequired[pulumi.Input[str]]
842
+ european_citizenship: NotRequired[pulumi.Input[builtins.str]]
842
843
  """
843
844
  Indicates the European citizenship of the contact.
844
845
  """
@@ -848,23 +849,23 @@ elif False:
848
849
  @pulumi.input_type
849
850
  class RegistrationAdministrativeContactExtensionEuArgs:
850
851
  def __init__(__self__, *,
851
- european_citizenship: Optional[pulumi.Input[str]] = None):
852
+ european_citizenship: Optional[pulumi.Input[builtins.str]] = None):
852
853
  """
853
- :param pulumi.Input[str] european_citizenship: Indicates the European citizenship of the contact.
854
+ :param pulumi.Input[builtins.str] european_citizenship: Indicates the European citizenship of the contact.
854
855
  """
855
856
  if european_citizenship is not None:
856
857
  pulumi.set(__self__, "european_citizenship", european_citizenship)
857
858
 
858
859
  @property
859
860
  @pulumi.getter(name="europeanCitizenship")
860
- def european_citizenship(self) -> Optional[pulumi.Input[str]]:
861
+ def european_citizenship(self) -> Optional[pulumi.Input[builtins.str]]:
861
862
  """
862
863
  Indicates the European citizenship of the contact.
863
864
  """
864
865
  return pulumi.get(self, "european_citizenship")
865
866
 
866
867
  @european_citizenship.setter
867
- def european_citizenship(self, value: Optional[pulumi.Input[str]]):
868
+ def european_citizenship(self, value: Optional[pulumi.Input[builtins.str]]):
868
869
  pulumi.set(self, "european_citizenship", value)
869
870
 
870
871
 
@@ -886,7 +887,7 @@ if not MYPY:
886
887
  """
887
888
  Information about the individual registration for French domains.
888
889
  """
889
- mode: NotRequired[pulumi.Input[str]]
890
+ mode: NotRequired[pulumi.Input[builtins.str]]
890
891
  """
891
892
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
892
893
  """
@@ -904,14 +905,14 @@ class RegistrationAdministrativeContactExtensionFrArgs:
904
905
  code_auth_afnic_info: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgs']] = None,
905
906
  duns_info: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionFrDunsInfoArgs']] = None,
906
907
  individual_info: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionFrIndividualInfoArgs']] = None,
907
- mode: Optional[pulumi.Input[str]] = None,
908
+ mode: Optional[pulumi.Input[builtins.str]] = None,
908
909
  trademark_info: Optional[pulumi.Input['RegistrationAdministrativeContactExtensionFrTrademarkInfoArgs']] = None):
909
910
  """
910
911
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrAssociationInfoArgs'] association_info: Association-specific information for the domain (French extension).
911
912
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgs'] code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
912
913
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrDunsInfoArgs'] duns_info: DUNS information for the domain owner (specific to French domains).
913
914
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrIndividualInfoArgs'] individual_info: Information about the individual registration for French domains.
914
- :param pulumi.Input[str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
915
+ :param pulumi.Input[builtins.str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
915
916
  :param pulumi.Input['RegistrationAdministrativeContactExtensionFrTrademarkInfoArgs'] trademark_info: Trademark-related information for the domain (French extension).
916
917
  """
917
918
  if association_info is not None:
@@ -977,14 +978,14 @@ class RegistrationAdministrativeContactExtensionFrArgs:
977
978
 
978
979
  @property
979
980
  @pulumi.getter
980
- def mode(self) -> Optional[pulumi.Input[str]]:
981
+ def mode(self) -> Optional[pulumi.Input[builtins.str]]:
981
982
  """
982
983
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
983
984
  """
984
985
  return pulumi.get(self, "mode")
985
986
 
986
987
  @mode.setter
987
- def mode(self, value: Optional[pulumi.Input[str]]):
988
+ def mode(self, value: Optional[pulumi.Input[builtins.str]]):
988
989
  pulumi.set(self, "mode", value)
989
990
 
990
991
  @property
@@ -1002,11 +1003,11 @@ class RegistrationAdministrativeContactExtensionFrArgs:
1002
1003
 
1003
1004
  if not MYPY:
1004
1005
  class RegistrationAdministrativeContactExtensionFrAssociationInfoArgsDict(TypedDict):
1005
- publication_jo: NotRequired[pulumi.Input[str]]
1006
+ publication_jo: NotRequired[pulumi.Input[builtins.str]]
1006
1007
  """
1007
1008
  Publication date in the Official Journal (RFC3339 format) for association information.
1008
1009
  """
1009
- publication_jo_page: NotRequired[pulumi.Input[int]]
1010
+ publication_jo_page: NotRequired[pulumi.Input[builtins.int]]
1010
1011
  """
1011
1012
  Page number of the publication in the Official Journal for association information.
1012
1013
  """
@@ -1016,11 +1017,11 @@ elif False:
1016
1017
  @pulumi.input_type
1017
1018
  class RegistrationAdministrativeContactExtensionFrAssociationInfoArgs:
1018
1019
  def __init__(__self__, *,
1019
- publication_jo: Optional[pulumi.Input[str]] = None,
1020
- publication_jo_page: Optional[pulumi.Input[int]] = None):
1020
+ publication_jo: Optional[pulumi.Input[builtins.str]] = None,
1021
+ publication_jo_page: Optional[pulumi.Input[builtins.int]] = None):
1021
1022
  """
1022
- :param pulumi.Input[str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
1023
- :param pulumi.Input[int] publication_jo_page: Page number of the publication in the Official Journal for association information.
1023
+ :param pulumi.Input[builtins.str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
1024
+ :param pulumi.Input[builtins.int] publication_jo_page: Page number of the publication in the Official Journal for association information.
1024
1025
  """
1025
1026
  if publication_jo is not None:
1026
1027
  pulumi.set(__self__, "publication_jo", publication_jo)
@@ -1029,32 +1030,32 @@ class RegistrationAdministrativeContactExtensionFrAssociationInfoArgs:
1029
1030
 
1030
1031
  @property
1031
1032
  @pulumi.getter(name="publicationJo")
1032
- def publication_jo(self) -> Optional[pulumi.Input[str]]:
1033
+ def publication_jo(self) -> Optional[pulumi.Input[builtins.str]]:
1033
1034
  """
1034
1035
  Publication date in the Official Journal (RFC3339 format) for association information.
1035
1036
  """
1036
1037
  return pulumi.get(self, "publication_jo")
1037
1038
 
1038
1039
  @publication_jo.setter
1039
- def publication_jo(self, value: Optional[pulumi.Input[str]]):
1040
+ def publication_jo(self, value: Optional[pulumi.Input[builtins.str]]):
1040
1041
  pulumi.set(self, "publication_jo", value)
1041
1042
 
1042
1043
  @property
1043
1044
  @pulumi.getter(name="publicationJoPage")
1044
- def publication_jo_page(self) -> Optional[pulumi.Input[int]]:
1045
+ def publication_jo_page(self) -> Optional[pulumi.Input[builtins.int]]:
1045
1046
  """
1046
1047
  Page number of the publication in the Official Journal for association information.
1047
1048
  """
1048
1049
  return pulumi.get(self, "publication_jo_page")
1049
1050
 
1050
1051
  @publication_jo_page.setter
1051
- def publication_jo_page(self, value: Optional[pulumi.Input[int]]):
1052
+ def publication_jo_page(self, value: Optional[pulumi.Input[builtins.int]]):
1052
1053
  pulumi.set(self, "publication_jo_page", value)
1053
1054
 
1054
1055
 
1055
1056
  if not MYPY:
1056
1057
  class RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgsDict(TypedDict):
1057
- code_auth_afnic: NotRequired[pulumi.Input[str]]
1058
+ code_auth_afnic: NotRequired[pulumi.Input[builtins.str]]
1058
1059
  """
1059
1060
  AFNIC authorization code for the contact (specific to French domains).
1060
1061
  """
@@ -1064,33 +1065,33 @@ elif False:
1064
1065
  @pulumi.input_type
1065
1066
  class RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgs:
1066
1067
  def __init__(__self__, *,
1067
- code_auth_afnic: Optional[pulumi.Input[str]] = None):
1068
+ code_auth_afnic: Optional[pulumi.Input[builtins.str]] = None):
1068
1069
  """
1069
- :param pulumi.Input[str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
1070
+ :param pulumi.Input[builtins.str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
1070
1071
  """
1071
1072
  if code_auth_afnic is not None:
1072
1073
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
1073
1074
 
1074
1075
  @property
1075
1076
  @pulumi.getter(name="codeAuthAfnic")
1076
- def code_auth_afnic(self) -> Optional[pulumi.Input[str]]:
1077
+ def code_auth_afnic(self) -> Optional[pulumi.Input[builtins.str]]:
1077
1078
  """
1078
1079
  AFNIC authorization code for the contact (specific to French domains).
1079
1080
  """
1080
1081
  return pulumi.get(self, "code_auth_afnic")
1081
1082
 
1082
1083
  @code_auth_afnic.setter
1083
- def code_auth_afnic(self, value: Optional[pulumi.Input[str]]):
1084
+ def code_auth_afnic(self, value: Optional[pulumi.Input[builtins.str]]):
1084
1085
  pulumi.set(self, "code_auth_afnic", value)
1085
1086
 
1086
1087
 
1087
1088
  if not MYPY:
1088
1089
  class RegistrationAdministrativeContactExtensionFrDunsInfoArgsDict(TypedDict):
1089
- duns_id: NotRequired[pulumi.Input[str]]
1090
+ duns_id: NotRequired[pulumi.Input[builtins.str]]
1090
1091
  """
1091
1092
  DUNS ID associated with the domain owner (for French domains).
1092
1093
  """
1093
- local_id: NotRequired[pulumi.Input[str]]
1094
+ local_id: NotRequired[pulumi.Input[builtins.str]]
1094
1095
  """
1095
1096
  Local identifier of the domain owner (for French domains).
1096
1097
  """
@@ -1100,11 +1101,11 @@ elif False:
1100
1101
  @pulumi.input_type
1101
1102
  class RegistrationAdministrativeContactExtensionFrDunsInfoArgs:
1102
1103
  def __init__(__self__, *,
1103
- duns_id: Optional[pulumi.Input[str]] = None,
1104
- local_id: Optional[pulumi.Input[str]] = None):
1104
+ duns_id: Optional[pulumi.Input[builtins.str]] = None,
1105
+ local_id: Optional[pulumi.Input[builtins.str]] = None):
1105
1106
  """
1106
- :param pulumi.Input[str] duns_id: DUNS ID associated with the domain owner (for French domains).
1107
- :param pulumi.Input[str] local_id: Local identifier of the domain owner (for French domains).
1107
+ :param pulumi.Input[builtins.str] duns_id: DUNS ID associated with the domain owner (for French domains).
1108
+ :param pulumi.Input[builtins.str] local_id: Local identifier of the domain owner (for French domains).
1108
1109
  """
1109
1110
  if duns_id is not None:
1110
1111
  pulumi.set(__self__, "duns_id", duns_id)
@@ -1113,32 +1114,32 @@ class RegistrationAdministrativeContactExtensionFrDunsInfoArgs:
1113
1114
 
1114
1115
  @property
1115
1116
  @pulumi.getter(name="dunsId")
1116
- def duns_id(self) -> Optional[pulumi.Input[str]]:
1117
+ def duns_id(self) -> Optional[pulumi.Input[builtins.str]]:
1117
1118
  """
1118
1119
  DUNS ID associated with the domain owner (for French domains).
1119
1120
  """
1120
1121
  return pulumi.get(self, "duns_id")
1121
1122
 
1122
1123
  @duns_id.setter
1123
- def duns_id(self, value: Optional[pulumi.Input[str]]):
1124
+ def duns_id(self, value: Optional[pulumi.Input[builtins.str]]):
1124
1125
  pulumi.set(self, "duns_id", value)
1125
1126
 
1126
1127
  @property
1127
1128
  @pulumi.getter(name="localId")
1128
- def local_id(self) -> Optional[pulumi.Input[str]]:
1129
+ def local_id(self) -> Optional[pulumi.Input[builtins.str]]:
1129
1130
  """
1130
1131
  Local identifier of the domain owner (for French domains).
1131
1132
  """
1132
1133
  return pulumi.get(self, "local_id")
1133
1134
 
1134
1135
  @local_id.setter
1135
- def local_id(self, value: Optional[pulumi.Input[str]]):
1136
+ def local_id(self, value: Optional[pulumi.Input[builtins.str]]):
1136
1137
  pulumi.set(self, "local_id", value)
1137
1138
 
1138
1139
 
1139
1140
  if not MYPY:
1140
1141
  class RegistrationAdministrativeContactExtensionFrIndividualInfoArgsDict(TypedDict):
1141
- whois_opt_in: NotRequired[pulumi.Input[bool]]
1142
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
1142
1143
  """
1143
1144
  Whether the individual contact has opted into WHOIS publishing.
1144
1145
  """
@@ -1148,29 +1149,29 @@ elif False:
1148
1149
  @pulumi.input_type
1149
1150
  class RegistrationAdministrativeContactExtensionFrIndividualInfoArgs:
1150
1151
  def __init__(__self__, *,
1151
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
1152
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
1152
1153
  """
1153
- :param pulumi.Input[bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
1154
+ :param pulumi.Input[builtins.bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
1154
1155
  """
1155
1156
  if whois_opt_in is not None:
1156
1157
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
1157
1158
 
1158
1159
  @property
1159
1160
  @pulumi.getter(name="whoisOptIn")
1160
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
1161
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
1161
1162
  """
1162
1163
  Whether the individual contact has opted into WHOIS publishing.
1163
1164
  """
1164
1165
  return pulumi.get(self, "whois_opt_in")
1165
1166
 
1166
1167
  @whois_opt_in.setter
1167
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
1168
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
1168
1169
  pulumi.set(self, "whois_opt_in", value)
1169
1170
 
1170
1171
 
1171
1172
  if not MYPY:
1172
1173
  class RegistrationAdministrativeContactExtensionFrTrademarkInfoArgsDict(TypedDict):
1173
- trademark_inpi: NotRequired[pulumi.Input[str]]
1174
+ trademark_inpi: NotRequired[pulumi.Input[builtins.str]]
1174
1175
  """
1175
1176
  Trademark information from INPI (French extension).
1176
1177
  """
@@ -1180,29 +1181,29 @@ elif False:
1180
1181
  @pulumi.input_type
1181
1182
  class RegistrationAdministrativeContactExtensionFrTrademarkInfoArgs:
1182
1183
  def __init__(__self__, *,
1183
- trademark_inpi: Optional[pulumi.Input[str]] = None):
1184
+ trademark_inpi: Optional[pulumi.Input[builtins.str]] = None):
1184
1185
  """
1185
- :param pulumi.Input[str] trademark_inpi: Trademark information from INPI (French extension).
1186
+ :param pulumi.Input[builtins.str] trademark_inpi: Trademark information from INPI (French extension).
1186
1187
  """
1187
1188
  if trademark_inpi is not None:
1188
1189
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
1189
1190
 
1190
1191
  @property
1191
1192
  @pulumi.getter(name="trademarkInpi")
1192
- def trademark_inpi(self) -> Optional[pulumi.Input[str]]:
1193
+ def trademark_inpi(self) -> Optional[pulumi.Input[builtins.str]]:
1193
1194
  """
1194
1195
  Trademark information from INPI (French extension).
1195
1196
  """
1196
1197
  return pulumi.get(self, "trademark_inpi")
1197
1198
 
1198
1199
  @trademark_inpi.setter
1199
- def trademark_inpi(self, value: Optional[pulumi.Input[str]]):
1200
+ def trademark_inpi(self, value: Optional[pulumi.Input[builtins.str]]):
1200
1201
  pulumi.set(self, "trademark_inpi", value)
1201
1202
 
1202
1203
 
1203
1204
  if not MYPY:
1204
1205
  class RegistrationDsRecordArgsDict(TypedDict):
1205
- algorithm: NotRequired[pulumi.Input[str]]
1206
+ algorithm: NotRequired[pulumi.Input[builtins.str]]
1206
1207
  """
1207
1208
  The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
1208
1209
  """
@@ -1210,7 +1211,7 @@ if not MYPY:
1210
1211
  """
1211
1212
  Details about the digest.
1212
1213
  """
1213
- key_id: NotRequired[pulumi.Input[int]]
1214
+ key_id: NotRequired[pulumi.Input[builtins.int]]
1214
1215
  """
1215
1216
  The identifier for the dnssec key.
1216
1217
  """
@@ -1224,14 +1225,14 @@ elif False:
1224
1225
  @pulumi.input_type
1225
1226
  class RegistrationDsRecordArgs:
1226
1227
  def __init__(__self__, *,
1227
- algorithm: Optional[pulumi.Input[str]] = None,
1228
+ algorithm: Optional[pulumi.Input[builtins.str]] = None,
1228
1229
  digests: Optional[pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordDigestArgs']]]] = None,
1229
- key_id: Optional[pulumi.Input[int]] = None,
1230
+ key_id: Optional[pulumi.Input[builtins.int]] = None,
1230
1231
  public_keys: Optional[pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordPublicKeyArgs']]]] = None):
1231
1232
  """
1232
- :param pulumi.Input[str] algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
1233
+ :param pulumi.Input[builtins.str] algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
1233
1234
  :param pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordDigestArgs']]] digests: Details about the digest.
1234
- :param pulumi.Input[int] key_id: The identifier for the dnssec key.
1235
+ :param pulumi.Input[builtins.int] key_id: The identifier for the dnssec key.
1235
1236
  :param pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordPublicKeyArgs']]] public_keys: Public key associated with the dnssec record.
1236
1237
  """
1237
1238
  if algorithm is not None:
@@ -1245,14 +1246,14 @@ class RegistrationDsRecordArgs:
1245
1246
 
1246
1247
  @property
1247
1248
  @pulumi.getter
1248
- def algorithm(self) -> Optional[pulumi.Input[str]]:
1249
+ def algorithm(self) -> Optional[pulumi.Input[builtins.str]]:
1249
1250
  """
1250
1251
  The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
1251
1252
  """
1252
1253
  return pulumi.get(self, "algorithm")
1253
1254
 
1254
1255
  @algorithm.setter
1255
- def algorithm(self, value: Optional[pulumi.Input[str]]):
1256
+ def algorithm(self, value: Optional[pulumi.Input[builtins.str]]):
1256
1257
  pulumi.set(self, "algorithm", value)
1257
1258
 
1258
1259
  @property
@@ -1269,14 +1270,14 @@ class RegistrationDsRecordArgs:
1269
1270
 
1270
1271
  @property
1271
1272
  @pulumi.getter(name="keyId")
1272
- def key_id(self) -> Optional[pulumi.Input[int]]:
1273
+ def key_id(self) -> Optional[pulumi.Input[builtins.int]]:
1273
1274
  """
1274
1275
  The identifier for the dnssec key.
1275
1276
  """
1276
1277
  return pulumi.get(self, "key_id")
1277
1278
 
1278
1279
  @key_id.setter
1279
- def key_id(self, value: Optional[pulumi.Input[int]]):
1280
+ def key_id(self, value: Optional[pulumi.Input[builtins.int]]):
1280
1281
  pulumi.set(self, "key_id", value)
1281
1282
 
1282
1283
  @property
@@ -1294,7 +1295,7 @@ class RegistrationDsRecordArgs:
1294
1295
 
1295
1296
  if not MYPY:
1296
1297
  class RegistrationDsRecordDigestArgsDict(TypedDict):
1297
- digest: NotRequired[pulumi.Input[str]]
1298
+ digest: NotRequired[pulumi.Input[builtins.str]]
1298
1299
  """
1299
1300
  The digest value.
1300
1301
  """
@@ -1302,7 +1303,7 @@ if not MYPY:
1302
1303
  """
1303
1304
  The public key associated with the digest.
1304
1305
  """
1305
- type: NotRequired[pulumi.Input[str]]
1306
+ type: NotRequired[pulumi.Input[builtins.str]]
1306
1307
  """
1307
1308
  The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1308
1309
  """
@@ -1312,13 +1313,13 @@ elif False:
1312
1313
  @pulumi.input_type
1313
1314
  class RegistrationDsRecordDigestArgs:
1314
1315
  def __init__(__self__, *,
1315
- digest: Optional[pulumi.Input[str]] = None,
1316
+ digest: Optional[pulumi.Input[builtins.str]] = None,
1316
1317
  public_keys: Optional[pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordDigestPublicKeyArgs']]]] = None,
1317
- type: Optional[pulumi.Input[str]] = None):
1318
+ type: Optional[pulumi.Input[builtins.str]] = None):
1318
1319
  """
1319
- :param pulumi.Input[str] digest: The digest value.
1320
+ :param pulumi.Input[builtins.str] digest: The digest value.
1320
1321
  :param pulumi.Input[Sequence[pulumi.Input['RegistrationDsRecordDigestPublicKeyArgs']]] public_keys: The public key associated with the digest.
1321
- :param pulumi.Input[str] type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1322
+ :param pulumi.Input[builtins.str] type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1322
1323
  """
1323
1324
  if digest is not None:
1324
1325
  pulumi.set(__self__, "digest", digest)
@@ -1329,14 +1330,14 @@ class RegistrationDsRecordDigestArgs:
1329
1330
 
1330
1331
  @property
1331
1332
  @pulumi.getter
1332
- def digest(self) -> Optional[pulumi.Input[str]]:
1333
+ def digest(self) -> Optional[pulumi.Input[builtins.str]]:
1333
1334
  """
1334
1335
  The digest value.
1335
1336
  """
1336
1337
  return pulumi.get(self, "digest")
1337
1338
 
1338
1339
  @digest.setter
1339
- def digest(self, value: Optional[pulumi.Input[str]]):
1340
+ def digest(self, value: Optional[pulumi.Input[builtins.str]]):
1340
1341
  pulumi.set(self, "digest", value)
1341
1342
 
1342
1343
  @property
@@ -1353,20 +1354,20 @@ class RegistrationDsRecordDigestArgs:
1353
1354
 
1354
1355
  @property
1355
1356
  @pulumi.getter
1356
- def type(self) -> Optional[pulumi.Input[str]]:
1357
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
1357
1358
  """
1358
1359
  The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1359
1360
  """
1360
1361
  return pulumi.get(self, "type")
1361
1362
 
1362
1363
  @type.setter
1363
- def type(self, value: Optional[pulumi.Input[str]]):
1364
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
1364
1365
  pulumi.set(self, "type", value)
1365
1366
 
1366
1367
 
1367
1368
  if not MYPY:
1368
1369
  class RegistrationDsRecordDigestPublicKeyArgsDict(TypedDict):
1369
- key: pulumi.Input[str]
1370
+ key: pulumi.Input[builtins.str]
1370
1371
  """
1371
1372
  The public key value.
1372
1373
  """
@@ -1376,28 +1377,28 @@ elif False:
1376
1377
  @pulumi.input_type
1377
1378
  class RegistrationDsRecordDigestPublicKeyArgs:
1378
1379
  def __init__(__self__, *,
1379
- key: pulumi.Input[str]):
1380
+ key: pulumi.Input[builtins.str]):
1380
1381
  """
1381
- :param pulumi.Input[str] key: The public key value.
1382
+ :param pulumi.Input[builtins.str] key: The public key value.
1382
1383
  """
1383
1384
  pulumi.set(__self__, "key", key)
1384
1385
 
1385
1386
  @property
1386
1387
  @pulumi.getter
1387
- def key(self) -> pulumi.Input[str]:
1388
+ def key(self) -> pulumi.Input[builtins.str]:
1388
1389
  """
1389
1390
  The public key value.
1390
1391
  """
1391
1392
  return pulumi.get(self, "key")
1392
1393
 
1393
1394
  @key.setter
1394
- def key(self, value: pulumi.Input[str]):
1395
+ def key(self, value: pulumi.Input[builtins.str]):
1395
1396
  pulumi.set(self, "key", value)
1396
1397
 
1397
1398
 
1398
1399
  if not MYPY:
1399
1400
  class RegistrationDsRecordPublicKeyArgsDict(TypedDict):
1400
- key: pulumi.Input[str]
1401
+ key: pulumi.Input[builtins.str]
1401
1402
  """
1402
1403
  The public key value.
1403
1404
  """
@@ -1407,80 +1408,80 @@ elif False:
1407
1408
  @pulumi.input_type
1408
1409
  class RegistrationDsRecordPublicKeyArgs:
1409
1410
  def __init__(__self__, *,
1410
- key: pulumi.Input[str]):
1411
+ key: pulumi.Input[builtins.str]):
1411
1412
  """
1412
- :param pulumi.Input[str] key: The public key value.
1413
+ :param pulumi.Input[builtins.str] key: The public key value.
1413
1414
  """
1414
1415
  pulumi.set(__self__, "key", key)
1415
1416
 
1416
1417
  @property
1417
1418
  @pulumi.getter
1418
- def key(self) -> pulumi.Input[str]:
1419
+ def key(self) -> pulumi.Input[builtins.str]:
1419
1420
  """
1420
1421
  The public key value.
1421
1422
  """
1422
1423
  return pulumi.get(self, "key")
1423
1424
 
1424
1425
  @key.setter
1425
- def key(self, value: pulumi.Input[str]):
1426
+ def key(self, value: pulumi.Input[builtins.str]):
1426
1427
  pulumi.set(self, "key", value)
1427
1428
 
1428
1429
 
1429
1430
  if not MYPY:
1430
1431
  class RegistrationOwnerContactArgsDict(TypedDict):
1431
- address_line1: pulumi.Input[str]
1432
+ address_line1: pulumi.Input[builtins.str]
1432
1433
  """
1433
1434
  Primary address line for the contact.
1434
1435
  """
1435
- city: pulumi.Input[str]
1436
+ city: pulumi.Input[builtins.str]
1436
1437
  """
1437
1438
  City of the contact's address.
1438
1439
  """
1439
- company_identification_code: pulumi.Input[str]
1440
+ company_identification_code: pulumi.Input[builtins.str]
1440
1441
  """
1441
1442
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
1442
1443
  """
1443
- country: pulumi.Input[str]
1444
+ country: pulumi.Input[builtins.str]
1444
1445
  """
1445
1446
  Country code of the contact's address (ISO format).
1446
1447
  """
1447
- email: pulumi.Input[str]
1448
+ email: pulumi.Input[builtins.str]
1448
1449
  """
1449
1450
  Primary email address of the contact.
1450
1451
  """
1451
- firstname: pulumi.Input[str]
1452
+ firstname: pulumi.Input[builtins.str]
1452
1453
  """
1453
1454
  First name of the contact.
1454
1455
  """
1455
- lastname: pulumi.Input[str]
1456
+ lastname: pulumi.Input[builtins.str]
1456
1457
  """
1457
1458
  Last name of the contact.
1458
1459
  """
1459
- legal_form: pulumi.Input[str]
1460
+ legal_form: pulumi.Input[builtins.str]
1460
1461
  """
1461
1462
  Legal form of the contact (e.g., 'individual' or 'organization').
1462
1463
  """
1463
- phone_number: pulumi.Input[str]
1464
+ phone_number: pulumi.Input[builtins.str]
1464
1465
  """
1465
1466
  Primary phone number of the contact.
1466
1467
  """
1467
- vat_identification_code: pulumi.Input[str]
1468
+ vat_identification_code: pulumi.Input[builtins.str]
1468
1469
  """
1469
1470
  VAT identification code of the contact, if applicable.
1470
1471
  """
1471
- zip: pulumi.Input[str]
1472
+ zip: pulumi.Input[builtins.str]
1472
1473
  """
1473
1474
  Postal code of the contact's address.
1474
1475
  """
1475
- address_line2: NotRequired[pulumi.Input[str]]
1476
+ address_line2: NotRequired[pulumi.Input[builtins.str]]
1476
1477
  """
1477
1478
  Secondary address line for the contact (optional).
1478
1479
  """
1479
- company_name: NotRequired[pulumi.Input[str]]
1480
+ company_name: NotRequired[pulumi.Input[builtins.str]]
1480
1481
  """
1481
1482
  Name of the company associated with the contact (if applicable).
1482
1483
  """
1483
- email_alt: NotRequired[pulumi.Input[str]]
1484
+ email_alt: NotRequired[pulumi.Input[builtins.str]]
1484
1485
  """
1485
1486
  Alternative email address for the contact.
1486
1487
  """
@@ -1492,27 +1493,27 @@ if not MYPY:
1492
1493
  """
1493
1494
  Details specific to French domain extensions.
1494
1495
  """
1495
- extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1496
+ extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
1496
1497
  """
1497
1498
  Extension details specific to Dutch domain registrations.
1498
1499
  """
1499
- fax_number: NotRequired[pulumi.Input[str]]
1500
+ fax_number: NotRequired[pulumi.Input[builtins.str]]
1500
1501
  """
1501
1502
  Fax number for the contact (if available).
1502
1503
  """
1503
- lang: NotRequired[pulumi.Input[str]]
1504
+ lang: NotRequired[pulumi.Input[builtins.str]]
1504
1505
  """
1505
1506
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1506
1507
  """
1507
- resale: NotRequired[pulumi.Input[bool]]
1508
+ resale: NotRequired[pulumi.Input[builtins.bool]]
1508
1509
  """
1509
1510
  Indicates if the contact is used for resale purposes.
1510
1511
  """
1511
- state: NotRequired[pulumi.Input[str]]
1512
+ state: NotRequired[pulumi.Input[builtins.str]]
1512
1513
  """
1513
1514
  State or region of the contact.
1514
1515
  """
1515
- whois_opt_in: NotRequired[pulumi.Input[bool]]
1516
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
1516
1517
  """
1517
1518
  Indicates whether the contact has opted into WHOIS publishing.
1518
1519
  """
@@ -1522,51 +1523,51 @@ elif False:
1522
1523
  @pulumi.input_type
1523
1524
  class RegistrationOwnerContactArgs:
1524
1525
  def __init__(__self__, *,
1525
- address_line1: pulumi.Input[str],
1526
- city: pulumi.Input[str],
1527
- company_identification_code: pulumi.Input[str],
1528
- country: pulumi.Input[str],
1529
- email: pulumi.Input[str],
1530
- firstname: pulumi.Input[str],
1531
- lastname: pulumi.Input[str],
1532
- legal_form: pulumi.Input[str],
1533
- phone_number: pulumi.Input[str],
1534
- vat_identification_code: pulumi.Input[str],
1535
- zip: pulumi.Input[str],
1536
- address_line2: Optional[pulumi.Input[str]] = None,
1537
- company_name: Optional[pulumi.Input[str]] = None,
1538
- email_alt: Optional[pulumi.Input[str]] = None,
1526
+ address_line1: pulumi.Input[builtins.str],
1527
+ city: pulumi.Input[builtins.str],
1528
+ company_identification_code: pulumi.Input[builtins.str],
1529
+ country: pulumi.Input[builtins.str],
1530
+ email: pulumi.Input[builtins.str],
1531
+ firstname: pulumi.Input[builtins.str],
1532
+ lastname: pulumi.Input[builtins.str],
1533
+ legal_form: pulumi.Input[builtins.str],
1534
+ phone_number: pulumi.Input[builtins.str],
1535
+ vat_identification_code: pulumi.Input[builtins.str],
1536
+ zip: pulumi.Input[builtins.str],
1537
+ address_line2: Optional[pulumi.Input[builtins.str]] = None,
1538
+ company_name: Optional[pulumi.Input[builtins.str]] = None,
1539
+ email_alt: Optional[pulumi.Input[builtins.str]] = None,
1539
1540
  extension_eu: Optional[pulumi.Input['RegistrationOwnerContactExtensionEuArgs']] = None,
1540
1541
  extension_fr: Optional[pulumi.Input['RegistrationOwnerContactExtensionFrArgs']] = None,
1541
- extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1542
- fax_number: Optional[pulumi.Input[str]] = None,
1543
- lang: Optional[pulumi.Input[str]] = None,
1544
- resale: Optional[pulumi.Input[bool]] = None,
1545
- state: Optional[pulumi.Input[str]] = None,
1546
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
1547
- """
1548
- :param pulumi.Input[str] address_line1: Primary address line for the contact.
1549
- :param pulumi.Input[str] city: City of the contact's address.
1550
- :param pulumi.Input[str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1551
- :param pulumi.Input[str] country: Country code of the contact's address (ISO format).
1552
- :param pulumi.Input[str] email: Primary email address of the contact.
1553
- :param pulumi.Input[str] firstname: First name of the contact.
1554
- :param pulumi.Input[str] lastname: Last name of the contact.
1555
- :param pulumi.Input[str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1556
- :param pulumi.Input[str] phone_number: Primary phone number of the contact.
1557
- :param pulumi.Input[str] vat_identification_code: VAT identification code of the contact, if applicable.
1558
- :param pulumi.Input[str] zip: Postal code of the contact's address.
1559
- :param pulumi.Input[str] address_line2: Secondary address line for the contact (optional).
1560
- :param pulumi.Input[str] company_name: Name of the company associated with the contact (if applicable).
1561
- :param pulumi.Input[str] email_alt: Alternative email address for the contact.
1542
+ extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1543
+ fax_number: Optional[pulumi.Input[builtins.str]] = None,
1544
+ lang: Optional[pulumi.Input[builtins.str]] = None,
1545
+ resale: Optional[pulumi.Input[builtins.bool]] = None,
1546
+ state: Optional[pulumi.Input[builtins.str]] = None,
1547
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
1548
+ """
1549
+ :param pulumi.Input[builtins.str] address_line1: Primary address line for the contact.
1550
+ :param pulumi.Input[builtins.str] city: City of the contact's address.
1551
+ :param pulumi.Input[builtins.str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1552
+ :param pulumi.Input[builtins.str] country: Country code of the contact's address (ISO format).
1553
+ :param pulumi.Input[builtins.str] email: Primary email address of the contact.
1554
+ :param pulumi.Input[builtins.str] firstname: First name of the contact.
1555
+ :param pulumi.Input[builtins.str] lastname: Last name of the contact.
1556
+ :param pulumi.Input[builtins.str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1557
+ :param pulumi.Input[builtins.str] phone_number: Primary phone number of the contact.
1558
+ :param pulumi.Input[builtins.str] vat_identification_code: VAT identification code of the contact, if applicable.
1559
+ :param pulumi.Input[builtins.str] zip: Postal code of the contact's address.
1560
+ :param pulumi.Input[builtins.str] address_line2: Secondary address line for the contact (optional).
1561
+ :param pulumi.Input[builtins.str] company_name: Name of the company associated with the contact (if applicable).
1562
+ :param pulumi.Input[builtins.str] email_alt: Alternative email address for the contact.
1562
1563
  :param pulumi.Input['RegistrationOwnerContactExtensionEuArgs'] extension_eu: Details specific to European domain extensions.
1563
1564
  :param pulumi.Input['RegistrationOwnerContactExtensionFrArgs'] extension_fr: Details specific to French domain extensions.
1564
- :param pulumi.Input[Sequence[pulumi.Input[str]]] extension_nls: Extension details specific to Dutch domain registrations.
1565
- :param pulumi.Input[str] fax_number: Fax number for the contact (if available).
1566
- :param pulumi.Input[str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1567
- :param pulumi.Input[bool] resale: Indicates if the contact is used for resale purposes.
1568
- :param pulumi.Input[str] state: State or region of the contact.
1569
- :param pulumi.Input[bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1565
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] extension_nls: Extension details specific to Dutch domain registrations.
1566
+ :param pulumi.Input[builtins.str] fax_number: Fax number for the contact (if available).
1567
+ :param pulumi.Input[builtins.str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1568
+ :param pulumi.Input[builtins.bool] resale: Indicates if the contact is used for resale purposes.
1569
+ :param pulumi.Input[builtins.str] state: State or region of the contact.
1570
+ :param pulumi.Input[builtins.bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1570
1571
  """
1571
1572
  pulumi.set(__self__, "address_line1", address_line1)
1572
1573
  pulumi.set(__self__, "city", city)
@@ -1604,170 +1605,170 @@ class RegistrationOwnerContactArgs:
1604
1605
 
1605
1606
  @property
1606
1607
  @pulumi.getter(name="addressLine1")
1607
- def address_line1(self) -> pulumi.Input[str]:
1608
+ def address_line1(self) -> pulumi.Input[builtins.str]:
1608
1609
  """
1609
1610
  Primary address line for the contact.
1610
1611
  """
1611
1612
  return pulumi.get(self, "address_line1")
1612
1613
 
1613
1614
  @address_line1.setter
1614
- def address_line1(self, value: pulumi.Input[str]):
1615
+ def address_line1(self, value: pulumi.Input[builtins.str]):
1615
1616
  pulumi.set(self, "address_line1", value)
1616
1617
 
1617
1618
  @property
1618
1619
  @pulumi.getter
1619
- def city(self) -> pulumi.Input[str]:
1620
+ def city(self) -> pulumi.Input[builtins.str]:
1620
1621
  """
1621
1622
  City of the contact's address.
1622
1623
  """
1623
1624
  return pulumi.get(self, "city")
1624
1625
 
1625
1626
  @city.setter
1626
- def city(self, value: pulumi.Input[str]):
1627
+ def city(self, value: pulumi.Input[builtins.str]):
1627
1628
  pulumi.set(self, "city", value)
1628
1629
 
1629
1630
  @property
1630
1631
  @pulumi.getter(name="companyIdentificationCode")
1631
- def company_identification_code(self) -> pulumi.Input[str]:
1632
+ def company_identification_code(self) -> pulumi.Input[builtins.str]:
1632
1633
  """
1633
1634
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
1634
1635
  """
1635
1636
  return pulumi.get(self, "company_identification_code")
1636
1637
 
1637
1638
  @company_identification_code.setter
1638
- def company_identification_code(self, value: pulumi.Input[str]):
1639
+ def company_identification_code(self, value: pulumi.Input[builtins.str]):
1639
1640
  pulumi.set(self, "company_identification_code", value)
1640
1641
 
1641
1642
  @property
1642
1643
  @pulumi.getter
1643
- def country(self) -> pulumi.Input[str]:
1644
+ def country(self) -> pulumi.Input[builtins.str]:
1644
1645
  """
1645
1646
  Country code of the contact's address (ISO format).
1646
1647
  """
1647
1648
  return pulumi.get(self, "country")
1648
1649
 
1649
1650
  @country.setter
1650
- def country(self, value: pulumi.Input[str]):
1651
+ def country(self, value: pulumi.Input[builtins.str]):
1651
1652
  pulumi.set(self, "country", value)
1652
1653
 
1653
1654
  @property
1654
1655
  @pulumi.getter
1655
- def email(self) -> pulumi.Input[str]:
1656
+ def email(self) -> pulumi.Input[builtins.str]:
1656
1657
  """
1657
1658
  Primary email address of the contact.
1658
1659
  """
1659
1660
  return pulumi.get(self, "email")
1660
1661
 
1661
1662
  @email.setter
1662
- def email(self, value: pulumi.Input[str]):
1663
+ def email(self, value: pulumi.Input[builtins.str]):
1663
1664
  pulumi.set(self, "email", value)
1664
1665
 
1665
1666
  @property
1666
1667
  @pulumi.getter
1667
- def firstname(self) -> pulumi.Input[str]:
1668
+ def firstname(self) -> pulumi.Input[builtins.str]:
1668
1669
  """
1669
1670
  First name of the contact.
1670
1671
  """
1671
1672
  return pulumi.get(self, "firstname")
1672
1673
 
1673
1674
  @firstname.setter
1674
- def firstname(self, value: pulumi.Input[str]):
1675
+ def firstname(self, value: pulumi.Input[builtins.str]):
1675
1676
  pulumi.set(self, "firstname", value)
1676
1677
 
1677
1678
  @property
1678
1679
  @pulumi.getter
1679
- def lastname(self) -> pulumi.Input[str]:
1680
+ def lastname(self) -> pulumi.Input[builtins.str]:
1680
1681
  """
1681
1682
  Last name of the contact.
1682
1683
  """
1683
1684
  return pulumi.get(self, "lastname")
1684
1685
 
1685
1686
  @lastname.setter
1686
- def lastname(self, value: pulumi.Input[str]):
1687
+ def lastname(self, value: pulumi.Input[builtins.str]):
1687
1688
  pulumi.set(self, "lastname", value)
1688
1689
 
1689
1690
  @property
1690
1691
  @pulumi.getter(name="legalForm")
1691
- def legal_form(self) -> pulumi.Input[str]:
1692
+ def legal_form(self) -> pulumi.Input[builtins.str]:
1692
1693
  """
1693
1694
  Legal form of the contact (e.g., 'individual' or 'organization').
1694
1695
  """
1695
1696
  return pulumi.get(self, "legal_form")
1696
1697
 
1697
1698
  @legal_form.setter
1698
- def legal_form(self, value: pulumi.Input[str]):
1699
+ def legal_form(self, value: pulumi.Input[builtins.str]):
1699
1700
  pulumi.set(self, "legal_form", value)
1700
1701
 
1701
1702
  @property
1702
1703
  @pulumi.getter(name="phoneNumber")
1703
- def phone_number(self) -> pulumi.Input[str]:
1704
+ def phone_number(self) -> pulumi.Input[builtins.str]:
1704
1705
  """
1705
1706
  Primary phone number of the contact.
1706
1707
  """
1707
1708
  return pulumi.get(self, "phone_number")
1708
1709
 
1709
1710
  @phone_number.setter
1710
- def phone_number(self, value: pulumi.Input[str]):
1711
+ def phone_number(self, value: pulumi.Input[builtins.str]):
1711
1712
  pulumi.set(self, "phone_number", value)
1712
1713
 
1713
1714
  @property
1714
1715
  @pulumi.getter(name="vatIdentificationCode")
1715
- def vat_identification_code(self) -> pulumi.Input[str]:
1716
+ def vat_identification_code(self) -> pulumi.Input[builtins.str]:
1716
1717
  """
1717
1718
  VAT identification code of the contact, if applicable.
1718
1719
  """
1719
1720
  return pulumi.get(self, "vat_identification_code")
1720
1721
 
1721
1722
  @vat_identification_code.setter
1722
- def vat_identification_code(self, value: pulumi.Input[str]):
1723
+ def vat_identification_code(self, value: pulumi.Input[builtins.str]):
1723
1724
  pulumi.set(self, "vat_identification_code", value)
1724
1725
 
1725
1726
  @property
1726
1727
  @pulumi.getter
1727
- def zip(self) -> pulumi.Input[str]:
1728
+ def zip(self) -> pulumi.Input[builtins.str]:
1728
1729
  """
1729
1730
  Postal code of the contact's address.
1730
1731
  """
1731
1732
  return pulumi.get(self, "zip")
1732
1733
 
1733
1734
  @zip.setter
1734
- def zip(self, value: pulumi.Input[str]):
1735
+ def zip(self, value: pulumi.Input[builtins.str]):
1735
1736
  pulumi.set(self, "zip", value)
1736
1737
 
1737
1738
  @property
1738
1739
  @pulumi.getter(name="addressLine2")
1739
- def address_line2(self) -> Optional[pulumi.Input[str]]:
1740
+ def address_line2(self) -> Optional[pulumi.Input[builtins.str]]:
1740
1741
  """
1741
1742
  Secondary address line for the contact (optional).
1742
1743
  """
1743
1744
  return pulumi.get(self, "address_line2")
1744
1745
 
1745
1746
  @address_line2.setter
1746
- def address_line2(self, value: Optional[pulumi.Input[str]]):
1747
+ def address_line2(self, value: Optional[pulumi.Input[builtins.str]]):
1747
1748
  pulumi.set(self, "address_line2", value)
1748
1749
 
1749
1750
  @property
1750
1751
  @pulumi.getter(name="companyName")
1751
- def company_name(self) -> Optional[pulumi.Input[str]]:
1752
+ def company_name(self) -> Optional[pulumi.Input[builtins.str]]:
1752
1753
  """
1753
1754
  Name of the company associated with the contact (if applicable).
1754
1755
  """
1755
1756
  return pulumi.get(self, "company_name")
1756
1757
 
1757
1758
  @company_name.setter
1758
- def company_name(self, value: Optional[pulumi.Input[str]]):
1759
+ def company_name(self, value: Optional[pulumi.Input[builtins.str]]):
1759
1760
  pulumi.set(self, "company_name", value)
1760
1761
 
1761
1762
  @property
1762
1763
  @pulumi.getter(name="emailAlt")
1763
- def email_alt(self) -> Optional[pulumi.Input[str]]:
1764
+ def email_alt(self) -> Optional[pulumi.Input[builtins.str]]:
1764
1765
  """
1765
1766
  Alternative email address for the contact.
1766
1767
  """
1767
1768
  return pulumi.get(self, "email_alt")
1768
1769
 
1769
1770
  @email_alt.setter
1770
- def email_alt(self, value: Optional[pulumi.Input[str]]):
1771
+ def email_alt(self, value: Optional[pulumi.Input[builtins.str]]):
1771
1772
  pulumi.set(self, "email_alt", value)
1772
1773
 
1773
1774
  @property
@@ -1796,80 +1797,80 @@ class RegistrationOwnerContactArgs:
1796
1797
 
1797
1798
  @property
1798
1799
  @pulumi.getter(name="extensionNls")
1799
- def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1800
+ def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
1800
1801
  """
1801
1802
  Extension details specific to Dutch domain registrations.
1802
1803
  """
1803
1804
  return pulumi.get(self, "extension_nls")
1804
1805
 
1805
1806
  @extension_nls.setter
1806
- def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1807
+ def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
1807
1808
  pulumi.set(self, "extension_nls", value)
1808
1809
 
1809
1810
  @property
1810
1811
  @pulumi.getter(name="faxNumber")
1811
- def fax_number(self) -> Optional[pulumi.Input[str]]:
1812
+ def fax_number(self) -> Optional[pulumi.Input[builtins.str]]:
1812
1813
  """
1813
1814
  Fax number for the contact (if available).
1814
1815
  """
1815
1816
  return pulumi.get(self, "fax_number")
1816
1817
 
1817
1818
  @fax_number.setter
1818
- def fax_number(self, value: Optional[pulumi.Input[str]]):
1819
+ def fax_number(self, value: Optional[pulumi.Input[builtins.str]]):
1819
1820
  pulumi.set(self, "fax_number", value)
1820
1821
 
1821
1822
  @property
1822
1823
  @pulumi.getter
1823
- def lang(self) -> Optional[pulumi.Input[str]]:
1824
+ def lang(self) -> Optional[pulumi.Input[builtins.str]]:
1824
1825
  """
1825
1826
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1826
1827
  """
1827
1828
  return pulumi.get(self, "lang")
1828
1829
 
1829
1830
  @lang.setter
1830
- def lang(self, value: Optional[pulumi.Input[str]]):
1831
+ def lang(self, value: Optional[pulumi.Input[builtins.str]]):
1831
1832
  pulumi.set(self, "lang", value)
1832
1833
 
1833
1834
  @property
1834
1835
  @pulumi.getter
1835
- def resale(self) -> Optional[pulumi.Input[bool]]:
1836
+ def resale(self) -> Optional[pulumi.Input[builtins.bool]]:
1836
1837
  """
1837
1838
  Indicates if the contact is used for resale purposes.
1838
1839
  """
1839
1840
  return pulumi.get(self, "resale")
1840
1841
 
1841
1842
  @resale.setter
1842
- def resale(self, value: Optional[pulumi.Input[bool]]):
1843
+ def resale(self, value: Optional[pulumi.Input[builtins.bool]]):
1843
1844
  pulumi.set(self, "resale", value)
1844
1845
 
1845
1846
  @property
1846
1847
  @pulumi.getter
1847
- def state(self) -> Optional[pulumi.Input[str]]:
1848
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
1848
1849
  """
1849
1850
  State or region of the contact.
1850
1851
  """
1851
1852
  return pulumi.get(self, "state")
1852
1853
 
1853
1854
  @state.setter
1854
- def state(self, value: Optional[pulumi.Input[str]]):
1855
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
1855
1856
  pulumi.set(self, "state", value)
1856
1857
 
1857
1858
  @property
1858
1859
  @pulumi.getter(name="whoisOptIn")
1859
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
1860
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
1860
1861
  """
1861
1862
  Indicates whether the contact has opted into WHOIS publishing.
1862
1863
  """
1863
1864
  return pulumi.get(self, "whois_opt_in")
1864
1865
 
1865
1866
  @whois_opt_in.setter
1866
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
1867
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
1867
1868
  pulumi.set(self, "whois_opt_in", value)
1868
1869
 
1869
1870
 
1870
1871
  if not MYPY:
1871
1872
  class RegistrationOwnerContactExtensionEuArgsDict(TypedDict):
1872
- european_citizenship: NotRequired[pulumi.Input[str]]
1873
+ european_citizenship: NotRequired[pulumi.Input[builtins.str]]
1873
1874
  """
1874
1875
  Indicates the European citizenship of the contact.
1875
1876
  """
@@ -1879,23 +1880,23 @@ elif False:
1879
1880
  @pulumi.input_type
1880
1881
  class RegistrationOwnerContactExtensionEuArgs:
1881
1882
  def __init__(__self__, *,
1882
- european_citizenship: Optional[pulumi.Input[str]] = None):
1883
+ european_citizenship: Optional[pulumi.Input[builtins.str]] = None):
1883
1884
  """
1884
- :param pulumi.Input[str] european_citizenship: Indicates the European citizenship of the contact.
1885
+ :param pulumi.Input[builtins.str] european_citizenship: Indicates the European citizenship of the contact.
1885
1886
  """
1886
1887
  if european_citizenship is not None:
1887
1888
  pulumi.set(__self__, "european_citizenship", european_citizenship)
1888
1889
 
1889
1890
  @property
1890
1891
  @pulumi.getter(name="europeanCitizenship")
1891
- def european_citizenship(self) -> Optional[pulumi.Input[str]]:
1892
+ def european_citizenship(self) -> Optional[pulumi.Input[builtins.str]]:
1892
1893
  """
1893
1894
  Indicates the European citizenship of the contact.
1894
1895
  """
1895
1896
  return pulumi.get(self, "european_citizenship")
1896
1897
 
1897
1898
  @european_citizenship.setter
1898
- def european_citizenship(self, value: Optional[pulumi.Input[str]]):
1899
+ def european_citizenship(self, value: Optional[pulumi.Input[builtins.str]]):
1899
1900
  pulumi.set(self, "european_citizenship", value)
1900
1901
 
1901
1902
 
@@ -1917,7 +1918,7 @@ if not MYPY:
1917
1918
  """
1918
1919
  Information about the individual registration for French domains.
1919
1920
  """
1920
- mode: NotRequired[pulumi.Input[str]]
1921
+ mode: NotRequired[pulumi.Input[builtins.str]]
1921
1922
  """
1922
1923
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1923
1924
  """
@@ -1935,14 +1936,14 @@ class RegistrationOwnerContactExtensionFrArgs:
1935
1936
  code_auth_afnic_info: Optional[pulumi.Input['RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgs']] = None,
1936
1937
  duns_info: Optional[pulumi.Input['RegistrationOwnerContactExtensionFrDunsInfoArgs']] = None,
1937
1938
  individual_info: Optional[pulumi.Input['RegistrationOwnerContactExtensionFrIndividualInfoArgs']] = None,
1938
- mode: Optional[pulumi.Input[str]] = None,
1939
+ mode: Optional[pulumi.Input[builtins.str]] = None,
1939
1940
  trademark_info: Optional[pulumi.Input['RegistrationOwnerContactExtensionFrTrademarkInfoArgs']] = None):
1940
1941
  """
1941
1942
  :param pulumi.Input['RegistrationOwnerContactExtensionFrAssociationInfoArgs'] association_info: Association-specific information for the domain (French extension).
1942
1943
  :param pulumi.Input['RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgs'] code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
1943
1944
  :param pulumi.Input['RegistrationOwnerContactExtensionFrDunsInfoArgs'] duns_info: DUNS information for the domain owner (specific to French domains).
1944
1945
  :param pulumi.Input['RegistrationOwnerContactExtensionFrIndividualInfoArgs'] individual_info: Information about the individual registration for French domains.
1945
- :param pulumi.Input[str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1946
+ :param pulumi.Input[builtins.str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1946
1947
  :param pulumi.Input['RegistrationOwnerContactExtensionFrTrademarkInfoArgs'] trademark_info: Trademark-related information for the domain (French extension).
1947
1948
  """
1948
1949
  if association_info is not None:
@@ -2008,14 +2009,14 @@ class RegistrationOwnerContactExtensionFrArgs:
2008
2009
 
2009
2010
  @property
2010
2011
  @pulumi.getter
2011
- def mode(self) -> Optional[pulumi.Input[str]]:
2012
+ def mode(self) -> Optional[pulumi.Input[builtins.str]]:
2012
2013
  """
2013
2014
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2014
2015
  """
2015
2016
  return pulumi.get(self, "mode")
2016
2017
 
2017
2018
  @mode.setter
2018
- def mode(self, value: Optional[pulumi.Input[str]]):
2019
+ def mode(self, value: Optional[pulumi.Input[builtins.str]]):
2019
2020
  pulumi.set(self, "mode", value)
2020
2021
 
2021
2022
  @property
@@ -2033,11 +2034,11 @@ class RegistrationOwnerContactExtensionFrArgs:
2033
2034
 
2034
2035
  if not MYPY:
2035
2036
  class RegistrationOwnerContactExtensionFrAssociationInfoArgsDict(TypedDict):
2036
- publication_jo: NotRequired[pulumi.Input[str]]
2037
+ publication_jo: NotRequired[pulumi.Input[builtins.str]]
2037
2038
  """
2038
2039
  Publication date in the Official Journal (RFC3339 format) for association information.
2039
2040
  """
2040
- publication_jo_page: NotRequired[pulumi.Input[int]]
2041
+ publication_jo_page: NotRequired[pulumi.Input[builtins.int]]
2041
2042
  """
2042
2043
  Page number of the publication in the Official Journal for association information.
2043
2044
  """
@@ -2047,11 +2048,11 @@ elif False:
2047
2048
  @pulumi.input_type
2048
2049
  class RegistrationOwnerContactExtensionFrAssociationInfoArgs:
2049
2050
  def __init__(__self__, *,
2050
- publication_jo: Optional[pulumi.Input[str]] = None,
2051
- publication_jo_page: Optional[pulumi.Input[int]] = None):
2051
+ publication_jo: Optional[pulumi.Input[builtins.str]] = None,
2052
+ publication_jo_page: Optional[pulumi.Input[builtins.int]] = None):
2052
2053
  """
2053
- :param pulumi.Input[str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2054
- :param pulumi.Input[int] publication_jo_page: Page number of the publication in the Official Journal for association information.
2054
+ :param pulumi.Input[builtins.str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2055
+ :param pulumi.Input[builtins.int] publication_jo_page: Page number of the publication in the Official Journal for association information.
2055
2056
  """
2056
2057
  if publication_jo is not None:
2057
2058
  pulumi.set(__self__, "publication_jo", publication_jo)
@@ -2060,32 +2061,32 @@ class RegistrationOwnerContactExtensionFrAssociationInfoArgs:
2060
2061
 
2061
2062
  @property
2062
2063
  @pulumi.getter(name="publicationJo")
2063
- def publication_jo(self) -> Optional[pulumi.Input[str]]:
2064
+ def publication_jo(self) -> Optional[pulumi.Input[builtins.str]]:
2064
2065
  """
2065
2066
  Publication date in the Official Journal (RFC3339 format) for association information.
2066
2067
  """
2067
2068
  return pulumi.get(self, "publication_jo")
2068
2069
 
2069
2070
  @publication_jo.setter
2070
- def publication_jo(self, value: Optional[pulumi.Input[str]]):
2071
+ def publication_jo(self, value: Optional[pulumi.Input[builtins.str]]):
2071
2072
  pulumi.set(self, "publication_jo", value)
2072
2073
 
2073
2074
  @property
2074
2075
  @pulumi.getter(name="publicationJoPage")
2075
- def publication_jo_page(self) -> Optional[pulumi.Input[int]]:
2076
+ def publication_jo_page(self) -> Optional[pulumi.Input[builtins.int]]:
2076
2077
  """
2077
2078
  Page number of the publication in the Official Journal for association information.
2078
2079
  """
2079
2080
  return pulumi.get(self, "publication_jo_page")
2080
2081
 
2081
2082
  @publication_jo_page.setter
2082
- def publication_jo_page(self, value: Optional[pulumi.Input[int]]):
2083
+ def publication_jo_page(self, value: Optional[pulumi.Input[builtins.int]]):
2083
2084
  pulumi.set(self, "publication_jo_page", value)
2084
2085
 
2085
2086
 
2086
2087
  if not MYPY:
2087
2088
  class RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgsDict(TypedDict):
2088
- code_auth_afnic: NotRequired[pulumi.Input[str]]
2089
+ code_auth_afnic: NotRequired[pulumi.Input[builtins.str]]
2089
2090
  """
2090
2091
  AFNIC authorization code for the contact (specific to French domains).
2091
2092
  """
@@ -2095,33 +2096,33 @@ elif False:
2095
2096
  @pulumi.input_type
2096
2097
  class RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgs:
2097
2098
  def __init__(__self__, *,
2098
- code_auth_afnic: Optional[pulumi.Input[str]] = None):
2099
+ code_auth_afnic: Optional[pulumi.Input[builtins.str]] = None):
2099
2100
  """
2100
- :param pulumi.Input[str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2101
+ :param pulumi.Input[builtins.str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2101
2102
  """
2102
2103
  if code_auth_afnic is not None:
2103
2104
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
2104
2105
 
2105
2106
  @property
2106
2107
  @pulumi.getter(name="codeAuthAfnic")
2107
- def code_auth_afnic(self) -> Optional[pulumi.Input[str]]:
2108
+ def code_auth_afnic(self) -> Optional[pulumi.Input[builtins.str]]:
2108
2109
  """
2109
2110
  AFNIC authorization code for the contact (specific to French domains).
2110
2111
  """
2111
2112
  return pulumi.get(self, "code_auth_afnic")
2112
2113
 
2113
2114
  @code_auth_afnic.setter
2114
- def code_auth_afnic(self, value: Optional[pulumi.Input[str]]):
2115
+ def code_auth_afnic(self, value: Optional[pulumi.Input[builtins.str]]):
2115
2116
  pulumi.set(self, "code_auth_afnic", value)
2116
2117
 
2117
2118
 
2118
2119
  if not MYPY:
2119
2120
  class RegistrationOwnerContactExtensionFrDunsInfoArgsDict(TypedDict):
2120
- duns_id: NotRequired[pulumi.Input[str]]
2121
+ duns_id: NotRequired[pulumi.Input[builtins.str]]
2121
2122
  """
2122
2123
  DUNS ID associated with the domain owner (for French domains).
2123
2124
  """
2124
- local_id: NotRequired[pulumi.Input[str]]
2125
+ local_id: NotRequired[pulumi.Input[builtins.str]]
2125
2126
  """
2126
2127
  Local identifier of the domain owner (for French domains).
2127
2128
  """
@@ -2131,11 +2132,11 @@ elif False:
2131
2132
  @pulumi.input_type
2132
2133
  class RegistrationOwnerContactExtensionFrDunsInfoArgs:
2133
2134
  def __init__(__self__, *,
2134
- duns_id: Optional[pulumi.Input[str]] = None,
2135
- local_id: Optional[pulumi.Input[str]] = None):
2135
+ duns_id: Optional[pulumi.Input[builtins.str]] = None,
2136
+ local_id: Optional[pulumi.Input[builtins.str]] = None):
2136
2137
  """
2137
- :param pulumi.Input[str] duns_id: DUNS ID associated with the domain owner (for French domains).
2138
- :param pulumi.Input[str] local_id: Local identifier of the domain owner (for French domains).
2138
+ :param pulumi.Input[builtins.str] duns_id: DUNS ID associated with the domain owner (for French domains).
2139
+ :param pulumi.Input[builtins.str] local_id: Local identifier of the domain owner (for French domains).
2139
2140
  """
2140
2141
  if duns_id is not None:
2141
2142
  pulumi.set(__self__, "duns_id", duns_id)
@@ -2144,32 +2145,32 @@ class RegistrationOwnerContactExtensionFrDunsInfoArgs:
2144
2145
 
2145
2146
  @property
2146
2147
  @pulumi.getter(name="dunsId")
2147
- def duns_id(self) -> Optional[pulumi.Input[str]]:
2148
+ def duns_id(self) -> Optional[pulumi.Input[builtins.str]]:
2148
2149
  """
2149
2150
  DUNS ID associated with the domain owner (for French domains).
2150
2151
  """
2151
2152
  return pulumi.get(self, "duns_id")
2152
2153
 
2153
2154
  @duns_id.setter
2154
- def duns_id(self, value: Optional[pulumi.Input[str]]):
2155
+ def duns_id(self, value: Optional[pulumi.Input[builtins.str]]):
2155
2156
  pulumi.set(self, "duns_id", value)
2156
2157
 
2157
2158
  @property
2158
2159
  @pulumi.getter(name="localId")
2159
- def local_id(self) -> Optional[pulumi.Input[str]]:
2160
+ def local_id(self) -> Optional[pulumi.Input[builtins.str]]:
2160
2161
  """
2161
2162
  Local identifier of the domain owner (for French domains).
2162
2163
  """
2163
2164
  return pulumi.get(self, "local_id")
2164
2165
 
2165
2166
  @local_id.setter
2166
- def local_id(self, value: Optional[pulumi.Input[str]]):
2167
+ def local_id(self, value: Optional[pulumi.Input[builtins.str]]):
2167
2168
  pulumi.set(self, "local_id", value)
2168
2169
 
2169
2170
 
2170
2171
  if not MYPY:
2171
2172
  class RegistrationOwnerContactExtensionFrIndividualInfoArgsDict(TypedDict):
2172
- whois_opt_in: NotRequired[pulumi.Input[bool]]
2173
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
2173
2174
  """
2174
2175
  Whether the individual contact has opted into WHOIS publishing.
2175
2176
  """
@@ -2179,29 +2180,29 @@ elif False:
2179
2180
  @pulumi.input_type
2180
2181
  class RegistrationOwnerContactExtensionFrIndividualInfoArgs:
2181
2182
  def __init__(__self__, *,
2182
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
2183
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
2183
2184
  """
2184
- :param pulumi.Input[bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2185
+ :param pulumi.Input[builtins.bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2185
2186
  """
2186
2187
  if whois_opt_in is not None:
2187
2188
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
2188
2189
 
2189
2190
  @property
2190
2191
  @pulumi.getter(name="whoisOptIn")
2191
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
2192
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
2192
2193
  """
2193
2194
  Whether the individual contact has opted into WHOIS publishing.
2194
2195
  """
2195
2196
  return pulumi.get(self, "whois_opt_in")
2196
2197
 
2197
2198
  @whois_opt_in.setter
2198
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
2199
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
2199
2200
  pulumi.set(self, "whois_opt_in", value)
2200
2201
 
2201
2202
 
2202
2203
  if not MYPY:
2203
2204
  class RegistrationOwnerContactExtensionFrTrademarkInfoArgsDict(TypedDict):
2204
- trademark_inpi: NotRequired[pulumi.Input[str]]
2205
+ trademark_inpi: NotRequired[pulumi.Input[builtins.str]]
2205
2206
  """
2206
2207
  Trademark information from INPI (French extension).
2207
2208
  """
@@ -2211,81 +2212,81 @@ elif False:
2211
2212
  @pulumi.input_type
2212
2213
  class RegistrationOwnerContactExtensionFrTrademarkInfoArgs:
2213
2214
  def __init__(__self__, *,
2214
- trademark_inpi: Optional[pulumi.Input[str]] = None):
2215
+ trademark_inpi: Optional[pulumi.Input[builtins.str]] = None):
2215
2216
  """
2216
- :param pulumi.Input[str] trademark_inpi: Trademark information from INPI (French extension).
2217
+ :param pulumi.Input[builtins.str] trademark_inpi: Trademark information from INPI (French extension).
2217
2218
  """
2218
2219
  if trademark_inpi is not None:
2219
2220
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
2220
2221
 
2221
2222
  @property
2222
2223
  @pulumi.getter(name="trademarkInpi")
2223
- def trademark_inpi(self) -> Optional[pulumi.Input[str]]:
2224
+ def trademark_inpi(self) -> Optional[pulumi.Input[builtins.str]]:
2224
2225
  """
2225
2226
  Trademark information from INPI (French extension).
2226
2227
  """
2227
2228
  return pulumi.get(self, "trademark_inpi")
2228
2229
 
2229
2230
  @trademark_inpi.setter
2230
- def trademark_inpi(self, value: Optional[pulumi.Input[str]]):
2231
+ def trademark_inpi(self, value: Optional[pulumi.Input[builtins.str]]):
2231
2232
  pulumi.set(self, "trademark_inpi", value)
2232
2233
 
2233
2234
 
2234
2235
  if not MYPY:
2235
2236
  class RegistrationTechnicalContactArgsDict(TypedDict):
2236
- address_line1: pulumi.Input[str]
2237
+ address_line1: pulumi.Input[builtins.str]
2237
2238
  """
2238
2239
  Primary address line for the contact.
2239
2240
  """
2240
- city: pulumi.Input[str]
2241
+ city: pulumi.Input[builtins.str]
2241
2242
  """
2242
2243
  City of the contact's address.
2243
2244
  """
2244
- company_identification_code: pulumi.Input[str]
2245
+ company_identification_code: pulumi.Input[builtins.str]
2245
2246
  """
2246
2247
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
2247
2248
  """
2248
- country: pulumi.Input[str]
2249
+ country: pulumi.Input[builtins.str]
2249
2250
  """
2250
2251
  Country code of the contact's address (ISO format).
2251
2252
  """
2252
- email: pulumi.Input[str]
2253
+ email: pulumi.Input[builtins.str]
2253
2254
  """
2254
2255
  Primary email address of the contact.
2255
2256
  """
2256
- firstname: pulumi.Input[str]
2257
+ firstname: pulumi.Input[builtins.str]
2257
2258
  """
2258
2259
  First name of the contact.
2259
2260
  """
2260
- lastname: pulumi.Input[str]
2261
+ lastname: pulumi.Input[builtins.str]
2261
2262
  """
2262
2263
  Last name of the contact.
2263
2264
  """
2264
- legal_form: pulumi.Input[str]
2265
+ legal_form: pulumi.Input[builtins.str]
2265
2266
  """
2266
2267
  Legal form of the contact (e.g., 'individual' or 'organization').
2267
2268
  """
2268
- phone_number: pulumi.Input[str]
2269
+ phone_number: pulumi.Input[builtins.str]
2269
2270
  """
2270
2271
  Primary phone number of the contact.
2271
2272
  """
2272
- vat_identification_code: pulumi.Input[str]
2273
+ vat_identification_code: pulumi.Input[builtins.str]
2273
2274
  """
2274
2275
  VAT identification code of the contact, if applicable.
2275
2276
  """
2276
- zip: pulumi.Input[str]
2277
+ zip: pulumi.Input[builtins.str]
2277
2278
  """
2278
2279
  Postal code of the contact's address.
2279
2280
  """
2280
- address_line2: NotRequired[pulumi.Input[str]]
2281
+ address_line2: NotRequired[pulumi.Input[builtins.str]]
2281
2282
  """
2282
2283
  Secondary address line for the contact (optional).
2283
2284
  """
2284
- company_name: NotRequired[pulumi.Input[str]]
2285
+ company_name: NotRequired[pulumi.Input[builtins.str]]
2285
2286
  """
2286
2287
  Name of the company associated with the contact (if applicable).
2287
2288
  """
2288
- email_alt: NotRequired[pulumi.Input[str]]
2289
+ email_alt: NotRequired[pulumi.Input[builtins.str]]
2289
2290
  """
2290
2291
  Alternative email address for the contact.
2291
2292
  """
@@ -2297,27 +2298,27 @@ if not MYPY:
2297
2298
  """
2298
2299
  Details specific to French domain extensions.
2299
2300
  """
2300
- extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2301
+ extension_nls: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
2301
2302
  """
2302
2303
  Extension details specific to Dutch domain registrations.
2303
2304
  """
2304
- fax_number: NotRequired[pulumi.Input[str]]
2305
+ fax_number: NotRequired[pulumi.Input[builtins.str]]
2305
2306
  """
2306
2307
  Fax number for the contact (if available).
2307
2308
  """
2308
- lang: NotRequired[pulumi.Input[str]]
2309
+ lang: NotRequired[pulumi.Input[builtins.str]]
2309
2310
  """
2310
2311
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
2311
2312
  """
2312
- resale: NotRequired[pulumi.Input[bool]]
2313
+ resale: NotRequired[pulumi.Input[builtins.bool]]
2313
2314
  """
2314
2315
  Indicates if the contact is used for resale purposes.
2315
2316
  """
2316
- state: NotRequired[pulumi.Input[str]]
2317
+ state: NotRequired[pulumi.Input[builtins.str]]
2317
2318
  """
2318
2319
  State or region of the contact.
2319
2320
  """
2320
- whois_opt_in: NotRequired[pulumi.Input[bool]]
2321
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
2321
2322
  """
2322
2323
  Indicates whether the contact has opted into WHOIS publishing.
2323
2324
  """
@@ -2327,51 +2328,51 @@ elif False:
2327
2328
  @pulumi.input_type
2328
2329
  class RegistrationTechnicalContactArgs:
2329
2330
  def __init__(__self__, *,
2330
- address_line1: pulumi.Input[str],
2331
- city: pulumi.Input[str],
2332
- company_identification_code: pulumi.Input[str],
2333
- country: pulumi.Input[str],
2334
- email: pulumi.Input[str],
2335
- firstname: pulumi.Input[str],
2336
- lastname: pulumi.Input[str],
2337
- legal_form: pulumi.Input[str],
2338
- phone_number: pulumi.Input[str],
2339
- vat_identification_code: pulumi.Input[str],
2340
- zip: pulumi.Input[str],
2341
- address_line2: Optional[pulumi.Input[str]] = None,
2342
- company_name: Optional[pulumi.Input[str]] = None,
2343
- email_alt: Optional[pulumi.Input[str]] = None,
2331
+ address_line1: pulumi.Input[builtins.str],
2332
+ city: pulumi.Input[builtins.str],
2333
+ company_identification_code: pulumi.Input[builtins.str],
2334
+ country: pulumi.Input[builtins.str],
2335
+ email: pulumi.Input[builtins.str],
2336
+ firstname: pulumi.Input[builtins.str],
2337
+ lastname: pulumi.Input[builtins.str],
2338
+ legal_form: pulumi.Input[builtins.str],
2339
+ phone_number: pulumi.Input[builtins.str],
2340
+ vat_identification_code: pulumi.Input[builtins.str],
2341
+ zip: pulumi.Input[builtins.str],
2342
+ address_line2: Optional[pulumi.Input[builtins.str]] = None,
2343
+ company_name: Optional[pulumi.Input[builtins.str]] = None,
2344
+ email_alt: Optional[pulumi.Input[builtins.str]] = None,
2344
2345
  extension_eu: Optional[pulumi.Input['RegistrationTechnicalContactExtensionEuArgs']] = None,
2345
2346
  extension_fr: Optional[pulumi.Input['RegistrationTechnicalContactExtensionFrArgs']] = None,
2346
- extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2347
- fax_number: Optional[pulumi.Input[str]] = None,
2348
- lang: Optional[pulumi.Input[str]] = None,
2349
- resale: Optional[pulumi.Input[bool]] = None,
2350
- state: Optional[pulumi.Input[str]] = None,
2351
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
2352
- """
2353
- :param pulumi.Input[str] address_line1: Primary address line for the contact.
2354
- :param pulumi.Input[str] city: City of the contact's address.
2355
- :param pulumi.Input[str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
2356
- :param pulumi.Input[str] country: Country code of the contact's address (ISO format).
2357
- :param pulumi.Input[str] email: Primary email address of the contact.
2358
- :param pulumi.Input[str] firstname: First name of the contact.
2359
- :param pulumi.Input[str] lastname: Last name of the contact.
2360
- :param pulumi.Input[str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
2361
- :param pulumi.Input[str] phone_number: Primary phone number of the contact.
2362
- :param pulumi.Input[str] vat_identification_code: VAT identification code of the contact, if applicable.
2363
- :param pulumi.Input[str] zip: Postal code of the contact's address.
2364
- :param pulumi.Input[str] address_line2: Secondary address line for the contact (optional).
2365
- :param pulumi.Input[str] company_name: Name of the company associated with the contact (if applicable).
2366
- :param pulumi.Input[str] email_alt: Alternative email address for the contact.
2347
+ extension_nls: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
2348
+ fax_number: Optional[pulumi.Input[builtins.str]] = None,
2349
+ lang: Optional[pulumi.Input[builtins.str]] = None,
2350
+ resale: Optional[pulumi.Input[builtins.bool]] = None,
2351
+ state: Optional[pulumi.Input[builtins.str]] = None,
2352
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
2353
+ """
2354
+ :param pulumi.Input[builtins.str] address_line1: Primary address line for the contact.
2355
+ :param pulumi.Input[builtins.str] city: City of the contact's address.
2356
+ :param pulumi.Input[builtins.str] company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
2357
+ :param pulumi.Input[builtins.str] country: Country code of the contact's address (ISO format).
2358
+ :param pulumi.Input[builtins.str] email: Primary email address of the contact.
2359
+ :param pulumi.Input[builtins.str] firstname: First name of the contact.
2360
+ :param pulumi.Input[builtins.str] lastname: Last name of the contact.
2361
+ :param pulumi.Input[builtins.str] legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
2362
+ :param pulumi.Input[builtins.str] phone_number: Primary phone number of the contact.
2363
+ :param pulumi.Input[builtins.str] vat_identification_code: VAT identification code of the contact, if applicable.
2364
+ :param pulumi.Input[builtins.str] zip: Postal code of the contact's address.
2365
+ :param pulumi.Input[builtins.str] address_line2: Secondary address line for the contact (optional).
2366
+ :param pulumi.Input[builtins.str] company_name: Name of the company associated with the contact (if applicable).
2367
+ :param pulumi.Input[builtins.str] email_alt: Alternative email address for the contact.
2367
2368
  :param pulumi.Input['RegistrationTechnicalContactExtensionEuArgs'] extension_eu: Details specific to European domain extensions.
2368
2369
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrArgs'] extension_fr: Details specific to French domain extensions.
2369
- :param pulumi.Input[Sequence[pulumi.Input[str]]] extension_nls: Extension details specific to Dutch domain registrations.
2370
- :param pulumi.Input[str] fax_number: Fax number for the contact (if available).
2371
- :param pulumi.Input[str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
2372
- :param pulumi.Input[bool] resale: Indicates if the contact is used for resale purposes.
2373
- :param pulumi.Input[str] state: State or region of the contact.
2374
- :param pulumi.Input[bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
2370
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] extension_nls: Extension details specific to Dutch domain registrations.
2371
+ :param pulumi.Input[builtins.str] fax_number: Fax number for the contact (if available).
2372
+ :param pulumi.Input[builtins.str] lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
2373
+ :param pulumi.Input[builtins.bool] resale: Indicates if the contact is used for resale purposes.
2374
+ :param pulumi.Input[builtins.str] state: State or region of the contact.
2375
+ :param pulumi.Input[builtins.bool] whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
2375
2376
  """
2376
2377
  pulumi.set(__self__, "address_line1", address_line1)
2377
2378
  pulumi.set(__self__, "city", city)
@@ -2409,170 +2410,170 @@ class RegistrationTechnicalContactArgs:
2409
2410
 
2410
2411
  @property
2411
2412
  @pulumi.getter(name="addressLine1")
2412
- def address_line1(self) -> pulumi.Input[str]:
2413
+ def address_line1(self) -> pulumi.Input[builtins.str]:
2413
2414
  """
2414
2415
  Primary address line for the contact.
2415
2416
  """
2416
2417
  return pulumi.get(self, "address_line1")
2417
2418
 
2418
2419
  @address_line1.setter
2419
- def address_line1(self, value: pulumi.Input[str]):
2420
+ def address_line1(self, value: pulumi.Input[builtins.str]):
2420
2421
  pulumi.set(self, "address_line1", value)
2421
2422
 
2422
2423
  @property
2423
2424
  @pulumi.getter
2424
- def city(self) -> pulumi.Input[str]:
2425
+ def city(self) -> pulumi.Input[builtins.str]:
2425
2426
  """
2426
2427
  City of the contact's address.
2427
2428
  """
2428
2429
  return pulumi.get(self, "city")
2429
2430
 
2430
2431
  @city.setter
2431
- def city(self, value: pulumi.Input[str]):
2432
+ def city(self, value: pulumi.Input[builtins.str]):
2432
2433
  pulumi.set(self, "city", value)
2433
2434
 
2434
2435
  @property
2435
2436
  @pulumi.getter(name="companyIdentificationCode")
2436
- def company_identification_code(self) -> pulumi.Input[str]:
2437
+ def company_identification_code(self) -> pulumi.Input[builtins.str]:
2437
2438
  """
2438
2439
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
2439
2440
  """
2440
2441
  return pulumi.get(self, "company_identification_code")
2441
2442
 
2442
2443
  @company_identification_code.setter
2443
- def company_identification_code(self, value: pulumi.Input[str]):
2444
+ def company_identification_code(self, value: pulumi.Input[builtins.str]):
2444
2445
  pulumi.set(self, "company_identification_code", value)
2445
2446
 
2446
2447
  @property
2447
2448
  @pulumi.getter
2448
- def country(self) -> pulumi.Input[str]:
2449
+ def country(self) -> pulumi.Input[builtins.str]:
2449
2450
  """
2450
2451
  Country code of the contact's address (ISO format).
2451
2452
  """
2452
2453
  return pulumi.get(self, "country")
2453
2454
 
2454
2455
  @country.setter
2455
- def country(self, value: pulumi.Input[str]):
2456
+ def country(self, value: pulumi.Input[builtins.str]):
2456
2457
  pulumi.set(self, "country", value)
2457
2458
 
2458
2459
  @property
2459
2460
  @pulumi.getter
2460
- def email(self) -> pulumi.Input[str]:
2461
+ def email(self) -> pulumi.Input[builtins.str]:
2461
2462
  """
2462
2463
  Primary email address of the contact.
2463
2464
  """
2464
2465
  return pulumi.get(self, "email")
2465
2466
 
2466
2467
  @email.setter
2467
- def email(self, value: pulumi.Input[str]):
2468
+ def email(self, value: pulumi.Input[builtins.str]):
2468
2469
  pulumi.set(self, "email", value)
2469
2470
 
2470
2471
  @property
2471
2472
  @pulumi.getter
2472
- def firstname(self) -> pulumi.Input[str]:
2473
+ def firstname(self) -> pulumi.Input[builtins.str]:
2473
2474
  """
2474
2475
  First name of the contact.
2475
2476
  """
2476
2477
  return pulumi.get(self, "firstname")
2477
2478
 
2478
2479
  @firstname.setter
2479
- def firstname(self, value: pulumi.Input[str]):
2480
+ def firstname(self, value: pulumi.Input[builtins.str]):
2480
2481
  pulumi.set(self, "firstname", value)
2481
2482
 
2482
2483
  @property
2483
2484
  @pulumi.getter
2484
- def lastname(self) -> pulumi.Input[str]:
2485
+ def lastname(self) -> pulumi.Input[builtins.str]:
2485
2486
  """
2486
2487
  Last name of the contact.
2487
2488
  """
2488
2489
  return pulumi.get(self, "lastname")
2489
2490
 
2490
2491
  @lastname.setter
2491
- def lastname(self, value: pulumi.Input[str]):
2492
+ def lastname(self, value: pulumi.Input[builtins.str]):
2492
2493
  pulumi.set(self, "lastname", value)
2493
2494
 
2494
2495
  @property
2495
2496
  @pulumi.getter(name="legalForm")
2496
- def legal_form(self) -> pulumi.Input[str]:
2497
+ def legal_form(self) -> pulumi.Input[builtins.str]:
2497
2498
  """
2498
2499
  Legal form of the contact (e.g., 'individual' or 'organization').
2499
2500
  """
2500
2501
  return pulumi.get(self, "legal_form")
2501
2502
 
2502
2503
  @legal_form.setter
2503
- def legal_form(self, value: pulumi.Input[str]):
2504
+ def legal_form(self, value: pulumi.Input[builtins.str]):
2504
2505
  pulumi.set(self, "legal_form", value)
2505
2506
 
2506
2507
  @property
2507
2508
  @pulumi.getter(name="phoneNumber")
2508
- def phone_number(self) -> pulumi.Input[str]:
2509
+ def phone_number(self) -> pulumi.Input[builtins.str]:
2509
2510
  """
2510
2511
  Primary phone number of the contact.
2511
2512
  """
2512
2513
  return pulumi.get(self, "phone_number")
2513
2514
 
2514
2515
  @phone_number.setter
2515
- def phone_number(self, value: pulumi.Input[str]):
2516
+ def phone_number(self, value: pulumi.Input[builtins.str]):
2516
2517
  pulumi.set(self, "phone_number", value)
2517
2518
 
2518
2519
  @property
2519
2520
  @pulumi.getter(name="vatIdentificationCode")
2520
- def vat_identification_code(self) -> pulumi.Input[str]:
2521
+ def vat_identification_code(self) -> pulumi.Input[builtins.str]:
2521
2522
  """
2522
2523
  VAT identification code of the contact, if applicable.
2523
2524
  """
2524
2525
  return pulumi.get(self, "vat_identification_code")
2525
2526
 
2526
2527
  @vat_identification_code.setter
2527
- def vat_identification_code(self, value: pulumi.Input[str]):
2528
+ def vat_identification_code(self, value: pulumi.Input[builtins.str]):
2528
2529
  pulumi.set(self, "vat_identification_code", value)
2529
2530
 
2530
2531
  @property
2531
2532
  @pulumi.getter
2532
- def zip(self) -> pulumi.Input[str]:
2533
+ def zip(self) -> pulumi.Input[builtins.str]:
2533
2534
  """
2534
2535
  Postal code of the contact's address.
2535
2536
  """
2536
2537
  return pulumi.get(self, "zip")
2537
2538
 
2538
2539
  @zip.setter
2539
- def zip(self, value: pulumi.Input[str]):
2540
+ def zip(self, value: pulumi.Input[builtins.str]):
2540
2541
  pulumi.set(self, "zip", value)
2541
2542
 
2542
2543
  @property
2543
2544
  @pulumi.getter(name="addressLine2")
2544
- def address_line2(self) -> Optional[pulumi.Input[str]]:
2545
+ def address_line2(self) -> Optional[pulumi.Input[builtins.str]]:
2545
2546
  """
2546
2547
  Secondary address line for the contact (optional).
2547
2548
  """
2548
2549
  return pulumi.get(self, "address_line2")
2549
2550
 
2550
2551
  @address_line2.setter
2551
- def address_line2(self, value: Optional[pulumi.Input[str]]):
2552
+ def address_line2(self, value: Optional[pulumi.Input[builtins.str]]):
2552
2553
  pulumi.set(self, "address_line2", value)
2553
2554
 
2554
2555
  @property
2555
2556
  @pulumi.getter(name="companyName")
2556
- def company_name(self) -> Optional[pulumi.Input[str]]:
2557
+ def company_name(self) -> Optional[pulumi.Input[builtins.str]]:
2557
2558
  """
2558
2559
  Name of the company associated with the contact (if applicable).
2559
2560
  """
2560
2561
  return pulumi.get(self, "company_name")
2561
2562
 
2562
2563
  @company_name.setter
2563
- def company_name(self, value: Optional[pulumi.Input[str]]):
2564
+ def company_name(self, value: Optional[pulumi.Input[builtins.str]]):
2564
2565
  pulumi.set(self, "company_name", value)
2565
2566
 
2566
2567
  @property
2567
2568
  @pulumi.getter(name="emailAlt")
2568
- def email_alt(self) -> Optional[pulumi.Input[str]]:
2569
+ def email_alt(self) -> Optional[pulumi.Input[builtins.str]]:
2569
2570
  """
2570
2571
  Alternative email address for the contact.
2571
2572
  """
2572
2573
  return pulumi.get(self, "email_alt")
2573
2574
 
2574
2575
  @email_alt.setter
2575
- def email_alt(self, value: Optional[pulumi.Input[str]]):
2576
+ def email_alt(self, value: Optional[pulumi.Input[builtins.str]]):
2576
2577
  pulumi.set(self, "email_alt", value)
2577
2578
 
2578
2579
  @property
@@ -2601,80 +2602,80 @@ class RegistrationTechnicalContactArgs:
2601
2602
 
2602
2603
  @property
2603
2604
  @pulumi.getter(name="extensionNls")
2604
- def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2605
+ def extension_nls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
2605
2606
  """
2606
2607
  Extension details specific to Dutch domain registrations.
2607
2608
  """
2608
2609
  return pulumi.get(self, "extension_nls")
2609
2610
 
2610
2611
  @extension_nls.setter
2611
- def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2612
+ def extension_nls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
2612
2613
  pulumi.set(self, "extension_nls", value)
2613
2614
 
2614
2615
  @property
2615
2616
  @pulumi.getter(name="faxNumber")
2616
- def fax_number(self) -> Optional[pulumi.Input[str]]:
2617
+ def fax_number(self) -> Optional[pulumi.Input[builtins.str]]:
2617
2618
  """
2618
2619
  Fax number for the contact (if available).
2619
2620
  """
2620
2621
  return pulumi.get(self, "fax_number")
2621
2622
 
2622
2623
  @fax_number.setter
2623
- def fax_number(self, value: Optional[pulumi.Input[str]]):
2624
+ def fax_number(self, value: Optional[pulumi.Input[builtins.str]]):
2624
2625
  pulumi.set(self, "fax_number", value)
2625
2626
 
2626
2627
  @property
2627
2628
  @pulumi.getter
2628
- def lang(self) -> Optional[pulumi.Input[str]]:
2629
+ def lang(self) -> Optional[pulumi.Input[builtins.str]]:
2629
2630
  """
2630
2631
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
2631
2632
  """
2632
2633
  return pulumi.get(self, "lang")
2633
2634
 
2634
2635
  @lang.setter
2635
- def lang(self, value: Optional[pulumi.Input[str]]):
2636
+ def lang(self, value: Optional[pulumi.Input[builtins.str]]):
2636
2637
  pulumi.set(self, "lang", value)
2637
2638
 
2638
2639
  @property
2639
2640
  @pulumi.getter
2640
- def resale(self) -> Optional[pulumi.Input[bool]]:
2641
+ def resale(self) -> Optional[pulumi.Input[builtins.bool]]:
2641
2642
  """
2642
2643
  Indicates if the contact is used for resale purposes.
2643
2644
  """
2644
2645
  return pulumi.get(self, "resale")
2645
2646
 
2646
2647
  @resale.setter
2647
- def resale(self, value: Optional[pulumi.Input[bool]]):
2648
+ def resale(self, value: Optional[pulumi.Input[builtins.bool]]):
2648
2649
  pulumi.set(self, "resale", value)
2649
2650
 
2650
2651
  @property
2651
2652
  @pulumi.getter
2652
- def state(self) -> Optional[pulumi.Input[str]]:
2653
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
2653
2654
  """
2654
2655
  State or region of the contact.
2655
2656
  """
2656
2657
  return pulumi.get(self, "state")
2657
2658
 
2658
2659
  @state.setter
2659
- def state(self, value: Optional[pulumi.Input[str]]):
2660
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
2660
2661
  pulumi.set(self, "state", value)
2661
2662
 
2662
2663
  @property
2663
2664
  @pulumi.getter(name="whoisOptIn")
2664
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
2665
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
2665
2666
  """
2666
2667
  Indicates whether the contact has opted into WHOIS publishing.
2667
2668
  """
2668
2669
  return pulumi.get(self, "whois_opt_in")
2669
2670
 
2670
2671
  @whois_opt_in.setter
2671
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
2672
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
2672
2673
  pulumi.set(self, "whois_opt_in", value)
2673
2674
 
2674
2675
 
2675
2676
  if not MYPY:
2676
2677
  class RegistrationTechnicalContactExtensionEuArgsDict(TypedDict):
2677
- european_citizenship: NotRequired[pulumi.Input[str]]
2678
+ european_citizenship: NotRequired[pulumi.Input[builtins.str]]
2678
2679
  """
2679
2680
  Indicates the European citizenship of the contact.
2680
2681
  """
@@ -2684,23 +2685,23 @@ elif False:
2684
2685
  @pulumi.input_type
2685
2686
  class RegistrationTechnicalContactExtensionEuArgs:
2686
2687
  def __init__(__self__, *,
2687
- european_citizenship: Optional[pulumi.Input[str]] = None):
2688
+ european_citizenship: Optional[pulumi.Input[builtins.str]] = None):
2688
2689
  """
2689
- :param pulumi.Input[str] european_citizenship: Indicates the European citizenship of the contact.
2690
+ :param pulumi.Input[builtins.str] european_citizenship: Indicates the European citizenship of the contact.
2690
2691
  """
2691
2692
  if european_citizenship is not None:
2692
2693
  pulumi.set(__self__, "european_citizenship", european_citizenship)
2693
2694
 
2694
2695
  @property
2695
2696
  @pulumi.getter(name="europeanCitizenship")
2696
- def european_citizenship(self) -> Optional[pulumi.Input[str]]:
2697
+ def european_citizenship(self) -> Optional[pulumi.Input[builtins.str]]:
2697
2698
  """
2698
2699
  Indicates the European citizenship of the contact.
2699
2700
  """
2700
2701
  return pulumi.get(self, "european_citizenship")
2701
2702
 
2702
2703
  @european_citizenship.setter
2703
- def european_citizenship(self, value: Optional[pulumi.Input[str]]):
2704
+ def european_citizenship(self, value: Optional[pulumi.Input[builtins.str]]):
2704
2705
  pulumi.set(self, "european_citizenship", value)
2705
2706
 
2706
2707
 
@@ -2722,7 +2723,7 @@ if not MYPY:
2722
2723
  """
2723
2724
  Information about the individual registration for French domains.
2724
2725
  """
2725
- mode: NotRequired[pulumi.Input[str]]
2726
+ mode: NotRequired[pulumi.Input[builtins.str]]
2726
2727
  """
2727
2728
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2728
2729
  """
@@ -2740,14 +2741,14 @@ class RegistrationTechnicalContactExtensionFrArgs:
2740
2741
  code_auth_afnic_info: Optional[pulumi.Input['RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgs']] = None,
2741
2742
  duns_info: Optional[pulumi.Input['RegistrationTechnicalContactExtensionFrDunsInfoArgs']] = None,
2742
2743
  individual_info: Optional[pulumi.Input['RegistrationTechnicalContactExtensionFrIndividualInfoArgs']] = None,
2743
- mode: Optional[pulumi.Input[str]] = None,
2744
+ mode: Optional[pulumi.Input[builtins.str]] = None,
2744
2745
  trademark_info: Optional[pulumi.Input['RegistrationTechnicalContactExtensionFrTrademarkInfoArgs']] = None):
2745
2746
  """
2746
2747
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrAssociationInfoArgs'] association_info: Association-specific information for the domain (French extension).
2747
2748
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgs'] code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
2748
2749
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrDunsInfoArgs'] duns_info: DUNS information for the domain owner (specific to French domains).
2749
2750
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrIndividualInfoArgs'] individual_info: Information about the individual registration for French domains.
2750
- :param pulumi.Input[str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2751
+ :param pulumi.Input[builtins.str] mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2751
2752
  :param pulumi.Input['RegistrationTechnicalContactExtensionFrTrademarkInfoArgs'] trademark_info: Trademark-related information for the domain (French extension).
2752
2753
  """
2753
2754
  if association_info is not None:
@@ -2813,14 +2814,14 @@ class RegistrationTechnicalContactExtensionFrArgs:
2813
2814
 
2814
2815
  @property
2815
2816
  @pulumi.getter
2816
- def mode(self) -> Optional[pulumi.Input[str]]:
2817
+ def mode(self) -> Optional[pulumi.Input[builtins.str]]:
2817
2818
  """
2818
2819
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2819
2820
  """
2820
2821
  return pulumi.get(self, "mode")
2821
2822
 
2822
2823
  @mode.setter
2823
- def mode(self, value: Optional[pulumi.Input[str]]):
2824
+ def mode(self, value: Optional[pulumi.Input[builtins.str]]):
2824
2825
  pulumi.set(self, "mode", value)
2825
2826
 
2826
2827
  @property
@@ -2838,11 +2839,11 @@ class RegistrationTechnicalContactExtensionFrArgs:
2838
2839
 
2839
2840
  if not MYPY:
2840
2841
  class RegistrationTechnicalContactExtensionFrAssociationInfoArgsDict(TypedDict):
2841
- publication_jo: NotRequired[pulumi.Input[str]]
2842
+ publication_jo: NotRequired[pulumi.Input[builtins.str]]
2842
2843
  """
2843
2844
  Publication date in the Official Journal (RFC3339 format) for association information.
2844
2845
  """
2845
- publication_jo_page: NotRequired[pulumi.Input[int]]
2846
+ publication_jo_page: NotRequired[pulumi.Input[builtins.int]]
2846
2847
  """
2847
2848
  Page number of the publication in the Official Journal for association information.
2848
2849
  """
@@ -2852,11 +2853,11 @@ elif False:
2852
2853
  @pulumi.input_type
2853
2854
  class RegistrationTechnicalContactExtensionFrAssociationInfoArgs:
2854
2855
  def __init__(__self__, *,
2855
- publication_jo: Optional[pulumi.Input[str]] = None,
2856
- publication_jo_page: Optional[pulumi.Input[int]] = None):
2856
+ publication_jo: Optional[pulumi.Input[builtins.str]] = None,
2857
+ publication_jo_page: Optional[pulumi.Input[builtins.int]] = None):
2857
2858
  """
2858
- :param pulumi.Input[str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2859
- :param pulumi.Input[int] publication_jo_page: Page number of the publication in the Official Journal for association information.
2859
+ :param pulumi.Input[builtins.str] publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2860
+ :param pulumi.Input[builtins.int] publication_jo_page: Page number of the publication in the Official Journal for association information.
2860
2861
  """
2861
2862
  if publication_jo is not None:
2862
2863
  pulumi.set(__self__, "publication_jo", publication_jo)
@@ -2865,32 +2866,32 @@ class RegistrationTechnicalContactExtensionFrAssociationInfoArgs:
2865
2866
 
2866
2867
  @property
2867
2868
  @pulumi.getter(name="publicationJo")
2868
- def publication_jo(self) -> Optional[pulumi.Input[str]]:
2869
+ def publication_jo(self) -> Optional[pulumi.Input[builtins.str]]:
2869
2870
  """
2870
2871
  Publication date in the Official Journal (RFC3339 format) for association information.
2871
2872
  """
2872
2873
  return pulumi.get(self, "publication_jo")
2873
2874
 
2874
2875
  @publication_jo.setter
2875
- def publication_jo(self, value: Optional[pulumi.Input[str]]):
2876
+ def publication_jo(self, value: Optional[pulumi.Input[builtins.str]]):
2876
2877
  pulumi.set(self, "publication_jo", value)
2877
2878
 
2878
2879
  @property
2879
2880
  @pulumi.getter(name="publicationJoPage")
2880
- def publication_jo_page(self) -> Optional[pulumi.Input[int]]:
2881
+ def publication_jo_page(self) -> Optional[pulumi.Input[builtins.int]]:
2881
2882
  """
2882
2883
  Page number of the publication in the Official Journal for association information.
2883
2884
  """
2884
2885
  return pulumi.get(self, "publication_jo_page")
2885
2886
 
2886
2887
  @publication_jo_page.setter
2887
- def publication_jo_page(self, value: Optional[pulumi.Input[int]]):
2888
+ def publication_jo_page(self, value: Optional[pulumi.Input[builtins.int]]):
2888
2889
  pulumi.set(self, "publication_jo_page", value)
2889
2890
 
2890
2891
 
2891
2892
  if not MYPY:
2892
2893
  class RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgsDict(TypedDict):
2893
- code_auth_afnic: NotRequired[pulumi.Input[str]]
2894
+ code_auth_afnic: NotRequired[pulumi.Input[builtins.str]]
2894
2895
  """
2895
2896
  AFNIC authorization code for the contact (specific to French domains).
2896
2897
  """
@@ -2900,33 +2901,33 @@ elif False:
2900
2901
  @pulumi.input_type
2901
2902
  class RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgs:
2902
2903
  def __init__(__self__, *,
2903
- code_auth_afnic: Optional[pulumi.Input[str]] = None):
2904
+ code_auth_afnic: Optional[pulumi.Input[builtins.str]] = None):
2904
2905
  """
2905
- :param pulumi.Input[str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2906
+ :param pulumi.Input[builtins.str] code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2906
2907
  """
2907
2908
  if code_auth_afnic is not None:
2908
2909
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
2909
2910
 
2910
2911
  @property
2911
2912
  @pulumi.getter(name="codeAuthAfnic")
2912
- def code_auth_afnic(self) -> Optional[pulumi.Input[str]]:
2913
+ def code_auth_afnic(self) -> Optional[pulumi.Input[builtins.str]]:
2913
2914
  """
2914
2915
  AFNIC authorization code for the contact (specific to French domains).
2915
2916
  """
2916
2917
  return pulumi.get(self, "code_auth_afnic")
2917
2918
 
2918
2919
  @code_auth_afnic.setter
2919
- def code_auth_afnic(self, value: Optional[pulumi.Input[str]]):
2920
+ def code_auth_afnic(self, value: Optional[pulumi.Input[builtins.str]]):
2920
2921
  pulumi.set(self, "code_auth_afnic", value)
2921
2922
 
2922
2923
 
2923
2924
  if not MYPY:
2924
2925
  class RegistrationTechnicalContactExtensionFrDunsInfoArgsDict(TypedDict):
2925
- duns_id: NotRequired[pulumi.Input[str]]
2926
+ duns_id: NotRequired[pulumi.Input[builtins.str]]
2926
2927
  """
2927
2928
  DUNS ID associated with the domain owner (for French domains).
2928
2929
  """
2929
- local_id: NotRequired[pulumi.Input[str]]
2930
+ local_id: NotRequired[pulumi.Input[builtins.str]]
2930
2931
  """
2931
2932
  Local identifier of the domain owner (for French domains).
2932
2933
  """
@@ -2936,11 +2937,11 @@ elif False:
2936
2937
  @pulumi.input_type
2937
2938
  class RegistrationTechnicalContactExtensionFrDunsInfoArgs:
2938
2939
  def __init__(__self__, *,
2939
- duns_id: Optional[pulumi.Input[str]] = None,
2940
- local_id: Optional[pulumi.Input[str]] = None):
2940
+ duns_id: Optional[pulumi.Input[builtins.str]] = None,
2941
+ local_id: Optional[pulumi.Input[builtins.str]] = None):
2941
2942
  """
2942
- :param pulumi.Input[str] duns_id: DUNS ID associated with the domain owner (for French domains).
2943
- :param pulumi.Input[str] local_id: Local identifier of the domain owner (for French domains).
2943
+ :param pulumi.Input[builtins.str] duns_id: DUNS ID associated with the domain owner (for French domains).
2944
+ :param pulumi.Input[builtins.str] local_id: Local identifier of the domain owner (for French domains).
2944
2945
  """
2945
2946
  if duns_id is not None:
2946
2947
  pulumi.set(__self__, "duns_id", duns_id)
@@ -2949,32 +2950,32 @@ class RegistrationTechnicalContactExtensionFrDunsInfoArgs:
2949
2950
 
2950
2951
  @property
2951
2952
  @pulumi.getter(name="dunsId")
2952
- def duns_id(self) -> Optional[pulumi.Input[str]]:
2953
+ def duns_id(self) -> Optional[pulumi.Input[builtins.str]]:
2953
2954
  """
2954
2955
  DUNS ID associated with the domain owner (for French domains).
2955
2956
  """
2956
2957
  return pulumi.get(self, "duns_id")
2957
2958
 
2958
2959
  @duns_id.setter
2959
- def duns_id(self, value: Optional[pulumi.Input[str]]):
2960
+ def duns_id(self, value: Optional[pulumi.Input[builtins.str]]):
2960
2961
  pulumi.set(self, "duns_id", value)
2961
2962
 
2962
2963
  @property
2963
2964
  @pulumi.getter(name="localId")
2964
- def local_id(self) -> Optional[pulumi.Input[str]]:
2965
+ def local_id(self) -> Optional[pulumi.Input[builtins.str]]:
2965
2966
  """
2966
2967
  Local identifier of the domain owner (for French domains).
2967
2968
  """
2968
2969
  return pulumi.get(self, "local_id")
2969
2970
 
2970
2971
  @local_id.setter
2971
- def local_id(self, value: Optional[pulumi.Input[str]]):
2972
+ def local_id(self, value: Optional[pulumi.Input[builtins.str]]):
2972
2973
  pulumi.set(self, "local_id", value)
2973
2974
 
2974
2975
 
2975
2976
  if not MYPY:
2976
2977
  class RegistrationTechnicalContactExtensionFrIndividualInfoArgsDict(TypedDict):
2977
- whois_opt_in: NotRequired[pulumi.Input[bool]]
2978
+ whois_opt_in: NotRequired[pulumi.Input[builtins.bool]]
2978
2979
  """
2979
2980
  Whether the individual contact has opted into WHOIS publishing.
2980
2981
  """
@@ -2984,29 +2985,29 @@ elif False:
2984
2985
  @pulumi.input_type
2985
2986
  class RegistrationTechnicalContactExtensionFrIndividualInfoArgs:
2986
2987
  def __init__(__self__, *,
2987
- whois_opt_in: Optional[pulumi.Input[bool]] = None):
2988
+ whois_opt_in: Optional[pulumi.Input[builtins.bool]] = None):
2988
2989
  """
2989
- :param pulumi.Input[bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2990
+ :param pulumi.Input[builtins.bool] whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2990
2991
  """
2991
2992
  if whois_opt_in is not None:
2992
2993
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
2993
2994
 
2994
2995
  @property
2995
2996
  @pulumi.getter(name="whoisOptIn")
2996
- def whois_opt_in(self) -> Optional[pulumi.Input[bool]]:
2997
+ def whois_opt_in(self) -> Optional[pulumi.Input[builtins.bool]]:
2997
2998
  """
2998
2999
  Whether the individual contact has opted into WHOIS publishing.
2999
3000
  """
3000
3001
  return pulumi.get(self, "whois_opt_in")
3001
3002
 
3002
3003
  @whois_opt_in.setter
3003
- def whois_opt_in(self, value: Optional[pulumi.Input[bool]]):
3004
+ def whois_opt_in(self, value: Optional[pulumi.Input[builtins.bool]]):
3004
3005
  pulumi.set(self, "whois_opt_in", value)
3005
3006
 
3006
3007
 
3007
3008
  if not MYPY:
3008
3009
  class RegistrationTechnicalContactExtensionFrTrademarkInfoArgsDict(TypedDict):
3009
- trademark_inpi: NotRequired[pulumi.Input[str]]
3010
+ trademark_inpi: NotRequired[pulumi.Input[builtins.str]]
3010
3011
  """
3011
3012
  Trademark information from INPI (French extension).
3012
3013
  """
@@ -3016,23 +3017,23 @@ elif False:
3016
3017
  @pulumi.input_type
3017
3018
  class RegistrationTechnicalContactExtensionFrTrademarkInfoArgs:
3018
3019
  def __init__(__self__, *,
3019
- trademark_inpi: Optional[pulumi.Input[str]] = None):
3020
+ trademark_inpi: Optional[pulumi.Input[builtins.str]] = None):
3020
3021
  """
3021
- :param pulumi.Input[str] trademark_inpi: Trademark information from INPI (French extension).
3022
+ :param pulumi.Input[builtins.str] trademark_inpi: Trademark information from INPI (French extension).
3022
3023
  """
3023
3024
  if trademark_inpi is not None:
3024
3025
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
3025
3026
 
3026
3027
  @property
3027
3028
  @pulumi.getter(name="trademarkInpi")
3028
- def trademark_inpi(self) -> Optional[pulumi.Input[str]]:
3029
+ def trademark_inpi(self) -> Optional[pulumi.Input[builtins.str]]:
3029
3030
  """
3030
3031
  Trademark information from INPI (French extension).
3031
3032
  """
3032
3033
  return pulumi.get(self, "trademark_inpi")
3033
3034
 
3034
3035
  @trademark_inpi.setter
3035
- def trademark_inpi(self, value: Optional[pulumi.Input[str]]):
3036
+ def trademark_inpi(self, value: Optional[pulumi.Input[builtins.str]]):
3036
3037
  pulumi.set(self, "trademark_inpi", value)
3037
3038
 
3038
3039