pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__py3-none-any.whl

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