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
@@ -65,7 +65,7 @@ class RecordGeoIp(dict):
65
65
  """
66
66
  pulumi.set(__self__, "matches", matches)
67
67
 
68
- @property
68
+ @_builtins.property
69
69
  @pulumi.getter
70
70
  def matches(self) -> Sequence['outputs.RecordGeoIpMatch']:
71
71
  """
@@ -77,13 +77,13 @@ class RecordGeoIp(dict):
77
77
  @pulumi.output_type
78
78
  class RecordGeoIpMatch(dict):
79
79
  def __init__(__self__, *,
80
- data: str,
81
- continents: Optional[Sequence[str]] = None,
82
- countries: Optional[Sequence[str]] = None):
80
+ data: _builtins.str,
81
+ continents: Optional[Sequence[_builtins.str]] = None,
82
+ countries: Optional[Sequence[_builtins.str]] = None):
83
83
  """
84
- :param str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
85
- :param Sequence[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
86
- :param Sequence[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
84
+ :param _builtins.str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
85
+ :param Sequence[_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
86
+ :param Sequence[_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
87
87
  """
88
88
  pulumi.set(__self__, "data", data)
89
89
  if continents is not None:
@@ -91,25 +91,25 @@ class RecordGeoIpMatch(dict):
91
91
  if countries is not None:
92
92
  pulumi.set(__self__, "countries", countries)
93
93
 
94
- @property
94
+ @_builtins.property
95
95
  @pulumi.getter
96
- def data(self) -> str:
96
+ def data(self) -> _builtins.str:
97
97
  """
98
98
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
99
99
  """
100
100
  return pulumi.get(self, "data")
101
101
 
102
- @property
102
+ @_builtins.property
103
103
  @pulumi.getter
104
- def continents(self) -> Optional[Sequence[str]]:
104
+ def continents(self) -> Optional[Sequence[_builtins.str]]:
105
105
  """
106
106
  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
107
107
  """
108
108
  return pulumi.get(self, "continents")
109
109
 
110
- @property
110
+ @_builtins.property
111
111
  @pulumi.getter
112
- def countries(self) -> Optional[Sequence[str]]:
112
+ def countries(self) -> Optional[Sequence[_builtins.str]]:
113
113
  """
114
114
  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
115
115
  """
@@ -138,17 +138,17 @@ class RecordHttpService(dict):
138
138
  return super().get(key, default)
139
139
 
140
140
  def __init__(__self__, *,
141
- ips: Sequence[str],
142
- must_contain: str,
143
- strategy: str,
144
- url: str,
145
- user_agent: Optional[str] = None):
146
- """
147
- :param Sequence[str] ips: IPs to check
148
- :param str must_contain: Text to search
149
- :param str strategy: Strategy to return an IP from the IPs list
150
- :param str url: URL to match the must_contain text to validate an IP
151
- :param str user_agent: User-agent used when checking the URL
141
+ ips: Sequence[_builtins.str],
142
+ must_contain: _builtins.str,
143
+ strategy: _builtins.str,
144
+ url: _builtins.str,
145
+ user_agent: Optional[_builtins.str] = None):
146
+ """
147
+ :param Sequence[_builtins.str] ips: IPs to check
148
+ :param _builtins.str must_contain: Text to search
149
+ :param _builtins.str strategy: Strategy to return an IP from the IPs list
150
+ :param _builtins.str url: URL to match the must_contain text to validate an IP
151
+ :param _builtins.str user_agent: User-agent used when checking the URL
152
152
  """
153
153
  pulumi.set(__self__, "ips", ips)
154
154
  pulumi.set(__self__, "must_contain", must_contain)
@@ -157,41 +157,41 @@ class RecordHttpService(dict):
157
157
  if user_agent is not None:
158
158
  pulumi.set(__self__, "user_agent", user_agent)
159
159
 
160
- @property
160
+ @_builtins.property
161
161
  @pulumi.getter
162
- def ips(self) -> Sequence[str]:
162
+ def ips(self) -> Sequence[_builtins.str]:
163
163
  """
164
164
  IPs to check
165
165
  """
166
166
  return pulumi.get(self, "ips")
167
167
 
168
- @property
168
+ @_builtins.property
169
169
  @pulumi.getter(name="mustContain")
170
- def must_contain(self) -> str:
170
+ def must_contain(self) -> _builtins.str:
171
171
  """
172
172
  Text to search
173
173
  """
174
174
  return pulumi.get(self, "must_contain")
175
175
 
176
- @property
176
+ @_builtins.property
177
177
  @pulumi.getter
178
- def strategy(self) -> str:
178
+ def strategy(self) -> _builtins.str:
179
179
  """
180
180
  Strategy to return an IP from the IPs list
181
181
  """
182
182
  return pulumi.get(self, "strategy")
183
183
 
184
- @property
184
+ @_builtins.property
185
185
  @pulumi.getter
186
- def url(self) -> str:
186
+ def url(self) -> _builtins.str:
187
187
  """
188
188
  URL to match the must_contain text to validate an IP
189
189
  """
190
190
  return pulumi.get(self, "url")
191
191
 
192
- @property
192
+ @_builtins.property
193
193
  @pulumi.getter(name="userAgent")
194
- def user_agent(self) -> Optional[str]:
194
+ def user_agent(self) -> Optional[_builtins.str]:
195
195
  """
196
196
  User-agent used when checking the URL
197
197
  """
@@ -201,26 +201,26 @@ class RecordHttpService(dict):
201
201
  @pulumi.output_type
202
202
  class RecordView(dict):
203
203
  def __init__(__self__, *,
204
- data: str,
205
- subnet: str):
204
+ data: _builtins.str,
205
+ subnet: _builtins.str):
206
206
  """
207
- :param str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
208
- :param str subnet: The subnet of the view
207
+ :param _builtins.str data: The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
208
+ :param _builtins.str subnet: The subnet of the view
209
209
  """
210
210
  pulumi.set(__self__, "data", data)
211
211
  pulumi.set(__self__, "subnet", subnet)
212
212
 
213
- @property
213
+ @_builtins.property
214
214
  @pulumi.getter
215
- def data(self) -> str:
215
+ def data(self) -> _builtins.str:
216
216
  """
217
217
  The content of the record (an IPv4 for an `A` record, a string for a `TXT` record, etc.).
218
218
  """
219
219
  return pulumi.get(self, "data")
220
220
 
221
- @property
221
+ @_builtins.property
222
222
  @pulumi.getter
223
- def subnet(self) -> str:
223
+ def subnet(self) -> _builtins.str:
224
224
  """
225
225
  The subnet of the view
226
226
  """
@@ -230,26 +230,26 @@ class RecordView(dict):
230
230
  @pulumi.output_type
231
231
  class RecordWeighted(dict):
232
232
  def __init__(__self__, *,
233
- ip: str,
234
- weight: int):
233
+ ip: _builtins.str,
234
+ weight: _builtins.int):
235
235
  """
236
- :param str ip: The weighted IP
237
- :param int weight: The weight of the IP
236
+ :param _builtins.str ip: The weighted IP
237
+ :param _builtins.int weight: The weight of the IP
238
238
  """
239
239
  pulumi.set(__self__, "ip", ip)
240
240
  pulumi.set(__self__, "weight", weight)
241
241
 
242
- @property
242
+ @_builtins.property
243
243
  @pulumi.getter
244
- def ip(self) -> str:
244
+ def ip(self) -> _builtins.str:
245
245
  """
246
246
  The weighted IP
247
247
  """
248
248
  return pulumi.get(self, "ip")
249
249
 
250
- @property
250
+ @_builtins.property
251
251
  @pulumi.getter
252
- def weight(self) -> int:
252
+ def weight(self) -> _builtins.int:
253
253
  """
254
254
  The weight of the IP
255
255
  """
@@ -300,51 +300,51 @@ class RegistrationAdministrativeContact(dict):
300
300
  return super().get(key, default)
301
301
 
302
302
  def __init__(__self__, *,
303
- address_line1: str,
304
- city: str,
305
- company_identification_code: str,
306
- country: str,
307
- email: str,
308
- firstname: str,
309
- lastname: str,
310
- legal_form: str,
311
- phone_number: str,
312
- vat_identification_code: str,
313
- zip: str,
314
- address_line2: Optional[str] = None,
315
- company_name: Optional[str] = None,
316
- email_alt: Optional[str] = None,
303
+ address_line1: _builtins.str,
304
+ city: _builtins.str,
305
+ company_identification_code: _builtins.str,
306
+ country: _builtins.str,
307
+ email: _builtins.str,
308
+ firstname: _builtins.str,
309
+ lastname: _builtins.str,
310
+ legal_form: _builtins.str,
311
+ phone_number: _builtins.str,
312
+ vat_identification_code: _builtins.str,
313
+ zip: _builtins.str,
314
+ address_line2: Optional[_builtins.str] = None,
315
+ company_name: Optional[_builtins.str] = None,
316
+ email_alt: Optional[_builtins.str] = None,
317
317
  extension_eu: Optional['outputs.RegistrationAdministrativeContactExtensionEu'] = None,
318
318
  extension_fr: Optional['outputs.RegistrationAdministrativeContactExtensionFr'] = None,
319
- extension_nls: Optional[Sequence[str]] = None,
320
- fax_number: Optional[str] = None,
321
- lang: Optional[str] = None,
322
- resale: Optional[bool] = None,
323
- state: Optional[str] = None,
324
- whois_opt_in: Optional[bool] = None):
325
- """
326
- :param str address_line1: Primary address line for the contact.
327
- :param str city: City of the contact's address.
328
- :param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
329
- :param str country: Country code of the contact's address (ISO format).
330
- :param str email: Primary email address of the contact.
331
- :param str firstname: First name of the contact.
332
- :param str lastname: Last name of the contact.
333
- :param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
334
- :param str phone_number: Primary phone number of the contact.
335
- :param str vat_identification_code: VAT identification code of the contact, if applicable.
336
- :param str zip: Postal code of the contact's address.
337
- :param str address_line2: Secondary address line for the contact (optional).
338
- :param str company_name: Name of the company associated with the contact (if applicable).
339
- :param str email_alt: Alternative email address for the contact.
319
+ extension_nls: Optional[Sequence[_builtins.str]] = None,
320
+ fax_number: Optional[_builtins.str] = None,
321
+ lang: Optional[_builtins.str] = None,
322
+ resale: Optional[_builtins.bool] = None,
323
+ state: Optional[_builtins.str] = None,
324
+ whois_opt_in: Optional[_builtins.bool] = None):
325
+ """
326
+ :param _builtins.str address_line1: Primary address line for the contact.
327
+ :param _builtins.str city: City of the contact's address.
328
+ :param _builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
329
+ :param _builtins.str country: Country code of the contact's address (ISO format).
330
+ :param _builtins.str email: Primary email address of the contact.
331
+ :param _builtins.str firstname: First name of the contact.
332
+ :param _builtins.str lastname: Last name of the contact.
333
+ :param _builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
334
+ :param _builtins.str phone_number: Primary phone number of the contact.
335
+ :param _builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
336
+ :param _builtins.str zip: Postal code of the contact's address.
337
+ :param _builtins.str address_line2: Secondary address line for the contact (optional).
338
+ :param _builtins.str company_name: Name of the company associated with the contact (if applicable).
339
+ :param _builtins.str email_alt: Alternative email address for the contact.
340
340
  :param 'RegistrationAdministrativeContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
341
341
  :param 'RegistrationAdministrativeContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
342
- :param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
343
- :param str fax_number: Fax number for the contact (if available).
344
- :param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
345
- :param bool resale: Indicates if the contact is used for resale purposes.
346
- :param str state: State or region of the contact.
347
- :param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
342
+ :param Sequence[_builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
343
+ :param _builtins.str fax_number: Fax number for the contact (if available).
344
+ :param _builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
345
+ :param _builtins.bool resale: Indicates if the contact is used for resale purposes.
346
+ :param _builtins.str state: State or region of the contact.
347
+ :param _builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
348
348
  """
349
349
  pulumi.set(__self__, "address_line1", address_line1)
350
350
  pulumi.set(__self__, "city", city)
@@ -380,119 +380,119 @@ class RegistrationAdministrativeContact(dict):
380
380
  if whois_opt_in is not None:
381
381
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
382
382
 
383
- @property
383
+ @_builtins.property
384
384
  @pulumi.getter(name="addressLine1")
385
- def address_line1(self) -> str:
385
+ def address_line1(self) -> _builtins.str:
386
386
  """
387
387
  Primary address line for the contact.
388
388
  """
389
389
  return pulumi.get(self, "address_line1")
390
390
 
391
- @property
391
+ @_builtins.property
392
392
  @pulumi.getter
393
- def city(self) -> str:
393
+ def city(self) -> _builtins.str:
394
394
  """
395
395
  City of the contact's address.
396
396
  """
397
397
  return pulumi.get(self, "city")
398
398
 
399
- @property
399
+ @_builtins.property
400
400
  @pulumi.getter(name="companyIdentificationCode")
401
- def company_identification_code(self) -> str:
401
+ def company_identification_code(self) -> _builtins.str:
402
402
  """
403
403
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
404
404
  """
405
405
  return pulumi.get(self, "company_identification_code")
406
406
 
407
- @property
407
+ @_builtins.property
408
408
  @pulumi.getter
409
- def country(self) -> str:
409
+ def country(self) -> _builtins.str:
410
410
  """
411
411
  Country code of the contact's address (ISO format).
412
412
  """
413
413
  return pulumi.get(self, "country")
414
414
 
415
- @property
415
+ @_builtins.property
416
416
  @pulumi.getter
417
- def email(self) -> str:
417
+ def email(self) -> _builtins.str:
418
418
  """
419
419
  Primary email address of the contact.
420
420
  """
421
421
  return pulumi.get(self, "email")
422
422
 
423
- @property
423
+ @_builtins.property
424
424
  @pulumi.getter
425
- def firstname(self) -> str:
425
+ def firstname(self) -> _builtins.str:
426
426
  """
427
427
  First name of the contact.
428
428
  """
429
429
  return pulumi.get(self, "firstname")
430
430
 
431
- @property
431
+ @_builtins.property
432
432
  @pulumi.getter
433
- def lastname(self) -> str:
433
+ def lastname(self) -> _builtins.str:
434
434
  """
435
435
  Last name of the contact.
436
436
  """
437
437
  return pulumi.get(self, "lastname")
438
438
 
439
- @property
439
+ @_builtins.property
440
440
  @pulumi.getter(name="legalForm")
441
- def legal_form(self) -> str:
441
+ def legal_form(self) -> _builtins.str:
442
442
  """
443
443
  Legal form of the contact (e.g., 'individual' or 'organization').
444
444
  """
445
445
  return pulumi.get(self, "legal_form")
446
446
 
447
- @property
447
+ @_builtins.property
448
448
  @pulumi.getter(name="phoneNumber")
449
- def phone_number(self) -> str:
449
+ def phone_number(self) -> _builtins.str:
450
450
  """
451
451
  Primary phone number of the contact.
452
452
  """
453
453
  return pulumi.get(self, "phone_number")
454
454
 
455
- @property
455
+ @_builtins.property
456
456
  @pulumi.getter(name="vatIdentificationCode")
457
- def vat_identification_code(self) -> str:
457
+ def vat_identification_code(self) -> _builtins.str:
458
458
  """
459
459
  VAT identification code of the contact, if applicable.
460
460
  """
461
461
  return pulumi.get(self, "vat_identification_code")
462
462
 
463
- @property
463
+ @_builtins.property
464
464
  @pulumi.getter
465
- def zip(self) -> str:
465
+ def zip(self) -> _builtins.str:
466
466
  """
467
467
  Postal code of the contact's address.
468
468
  """
469
469
  return pulumi.get(self, "zip")
470
470
 
471
- @property
471
+ @_builtins.property
472
472
  @pulumi.getter(name="addressLine2")
473
- def address_line2(self) -> Optional[str]:
473
+ def address_line2(self) -> Optional[_builtins.str]:
474
474
  """
475
475
  Secondary address line for the contact (optional).
476
476
  """
477
477
  return pulumi.get(self, "address_line2")
478
478
 
479
- @property
479
+ @_builtins.property
480
480
  @pulumi.getter(name="companyName")
481
- def company_name(self) -> Optional[str]:
481
+ def company_name(self) -> Optional[_builtins.str]:
482
482
  """
483
483
  Name of the company associated with the contact (if applicable).
484
484
  """
485
485
  return pulumi.get(self, "company_name")
486
486
 
487
- @property
487
+ @_builtins.property
488
488
  @pulumi.getter(name="emailAlt")
489
- def email_alt(self) -> Optional[str]:
489
+ def email_alt(self) -> Optional[_builtins.str]:
490
490
  """
491
491
  Alternative email address for the contact.
492
492
  """
493
493
  return pulumi.get(self, "email_alt")
494
494
 
495
- @property
495
+ @_builtins.property
496
496
  @pulumi.getter(name="extensionEu")
497
497
  def extension_eu(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionEu']:
498
498
  """
@@ -500,7 +500,7 @@ class RegistrationAdministrativeContact(dict):
500
500
  """
501
501
  return pulumi.get(self, "extension_eu")
502
502
 
503
- @property
503
+ @_builtins.property
504
504
  @pulumi.getter(name="extensionFr")
505
505
  def extension_fr(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFr']:
506
506
  """
@@ -508,49 +508,49 @@ class RegistrationAdministrativeContact(dict):
508
508
  """
509
509
  return pulumi.get(self, "extension_fr")
510
510
 
511
- @property
511
+ @_builtins.property
512
512
  @pulumi.getter(name="extensionNls")
513
- def extension_nls(self) -> Optional[Sequence[str]]:
513
+ def extension_nls(self) -> Optional[Sequence[_builtins.str]]:
514
514
  """
515
515
  Extension details specific to Dutch domain registrations.
516
516
  """
517
517
  return pulumi.get(self, "extension_nls")
518
518
 
519
- @property
519
+ @_builtins.property
520
520
  @pulumi.getter(name="faxNumber")
521
- def fax_number(self) -> Optional[str]:
521
+ def fax_number(self) -> Optional[_builtins.str]:
522
522
  """
523
523
  Fax number for the contact (if available).
524
524
  """
525
525
  return pulumi.get(self, "fax_number")
526
526
 
527
- @property
527
+ @_builtins.property
528
528
  @pulumi.getter
529
- def lang(self) -> Optional[str]:
529
+ def lang(self) -> Optional[_builtins.str]:
530
530
  """
531
531
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
532
532
  """
533
533
  return pulumi.get(self, "lang")
534
534
 
535
- @property
535
+ @_builtins.property
536
536
  @pulumi.getter
537
- def resale(self) -> Optional[bool]:
537
+ def resale(self) -> Optional[_builtins.bool]:
538
538
  """
539
539
  Indicates if the contact is used for resale purposes.
540
540
  """
541
541
  return pulumi.get(self, "resale")
542
542
 
543
- @property
543
+ @_builtins.property
544
544
  @pulumi.getter
545
- def state(self) -> Optional[str]:
545
+ def state(self) -> Optional[_builtins.str]:
546
546
  """
547
547
  State or region of the contact.
548
548
  """
549
549
  return pulumi.get(self, "state")
550
550
 
551
- @property
551
+ @_builtins.property
552
552
  @pulumi.getter(name="whoisOptIn")
553
- def whois_opt_in(self) -> Optional[bool]:
553
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
554
554
  """
555
555
  Indicates whether the contact has opted into WHOIS publishing.
556
556
  """
@@ -577,16 +577,16 @@ class RegistrationAdministrativeContactExtensionEu(dict):
577
577
  return super().get(key, default)
578
578
 
579
579
  def __init__(__self__, *,
580
- european_citizenship: Optional[str] = None):
580
+ european_citizenship: Optional[_builtins.str] = None):
581
581
  """
582
- :param str european_citizenship: Indicates the European citizenship of the contact.
582
+ :param _builtins.str european_citizenship: Indicates the European citizenship of the contact.
583
583
  """
584
584
  if european_citizenship is not None:
585
585
  pulumi.set(__self__, "european_citizenship", european_citizenship)
586
586
 
587
- @property
587
+ @_builtins.property
588
588
  @pulumi.getter(name="europeanCitizenship")
589
- def european_citizenship(self) -> Optional[str]:
589
+ def european_citizenship(self) -> Optional[_builtins.str]:
590
590
  """
591
591
  Indicates the European citizenship of the contact.
592
592
  """
@@ -625,14 +625,14 @@ class RegistrationAdministrativeContactExtensionFr(dict):
625
625
  code_auth_afnic_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo'] = None,
626
626
  duns_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrDunsInfo'] = None,
627
627
  individual_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrIndividualInfo'] = None,
628
- mode: Optional[str] = None,
628
+ mode: Optional[_builtins.str] = None,
629
629
  trademark_info: Optional['outputs.RegistrationAdministrativeContactExtensionFrTrademarkInfo'] = None):
630
630
  """
631
631
  :param 'RegistrationAdministrativeContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
632
632
  :param 'RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
633
633
  :param 'RegistrationAdministrativeContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
634
634
  :param 'RegistrationAdministrativeContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
635
- :param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
635
+ :param _builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
636
636
  :param 'RegistrationAdministrativeContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
637
637
  """
638
638
  if association_info is not None:
@@ -648,7 +648,7 @@ class RegistrationAdministrativeContactExtensionFr(dict):
648
648
  if trademark_info is not None:
649
649
  pulumi.set(__self__, "trademark_info", trademark_info)
650
650
 
651
- @property
651
+ @_builtins.property
652
652
  @pulumi.getter(name="associationInfo")
653
653
  def association_info(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFrAssociationInfo']:
654
654
  """
@@ -656,7 +656,7 @@ class RegistrationAdministrativeContactExtensionFr(dict):
656
656
  """
657
657
  return pulumi.get(self, "association_info")
658
658
 
659
- @property
659
+ @_builtins.property
660
660
  @pulumi.getter(name="codeAuthAfnicInfo")
661
661
  def code_auth_afnic_info(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo']:
662
662
  """
@@ -664,7 +664,7 @@ class RegistrationAdministrativeContactExtensionFr(dict):
664
664
  """
665
665
  return pulumi.get(self, "code_auth_afnic_info")
666
666
 
667
- @property
667
+ @_builtins.property
668
668
  @pulumi.getter(name="dunsInfo")
669
669
  def duns_info(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFrDunsInfo']:
670
670
  """
@@ -672,7 +672,7 @@ class RegistrationAdministrativeContactExtensionFr(dict):
672
672
  """
673
673
  return pulumi.get(self, "duns_info")
674
674
 
675
- @property
675
+ @_builtins.property
676
676
  @pulumi.getter(name="individualInfo")
677
677
  def individual_info(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFrIndividualInfo']:
678
678
  """
@@ -680,15 +680,15 @@ class RegistrationAdministrativeContactExtensionFr(dict):
680
680
  """
681
681
  return pulumi.get(self, "individual_info")
682
682
 
683
- @property
683
+ @_builtins.property
684
684
  @pulumi.getter
685
- def mode(self) -> Optional[str]:
685
+ def mode(self) -> Optional[_builtins.str]:
686
686
  """
687
687
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
688
688
  """
689
689
  return pulumi.get(self, "mode")
690
690
 
691
- @property
691
+ @_builtins.property
692
692
  @pulumi.getter(name="trademarkInfo")
693
693
  def trademark_info(self) -> Optional['outputs.RegistrationAdministrativeContactExtensionFrTrademarkInfo']:
694
694
  """
@@ -719,28 +719,28 @@ class RegistrationAdministrativeContactExtensionFrAssociationInfo(dict):
719
719
  return super().get(key, default)
720
720
 
721
721
  def __init__(__self__, *,
722
- publication_jo: Optional[str] = None,
723
- publication_jo_page: Optional[int] = None):
722
+ publication_jo: Optional[_builtins.str] = None,
723
+ publication_jo_page: Optional[_builtins.int] = None):
724
724
  """
725
- :param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
726
- :param int publication_jo_page: Page number of the publication in the Official Journal for association information.
725
+ :param _builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
726
+ :param _builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
727
727
  """
728
728
  if publication_jo is not None:
729
729
  pulumi.set(__self__, "publication_jo", publication_jo)
730
730
  if publication_jo_page is not None:
731
731
  pulumi.set(__self__, "publication_jo_page", publication_jo_page)
732
732
 
733
- @property
733
+ @_builtins.property
734
734
  @pulumi.getter(name="publicationJo")
735
- def publication_jo(self) -> Optional[str]:
735
+ def publication_jo(self) -> Optional[_builtins.str]:
736
736
  """
737
737
  Publication date in the Official Journal (RFC3339 format) for association information.
738
738
  """
739
739
  return pulumi.get(self, "publication_jo")
740
740
 
741
- @property
741
+ @_builtins.property
742
742
  @pulumi.getter(name="publicationJoPage")
743
- def publication_jo_page(self) -> Optional[int]:
743
+ def publication_jo_page(self) -> Optional[_builtins.int]:
744
744
  """
745
745
  Page number of the publication in the Official Journal for association information.
746
746
  """
@@ -767,16 +767,16 @@ class RegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo(dict):
767
767
  return super().get(key, default)
768
768
 
769
769
  def __init__(__self__, *,
770
- code_auth_afnic: Optional[str] = None):
770
+ code_auth_afnic: Optional[_builtins.str] = None):
771
771
  """
772
- :param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
772
+ :param _builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
773
773
  """
774
774
  if code_auth_afnic is not None:
775
775
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
776
776
 
777
- @property
777
+ @_builtins.property
778
778
  @pulumi.getter(name="codeAuthAfnic")
779
- def code_auth_afnic(self) -> Optional[str]:
779
+ def code_auth_afnic(self) -> Optional[_builtins.str]:
780
780
  """
781
781
  AFNIC authorization code for the contact (specific to French domains).
782
782
  """
@@ -805,28 +805,28 @@ class RegistrationAdministrativeContactExtensionFrDunsInfo(dict):
805
805
  return super().get(key, default)
806
806
 
807
807
  def __init__(__self__, *,
808
- duns_id: Optional[str] = None,
809
- local_id: Optional[str] = None):
808
+ duns_id: Optional[_builtins.str] = None,
809
+ local_id: Optional[_builtins.str] = None):
810
810
  """
811
- :param str duns_id: DUNS ID associated with the domain owner (for French domains).
812
- :param str local_id: Local identifier of the domain owner (for French domains).
811
+ :param _builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
812
+ :param _builtins.str local_id: Local identifier of the domain owner (for French domains).
813
813
  """
814
814
  if duns_id is not None:
815
815
  pulumi.set(__self__, "duns_id", duns_id)
816
816
  if local_id is not None:
817
817
  pulumi.set(__self__, "local_id", local_id)
818
818
 
819
- @property
819
+ @_builtins.property
820
820
  @pulumi.getter(name="dunsId")
821
- def duns_id(self) -> Optional[str]:
821
+ def duns_id(self) -> Optional[_builtins.str]:
822
822
  """
823
823
  DUNS ID associated with the domain owner (for French domains).
824
824
  """
825
825
  return pulumi.get(self, "duns_id")
826
826
 
827
- @property
827
+ @_builtins.property
828
828
  @pulumi.getter(name="localId")
829
- def local_id(self) -> Optional[str]:
829
+ def local_id(self) -> Optional[_builtins.str]:
830
830
  """
831
831
  Local identifier of the domain owner (for French domains).
832
832
  """
@@ -853,16 +853,16 @@ class RegistrationAdministrativeContactExtensionFrIndividualInfo(dict):
853
853
  return super().get(key, default)
854
854
 
855
855
  def __init__(__self__, *,
856
- whois_opt_in: Optional[bool] = None):
856
+ whois_opt_in: Optional[_builtins.bool] = None):
857
857
  """
858
- :param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
858
+ :param _builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
859
859
  """
860
860
  if whois_opt_in is not None:
861
861
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
862
862
 
863
- @property
863
+ @_builtins.property
864
864
  @pulumi.getter(name="whoisOptIn")
865
- def whois_opt_in(self) -> Optional[bool]:
865
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
866
866
  """
867
867
  Whether the individual contact has opted into WHOIS publishing.
868
868
  """
@@ -889,16 +889,16 @@ class RegistrationAdministrativeContactExtensionFrTrademarkInfo(dict):
889
889
  return super().get(key, default)
890
890
 
891
891
  def __init__(__self__, *,
892
- trademark_inpi: Optional[str] = None):
892
+ trademark_inpi: Optional[_builtins.str] = None):
893
893
  """
894
- :param str trademark_inpi: Trademark information from INPI (French extension).
894
+ :param _builtins.str trademark_inpi: Trademark information from INPI (French extension).
895
895
  """
896
896
  if trademark_inpi is not None:
897
897
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
898
898
 
899
- @property
899
+ @_builtins.property
900
900
  @pulumi.getter(name="trademarkInpi")
901
- def trademark_inpi(self) -> Optional[str]:
901
+ def trademark_inpi(self) -> Optional[_builtins.str]:
902
902
  """
903
903
  Trademark information from INPI (French extension).
904
904
  """
@@ -927,14 +927,14 @@ class RegistrationDsRecord(dict):
927
927
  return super().get(key, default)
928
928
 
929
929
  def __init__(__self__, *,
930
- algorithm: Optional[str] = None,
930
+ algorithm: Optional[_builtins.str] = None,
931
931
  digests: Optional[Sequence['outputs.RegistrationDsRecordDigest']] = None,
932
- key_id: Optional[int] = None,
932
+ key_id: Optional[_builtins.int] = None,
933
933
  public_keys: Optional[Sequence['outputs.RegistrationDsRecordPublicKey']] = None):
934
934
  """
935
- :param str algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
935
+ :param _builtins.str algorithm: The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
936
936
  :param Sequence['RegistrationDsRecordDigestArgs'] digests: Details about the digest.
937
- :param int key_id: The identifier for the dnssec key.
937
+ :param _builtins.int key_id: The identifier for the dnssec key.
938
938
  :param Sequence['RegistrationDsRecordPublicKeyArgs'] public_keys: Public key associated with the dnssec record.
939
939
  """
940
940
  if algorithm is not None:
@@ -946,15 +946,15 @@ class RegistrationDsRecord(dict):
946
946
  if public_keys is not None:
947
947
  pulumi.set(__self__, "public_keys", public_keys)
948
948
 
949
- @property
949
+ @_builtins.property
950
950
  @pulumi.getter
951
- def algorithm(self) -> Optional[str]:
951
+ def algorithm(self) -> Optional[_builtins.str]:
952
952
  """
953
953
  The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
954
954
  """
955
955
  return pulumi.get(self, "algorithm")
956
956
 
957
- @property
957
+ @_builtins.property
958
958
  @pulumi.getter
959
959
  def digests(self) -> Optional[Sequence['outputs.RegistrationDsRecordDigest']]:
960
960
  """
@@ -962,15 +962,15 @@ class RegistrationDsRecord(dict):
962
962
  """
963
963
  return pulumi.get(self, "digests")
964
964
 
965
- @property
965
+ @_builtins.property
966
966
  @pulumi.getter(name="keyId")
967
- def key_id(self) -> Optional[int]:
967
+ def key_id(self) -> Optional[_builtins.int]:
968
968
  """
969
969
  The identifier for the dnssec key.
970
970
  """
971
971
  return pulumi.get(self, "key_id")
972
972
 
973
- @property
973
+ @_builtins.property
974
974
  @pulumi.getter(name="publicKeys")
975
975
  def public_keys(self) -> Optional[Sequence['outputs.RegistrationDsRecordPublicKey']]:
976
976
  """
@@ -999,13 +999,13 @@ class RegistrationDsRecordDigest(dict):
999
999
  return super().get(key, default)
1000
1000
 
1001
1001
  def __init__(__self__, *,
1002
- digest: Optional[str] = None,
1002
+ digest: Optional[_builtins.str] = None,
1003
1003
  public_keys: Optional[Sequence['outputs.RegistrationDsRecordDigestPublicKey']] = None,
1004
- type: Optional[str] = None):
1004
+ type: Optional[_builtins.str] = None):
1005
1005
  """
1006
- :param str digest: The digest value.
1006
+ :param _builtins.str digest: The digest value.
1007
1007
  :param Sequence['RegistrationDsRecordDigestPublicKeyArgs'] public_keys: The public key associated with the digest.
1008
- :param str type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1008
+ :param _builtins.str type: The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1009
1009
  """
1010
1010
  if digest is not None:
1011
1011
  pulumi.set(__self__, "digest", digest)
@@ -1014,15 +1014,15 @@ class RegistrationDsRecordDigest(dict):
1014
1014
  if type is not None:
1015
1015
  pulumi.set(__self__, "type", type)
1016
1016
 
1017
- @property
1017
+ @_builtins.property
1018
1018
  @pulumi.getter
1019
- def digest(self) -> Optional[str]:
1019
+ def digest(self) -> Optional[_builtins.str]:
1020
1020
  """
1021
1021
  The digest value.
1022
1022
  """
1023
1023
  return pulumi.get(self, "digest")
1024
1024
 
1025
- @property
1025
+ @_builtins.property
1026
1026
  @pulumi.getter(name="publicKeys")
1027
1027
  def public_keys(self) -> Optional[Sequence['outputs.RegistrationDsRecordDigestPublicKey']]:
1028
1028
  """
@@ -1030,9 +1030,9 @@ class RegistrationDsRecordDigest(dict):
1030
1030
  """
1031
1031
  return pulumi.get(self, "public_keys")
1032
1032
 
1033
- @property
1033
+ @_builtins.property
1034
1034
  @pulumi.getter
1035
- def type(self) -> Optional[str]:
1035
+ def type(self) -> Optional[_builtins.str]:
1036
1036
  """
1037
1037
  The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
1038
1038
  """
@@ -1042,15 +1042,15 @@ class RegistrationDsRecordDigest(dict):
1042
1042
  @pulumi.output_type
1043
1043
  class RegistrationDsRecordDigestPublicKey(dict):
1044
1044
  def __init__(__self__, *,
1045
- key: str):
1045
+ key: _builtins.str):
1046
1046
  """
1047
- :param str key: The public key value.
1047
+ :param _builtins.str key: The public key value.
1048
1048
  """
1049
1049
  pulumi.set(__self__, "key", key)
1050
1050
 
1051
- @property
1051
+ @_builtins.property
1052
1052
  @pulumi.getter
1053
- def key(self) -> str:
1053
+ def key(self) -> _builtins.str:
1054
1054
  """
1055
1055
  The public key value.
1056
1056
  """
@@ -1060,15 +1060,15 @@ class RegistrationDsRecordDigestPublicKey(dict):
1060
1060
  @pulumi.output_type
1061
1061
  class RegistrationDsRecordPublicKey(dict):
1062
1062
  def __init__(__self__, *,
1063
- key: str):
1063
+ key: _builtins.str):
1064
1064
  """
1065
- :param str key: The public key value.
1065
+ :param _builtins.str key: The public key value.
1066
1066
  """
1067
1067
  pulumi.set(__self__, "key", key)
1068
1068
 
1069
- @property
1069
+ @_builtins.property
1070
1070
  @pulumi.getter
1071
- def key(self) -> str:
1071
+ def key(self) -> _builtins.str:
1072
1072
  """
1073
1073
  The public key value.
1074
1074
  """
@@ -1119,51 +1119,51 @@ class RegistrationOwnerContact(dict):
1119
1119
  return super().get(key, default)
1120
1120
 
1121
1121
  def __init__(__self__, *,
1122
- address_line1: str,
1123
- city: str,
1124
- company_identification_code: str,
1125
- country: str,
1126
- email: str,
1127
- firstname: str,
1128
- lastname: str,
1129
- legal_form: str,
1130
- phone_number: str,
1131
- vat_identification_code: str,
1132
- zip: str,
1133
- address_line2: Optional[str] = None,
1134
- company_name: Optional[str] = None,
1135
- email_alt: Optional[str] = None,
1122
+ address_line1: _builtins.str,
1123
+ city: _builtins.str,
1124
+ company_identification_code: _builtins.str,
1125
+ country: _builtins.str,
1126
+ email: _builtins.str,
1127
+ firstname: _builtins.str,
1128
+ lastname: _builtins.str,
1129
+ legal_form: _builtins.str,
1130
+ phone_number: _builtins.str,
1131
+ vat_identification_code: _builtins.str,
1132
+ zip: _builtins.str,
1133
+ address_line2: Optional[_builtins.str] = None,
1134
+ company_name: Optional[_builtins.str] = None,
1135
+ email_alt: Optional[_builtins.str] = None,
1136
1136
  extension_eu: Optional['outputs.RegistrationOwnerContactExtensionEu'] = None,
1137
1137
  extension_fr: Optional['outputs.RegistrationOwnerContactExtensionFr'] = None,
1138
- extension_nls: Optional[Sequence[str]] = None,
1139
- fax_number: Optional[str] = None,
1140
- lang: Optional[str] = None,
1141
- resale: Optional[bool] = None,
1142
- state: Optional[str] = None,
1143
- whois_opt_in: Optional[bool] = None):
1144
- """
1145
- :param str address_line1: Primary address line for the contact.
1146
- :param str city: City of the contact's address.
1147
- :param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1148
- :param str country: Country code of the contact's address (ISO format).
1149
- :param str email: Primary email address of the contact.
1150
- :param str firstname: First name of the contact.
1151
- :param str lastname: Last name of the contact.
1152
- :param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1153
- :param str phone_number: Primary phone number of the contact.
1154
- :param str vat_identification_code: VAT identification code of the contact, if applicable.
1155
- :param str zip: Postal code of the contact's address.
1156
- :param str address_line2: Secondary address line for the contact (optional).
1157
- :param str company_name: Name of the company associated with the contact (if applicable).
1158
- :param str email_alt: Alternative email address for the contact.
1138
+ extension_nls: Optional[Sequence[_builtins.str]] = None,
1139
+ fax_number: Optional[_builtins.str] = None,
1140
+ lang: Optional[_builtins.str] = None,
1141
+ resale: Optional[_builtins.bool] = None,
1142
+ state: Optional[_builtins.str] = None,
1143
+ whois_opt_in: Optional[_builtins.bool] = None):
1144
+ """
1145
+ :param _builtins.str address_line1: Primary address line for the contact.
1146
+ :param _builtins.str city: City of the contact's address.
1147
+ :param _builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1148
+ :param _builtins.str country: Country code of the contact's address (ISO format).
1149
+ :param _builtins.str email: Primary email address of the contact.
1150
+ :param _builtins.str firstname: First name of the contact.
1151
+ :param _builtins.str lastname: Last name of the contact.
1152
+ :param _builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1153
+ :param _builtins.str phone_number: Primary phone number of the contact.
1154
+ :param _builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
1155
+ :param _builtins.str zip: Postal code of the contact's address.
1156
+ :param _builtins.str address_line2: Secondary address line for the contact (optional).
1157
+ :param _builtins.str company_name: Name of the company associated with the contact (if applicable).
1158
+ :param _builtins.str email_alt: Alternative email address for the contact.
1159
1159
  :param 'RegistrationOwnerContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
1160
1160
  :param 'RegistrationOwnerContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
1161
- :param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
1162
- :param str fax_number: Fax number for the contact (if available).
1163
- :param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1164
- :param bool resale: Indicates if the contact is used for resale purposes.
1165
- :param str state: State or region of the contact.
1166
- :param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1161
+ :param Sequence[_builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
1162
+ :param _builtins.str fax_number: Fax number for the contact (if available).
1163
+ :param _builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1164
+ :param _builtins.bool resale: Indicates if the contact is used for resale purposes.
1165
+ :param _builtins.str state: State or region of the contact.
1166
+ :param _builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1167
1167
  """
1168
1168
  pulumi.set(__self__, "address_line1", address_line1)
1169
1169
  pulumi.set(__self__, "city", city)
@@ -1199,119 +1199,119 @@ class RegistrationOwnerContact(dict):
1199
1199
  if whois_opt_in is not None:
1200
1200
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
1201
1201
 
1202
- @property
1202
+ @_builtins.property
1203
1203
  @pulumi.getter(name="addressLine1")
1204
- def address_line1(self) -> str:
1204
+ def address_line1(self) -> _builtins.str:
1205
1205
  """
1206
1206
  Primary address line for the contact.
1207
1207
  """
1208
1208
  return pulumi.get(self, "address_line1")
1209
1209
 
1210
- @property
1210
+ @_builtins.property
1211
1211
  @pulumi.getter
1212
- def city(self) -> str:
1212
+ def city(self) -> _builtins.str:
1213
1213
  """
1214
1214
  City of the contact's address.
1215
1215
  """
1216
1216
  return pulumi.get(self, "city")
1217
1217
 
1218
- @property
1218
+ @_builtins.property
1219
1219
  @pulumi.getter(name="companyIdentificationCode")
1220
- def company_identification_code(self) -> str:
1220
+ def company_identification_code(self) -> _builtins.str:
1221
1221
  """
1222
1222
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
1223
1223
  """
1224
1224
  return pulumi.get(self, "company_identification_code")
1225
1225
 
1226
- @property
1226
+ @_builtins.property
1227
1227
  @pulumi.getter
1228
- def country(self) -> str:
1228
+ def country(self) -> _builtins.str:
1229
1229
  """
1230
1230
  Country code of the contact's address (ISO format).
1231
1231
  """
1232
1232
  return pulumi.get(self, "country")
1233
1233
 
1234
- @property
1234
+ @_builtins.property
1235
1235
  @pulumi.getter
1236
- def email(self) -> str:
1236
+ def email(self) -> _builtins.str:
1237
1237
  """
1238
1238
  Primary email address of the contact.
1239
1239
  """
1240
1240
  return pulumi.get(self, "email")
1241
1241
 
1242
- @property
1242
+ @_builtins.property
1243
1243
  @pulumi.getter
1244
- def firstname(self) -> str:
1244
+ def firstname(self) -> _builtins.str:
1245
1245
  """
1246
1246
  First name of the contact.
1247
1247
  """
1248
1248
  return pulumi.get(self, "firstname")
1249
1249
 
1250
- @property
1250
+ @_builtins.property
1251
1251
  @pulumi.getter
1252
- def lastname(self) -> str:
1252
+ def lastname(self) -> _builtins.str:
1253
1253
  """
1254
1254
  Last name of the contact.
1255
1255
  """
1256
1256
  return pulumi.get(self, "lastname")
1257
1257
 
1258
- @property
1258
+ @_builtins.property
1259
1259
  @pulumi.getter(name="legalForm")
1260
- def legal_form(self) -> str:
1260
+ def legal_form(self) -> _builtins.str:
1261
1261
  """
1262
1262
  Legal form of the contact (e.g., 'individual' or 'organization').
1263
1263
  """
1264
1264
  return pulumi.get(self, "legal_form")
1265
1265
 
1266
- @property
1266
+ @_builtins.property
1267
1267
  @pulumi.getter(name="phoneNumber")
1268
- def phone_number(self) -> str:
1268
+ def phone_number(self) -> _builtins.str:
1269
1269
  """
1270
1270
  Primary phone number of the contact.
1271
1271
  """
1272
1272
  return pulumi.get(self, "phone_number")
1273
1273
 
1274
- @property
1274
+ @_builtins.property
1275
1275
  @pulumi.getter(name="vatIdentificationCode")
1276
- def vat_identification_code(self) -> str:
1276
+ def vat_identification_code(self) -> _builtins.str:
1277
1277
  """
1278
1278
  VAT identification code of the contact, if applicable.
1279
1279
  """
1280
1280
  return pulumi.get(self, "vat_identification_code")
1281
1281
 
1282
- @property
1282
+ @_builtins.property
1283
1283
  @pulumi.getter
1284
- def zip(self) -> str:
1284
+ def zip(self) -> _builtins.str:
1285
1285
  """
1286
1286
  Postal code of the contact's address.
1287
1287
  """
1288
1288
  return pulumi.get(self, "zip")
1289
1289
 
1290
- @property
1290
+ @_builtins.property
1291
1291
  @pulumi.getter(name="addressLine2")
1292
- def address_line2(self) -> Optional[str]:
1292
+ def address_line2(self) -> Optional[_builtins.str]:
1293
1293
  """
1294
1294
  Secondary address line for the contact (optional).
1295
1295
  """
1296
1296
  return pulumi.get(self, "address_line2")
1297
1297
 
1298
- @property
1298
+ @_builtins.property
1299
1299
  @pulumi.getter(name="companyName")
1300
- def company_name(self) -> Optional[str]:
1300
+ def company_name(self) -> Optional[_builtins.str]:
1301
1301
  """
1302
1302
  Name of the company associated with the contact (if applicable).
1303
1303
  """
1304
1304
  return pulumi.get(self, "company_name")
1305
1305
 
1306
- @property
1306
+ @_builtins.property
1307
1307
  @pulumi.getter(name="emailAlt")
1308
- def email_alt(self) -> Optional[str]:
1308
+ def email_alt(self) -> Optional[_builtins.str]:
1309
1309
  """
1310
1310
  Alternative email address for the contact.
1311
1311
  """
1312
1312
  return pulumi.get(self, "email_alt")
1313
1313
 
1314
- @property
1314
+ @_builtins.property
1315
1315
  @pulumi.getter(name="extensionEu")
1316
1316
  def extension_eu(self) -> Optional['outputs.RegistrationOwnerContactExtensionEu']:
1317
1317
  """
@@ -1319,7 +1319,7 @@ class RegistrationOwnerContact(dict):
1319
1319
  """
1320
1320
  return pulumi.get(self, "extension_eu")
1321
1321
 
1322
- @property
1322
+ @_builtins.property
1323
1323
  @pulumi.getter(name="extensionFr")
1324
1324
  def extension_fr(self) -> Optional['outputs.RegistrationOwnerContactExtensionFr']:
1325
1325
  """
@@ -1327,49 +1327,49 @@ class RegistrationOwnerContact(dict):
1327
1327
  """
1328
1328
  return pulumi.get(self, "extension_fr")
1329
1329
 
1330
- @property
1330
+ @_builtins.property
1331
1331
  @pulumi.getter(name="extensionNls")
1332
- def extension_nls(self) -> Optional[Sequence[str]]:
1332
+ def extension_nls(self) -> Optional[Sequence[_builtins.str]]:
1333
1333
  """
1334
1334
  Extension details specific to Dutch domain registrations.
1335
1335
  """
1336
1336
  return pulumi.get(self, "extension_nls")
1337
1337
 
1338
- @property
1338
+ @_builtins.property
1339
1339
  @pulumi.getter(name="faxNumber")
1340
- def fax_number(self) -> Optional[str]:
1340
+ def fax_number(self) -> Optional[_builtins.str]:
1341
1341
  """
1342
1342
  Fax number for the contact (if available).
1343
1343
  """
1344
1344
  return pulumi.get(self, "fax_number")
1345
1345
 
1346
- @property
1346
+ @_builtins.property
1347
1347
  @pulumi.getter
1348
- def lang(self) -> Optional[str]:
1348
+ def lang(self) -> Optional[_builtins.str]:
1349
1349
  """
1350
1350
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1351
1351
  """
1352
1352
  return pulumi.get(self, "lang")
1353
1353
 
1354
- @property
1354
+ @_builtins.property
1355
1355
  @pulumi.getter
1356
- def resale(self) -> Optional[bool]:
1356
+ def resale(self) -> Optional[_builtins.bool]:
1357
1357
  """
1358
1358
  Indicates if the contact is used for resale purposes.
1359
1359
  """
1360
1360
  return pulumi.get(self, "resale")
1361
1361
 
1362
- @property
1362
+ @_builtins.property
1363
1363
  @pulumi.getter
1364
- def state(self) -> Optional[str]:
1364
+ def state(self) -> Optional[_builtins.str]:
1365
1365
  """
1366
1366
  State or region of the contact.
1367
1367
  """
1368
1368
  return pulumi.get(self, "state")
1369
1369
 
1370
- @property
1370
+ @_builtins.property
1371
1371
  @pulumi.getter(name="whoisOptIn")
1372
- def whois_opt_in(self) -> Optional[bool]:
1372
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
1373
1373
  """
1374
1374
  Indicates whether the contact has opted into WHOIS publishing.
1375
1375
  """
@@ -1396,16 +1396,16 @@ class RegistrationOwnerContactExtensionEu(dict):
1396
1396
  return super().get(key, default)
1397
1397
 
1398
1398
  def __init__(__self__, *,
1399
- european_citizenship: Optional[str] = None):
1399
+ european_citizenship: Optional[_builtins.str] = None):
1400
1400
  """
1401
- :param str european_citizenship: Indicates the European citizenship of the contact.
1401
+ :param _builtins.str european_citizenship: Indicates the European citizenship of the contact.
1402
1402
  """
1403
1403
  if european_citizenship is not None:
1404
1404
  pulumi.set(__self__, "european_citizenship", european_citizenship)
1405
1405
 
1406
- @property
1406
+ @_builtins.property
1407
1407
  @pulumi.getter(name="europeanCitizenship")
1408
- def european_citizenship(self) -> Optional[str]:
1408
+ def european_citizenship(self) -> Optional[_builtins.str]:
1409
1409
  """
1410
1410
  Indicates the European citizenship of the contact.
1411
1411
  """
@@ -1444,14 +1444,14 @@ class RegistrationOwnerContactExtensionFr(dict):
1444
1444
  code_auth_afnic_info: Optional['outputs.RegistrationOwnerContactExtensionFrCodeAuthAfnicInfo'] = None,
1445
1445
  duns_info: Optional['outputs.RegistrationOwnerContactExtensionFrDunsInfo'] = None,
1446
1446
  individual_info: Optional['outputs.RegistrationOwnerContactExtensionFrIndividualInfo'] = None,
1447
- mode: Optional[str] = None,
1447
+ mode: Optional[_builtins.str] = None,
1448
1448
  trademark_info: Optional['outputs.RegistrationOwnerContactExtensionFrTrademarkInfo'] = None):
1449
1449
  """
1450
1450
  :param 'RegistrationOwnerContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
1451
1451
  :param 'RegistrationOwnerContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
1452
1452
  :param 'RegistrationOwnerContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
1453
1453
  :param 'RegistrationOwnerContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
1454
- :param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1454
+ :param _builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1455
1455
  :param 'RegistrationOwnerContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
1456
1456
  """
1457
1457
  if association_info is not None:
@@ -1467,7 +1467,7 @@ class RegistrationOwnerContactExtensionFr(dict):
1467
1467
  if trademark_info is not None:
1468
1468
  pulumi.set(__self__, "trademark_info", trademark_info)
1469
1469
 
1470
- @property
1470
+ @_builtins.property
1471
1471
  @pulumi.getter(name="associationInfo")
1472
1472
  def association_info(self) -> Optional['outputs.RegistrationOwnerContactExtensionFrAssociationInfo']:
1473
1473
  """
@@ -1475,7 +1475,7 @@ class RegistrationOwnerContactExtensionFr(dict):
1475
1475
  """
1476
1476
  return pulumi.get(self, "association_info")
1477
1477
 
1478
- @property
1478
+ @_builtins.property
1479
1479
  @pulumi.getter(name="codeAuthAfnicInfo")
1480
1480
  def code_auth_afnic_info(self) -> Optional['outputs.RegistrationOwnerContactExtensionFrCodeAuthAfnicInfo']:
1481
1481
  """
@@ -1483,7 +1483,7 @@ class RegistrationOwnerContactExtensionFr(dict):
1483
1483
  """
1484
1484
  return pulumi.get(self, "code_auth_afnic_info")
1485
1485
 
1486
- @property
1486
+ @_builtins.property
1487
1487
  @pulumi.getter(name="dunsInfo")
1488
1488
  def duns_info(self) -> Optional['outputs.RegistrationOwnerContactExtensionFrDunsInfo']:
1489
1489
  """
@@ -1491,7 +1491,7 @@ class RegistrationOwnerContactExtensionFr(dict):
1491
1491
  """
1492
1492
  return pulumi.get(self, "duns_info")
1493
1493
 
1494
- @property
1494
+ @_builtins.property
1495
1495
  @pulumi.getter(name="individualInfo")
1496
1496
  def individual_info(self) -> Optional['outputs.RegistrationOwnerContactExtensionFrIndividualInfo']:
1497
1497
  """
@@ -1499,15 +1499,15 @@ class RegistrationOwnerContactExtensionFr(dict):
1499
1499
  """
1500
1500
  return pulumi.get(self, "individual_info")
1501
1501
 
1502
- @property
1502
+ @_builtins.property
1503
1503
  @pulumi.getter
1504
- def mode(self) -> Optional[str]:
1504
+ def mode(self) -> Optional[_builtins.str]:
1505
1505
  """
1506
1506
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
1507
1507
  """
1508
1508
  return pulumi.get(self, "mode")
1509
1509
 
1510
- @property
1510
+ @_builtins.property
1511
1511
  @pulumi.getter(name="trademarkInfo")
1512
1512
  def trademark_info(self) -> Optional['outputs.RegistrationOwnerContactExtensionFrTrademarkInfo']:
1513
1513
  """
@@ -1538,28 +1538,28 @@ class RegistrationOwnerContactExtensionFrAssociationInfo(dict):
1538
1538
  return super().get(key, default)
1539
1539
 
1540
1540
  def __init__(__self__, *,
1541
- publication_jo: Optional[str] = None,
1542
- publication_jo_page: Optional[int] = None):
1541
+ publication_jo: Optional[_builtins.str] = None,
1542
+ publication_jo_page: Optional[_builtins.int] = None):
1543
1543
  """
1544
- :param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
1545
- :param int publication_jo_page: Page number of the publication in the Official Journal for association information.
1544
+ :param _builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
1545
+ :param _builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
1546
1546
  """
1547
1547
  if publication_jo is not None:
1548
1548
  pulumi.set(__self__, "publication_jo", publication_jo)
1549
1549
  if publication_jo_page is not None:
1550
1550
  pulumi.set(__self__, "publication_jo_page", publication_jo_page)
1551
1551
 
1552
- @property
1552
+ @_builtins.property
1553
1553
  @pulumi.getter(name="publicationJo")
1554
- def publication_jo(self) -> Optional[str]:
1554
+ def publication_jo(self) -> Optional[_builtins.str]:
1555
1555
  """
1556
1556
  Publication date in the Official Journal (RFC3339 format) for association information.
1557
1557
  """
1558
1558
  return pulumi.get(self, "publication_jo")
1559
1559
 
1560
- @property
1560
+ @_builtins.property
1561
1561
  @pulumi.getter(name="publicationJoPage")
1562
- def publication_jo_page(self) -> Optional[int]:
1562
+ def publication_jo_page(self) -> Optional[_builtins.int]:
1563
1563
  """
1564
1564
  Page number of the publication in the Official Journal for association information.
1565
1565
  """
@@ -1586,16 +1586,16 @@ class RegistrationOwnerContactExtensionFrCodeAuthAfnicInfo(dict):
1586
1586
  return super().get(key, default)
1587
1587
 
1588
1588
  def __init__(__self__, *,
1589
- code_auth_afnic: Optional[str] = None):
1589
+ code_auth_afnic: Optional[_builtins.str] = None):
1590
1590
  """
1591
- :param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
1591
+ :param _builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
1592
1592
  """
1593
1593
  if code_auth_afnic is not None:
1594
1594
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
1595
1595
 
1596
- @property
1596
+ @_builtins.property
1597
1597
  @pulumi.getter(name="codeAuthAfnic")
1598
- def code_auth_afnic(self) -> Optional[str]:
1598
+ def code_auth_afnic(self) -> Optional[_builtins.str]:
1599
1599
  """
1600
1600
  AFNIC authorization code for the contact (specific to French domains).
1601
1601
  """
@@ -1624,28 +1624,28 @@ class RegistrationOwnerContactExtensionFrDunsInfo(dict):
1624
1624
  return super().get(key, default)
1625
1625
 
1626
1626
  def __init__(__self__, *,
1627
- duns_id: Optional[str] = None,
1628
- local_id: Optional[str] = None):
1627
+ duns_id: Optional[_builtins.str] = None,
1628
+ local_id: Optional[_builtins.str] = None):
1629
1629
  """
1630
- :param str duns_id: DUNS ID associated with the domain owner (for French domains).
1631
- :param str local_id: Local identifier of the domain owner (for French domains).
1630
+ :param _builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
1631
+ :param _builtins.str local_id: Local identifier of the domain owner (for French domains).
1632
1632
  """
1633
1633
  if duns_id is not None:
1634
1634
  pulumi.set(__self__, "duns_id", duns_id)
1635
1635
  if local_id is not None:
1636
1636
  pulumi.set(__self__, "local_id", local_id)
1637
1637
 
1638
- @property
1638
+ @_builtins.property
1639
1639
  @pulumi.getter(name="dunsId")
1640
- def duns_id(self) -> Optional[str]:
1640
+ def duns_id(self) -> Optional[_builtins.str]:
1641
1641
  """
1642
1642
  DUNS ID associated with the domain owner (for French domains).
1643
1643
  """
1644
1644
  return pulumi.get(self, "duns_id")
1645
1645
 
1646
- @property
1646
+ @_builtins.property
1647
1647
  @pulumi.getter(name="localId")
1648
- def local_id(self) -> Optional[str]:
1648
+ def local_id(self) -> Optional[_builtins.str]:
1649
1649
  """
1650
1650
  Local identifier of the domain owner (for French domains).
1651
1651
  """
@@ -1672,16 +1672,16 @@ class RegistrationOwnerContactExtensionFrIndividualInfo(dict):
1672
1672
  return super().get(key, default)
1673
1673
 
1674
1674
  def __init__(__self__, *,
1675
- whois_opt_in: Optional[bool] = None):
1675
+ whois_opt_in: Optional[_builtins.bool] = None):
1676
1676
  """
1677
- :param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
1677
+ :param _builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
1678
1678
  """
1679
1679
  if whois_opt_in is not None:
1680
1680
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
1681
1681
 
1682
- @property
1682
+ @_builtins.property
1683
1683
  @pulumi.getter(name="whoisOptIn")
1684
- def whois_opt_in(self) -> Optional[bool]:
1684
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
1685
1685
  """
1686
1686
  Whether the individual contact has opted into WHOIS publishing.
1687
1687
  """
@@ -1708,16 +1708,16 @@ class RegistrationOwnerContactExtensionFrTrademarkInfo(dict):
1708
1708
  return super().get(key, default)
1709
1709
 
1710
1710
  def __init__(__self__, *,
1711
- trademark_inpi: Optional[str] = None):
1711
+ trademark_inpi: Optional[_builtins.str] = None):
1712
1712
  """
1713
- :param str trademark_inpi: Trademark information from INPI (French extension).
1713
+ :param _builtins.str trademark_inpi: Trademark information from INPI (French extension).
1714
1714
  """
1715
1715
  if trademark_inpi is not None:
1716
1716
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
1717
1717
 
1718
- @property
1718
+ @_builtins.property
1719
1719
  @pulumi.getter(name="trademarkInpi")
1720
- def trademark_inpi(self) -> Optional[str]:
1720
+ def trademark_inpi(self) -> Optional[_builtins.str]:
1721
1721
  """
1722
1722
  Trademark information from INPI (French extension).
1723
1723
  """
@@ -1768,51 +1768,51 @@ class RegistrationTechnicalContact(dict):
1768
1768
  return super().get(key, default)
1769
1769
 
1770
1770
  def __init__(__self__, *,
1771
- address_line1: str,
1772
- city: str,
1773
- company_identification_code: str,
1774
- country: str,
1775
- email: str,
1776
- firstname: str,
1777
- lastname: str,
1778
- legal_form: str,
1779
- phone_number: str,
1780
- vat_identification_code: str,
1781
- zip: str,
1782
- address_line2: Optional[str] = None,
1783
- company_name: Optional[str] = None,
1784
- email_alt: Optional[str] = None,
1771
+ address_line1: _builtins.str,
1772
+ city: _builtins.str,
1773
+ company_identification_code: _builtins.str,
1774
+ country: _builtins.str,
1775
+ email: _builtins.str,
1776
+ firstname: _builtins.str,
1777
+ lastname: _builtins.str,
1778
+ legal_form: _builtins.str,
1779
+ phone_number: _builtins.str,
1780
+ vat_identification_code: _builtins.str,
1781
+ zip: _builtins.str,
1782
+ address_line2: Optional[_builtins.str] = None,
1783
+ company_name: Optional[_builtins.str] = None,
1784
+ email_alt: Optional[_builtins.str] = None,
1785
1785
  extension_eu: Optional['outputs.RegistrationTechnicalContactExtensionEu'] = None,
1786
1786
  extension_fr: Optional['outputs.RegistrationTechnicalContactExtensionFr'] = None,
1787
- extension_nls: Optional[Sequence[str]] = None,
1788
- fax_number: Optional[str] = None,
1789
- lang: Optional[str] = None,
1790
- resale: Optional[bool] = None,
1791
- state: Optional[str] = None,
1792
- whois_opt_in: Optional[bool] = None):
1793
- """
1794
- :param str address_line1: Primary address line for the contact.
1795
- :param str city: City of the contact's address.
1796
- :param str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1797
- :param str country: Country code of the contact's address (ISO format).
1798
- :param str email: Primary email address of the contact.
1799
- :param str firstname: First name of the contact.
1800
- :param str lastname: Last name of the contact.
1801
- :param str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1802
- :param str phone_number: Primary phone number of the contact.
1803
- :param str vat_identification_code: VAT identification code of the contact, if applicable.
1804
- :param str zip: Postal code of the contact's address.
1805
- :param str address_line2: Secondary address line for the contact (optional).
1806
- :param str company_name: Name of the company associated with the contact (if applicable).
1807
- :param str email_alt: Alternative email address for the contact.
1787
+ extension_nls: Optional[Sequence[_builtins.str]] = None,
1788
+ fax_number: Optional[_builtins.str] = None,
1789
+ lang: Optional[_builtins.str] = None,
1790
+ resale: Optional[_builtins.bool] = None,
1791
+ state: Optional[_builtins.str] = None,
1792
+ whois_opt_in: Optional[_builtins.bool] = None):
1793
+ """
1794
+ :param _builtins.str address_line1: Primary address line for the contact.
1795
+ :param _builtins.str city: City of the contact's address.
1796
+ :param _builtins.str company_identification_code: Company identification code (e.g., SIREN/SIRET in France) for the contact.
1797
+ :param _builtins.str country: Country code of the contact's address (ISO format).
1798
+ :param _builtins.str email: Primary email address of the contact.
1799
+ :param _builtins.str firstname: First name of the contact.
1800
+ :param _builtins.str lastname: Last name of the contact.
1801
+ :param _builtins.str legal_form: Legal form of the contact (e.g., 'individual' or 'organization').
1802
+ :param _builtins.str phone_number: Primary phone number of the contact.
1803
+ :param _builtins.str vat_identification_code: VAT identification code of the contact, if applicable.
1804
+ :param _builtins.str zip: Postal code of the contact's address.
1805
+ :param _builtins.str address_line2: Secondary address line for the contact (optional).
1806
+ :param _builtins.str company_name: Name of the company associated with the contact (if applicable).
1807
+ :param _builtins.str email_alt: Alternative email address for the contact.
1808
1808
  :param 'RegistrationTechnicalContactExtensionEuArgs' extension_eu: Details specific to European domain extensions.
1809
1809
  :param 'RegistrationTechnicalContactExtensionFrArgs' extension_fr: Details specific to French domain extensions.
1810
- :param Sequence[str] extension_nls: Extension details specific to Dutch domain registrations.
1811
- :param str fax_number: Fax number for the contact (if available).
1812
- :param str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1813
- :param bool resale: Indicates if the contact is used for resale purposes.
1814
- :param str state: State or region of the contact.
1815
- :param bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1810
+ :param Sequence[_builtins.str] extension_nls: Extension details specific to Dutch domain registrations.
1811
+ :param _builtins.str fax_number: Fax number for the contact (if available).
1812
+ :param _builtins.str lang: Preferred language of the contact (e.g., 'en_US', 'fr_FR').
1813
+ :param _builtins.bool resale: Indicates if the contact is used for resale purposes.
1814
+ :param _builtins.str state: State or region of the contact.
1815
+ :param _builtins.bool whois_opt_in: Indicates whether the contact has opted into WHOIS publishing.
1816
1816
  """
1817
1817
  pulumi.set(__self__, "address_line1", address_line1)
1818
1818
  pulumi.set(__self__, "city", city)
@@ -1848,119 +1848,119 @@ class RegistrationTechnicalContact(dict):
1848
1848
  if whois_opt_in is not None:
1849
1849
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
1850
1850
 
1851
- @property
1851
+ @_builtins.property
1852
1852
  @pulumi.getter(name="addressLine1")
1853
- def address_line1(self) -> str:
1853
+ def address_line1(self) -> _builtins.str:
1854
1854
  """
1855
1855
  Primary address line for the contact.
1856
1856
  """
1857
1857
  return pulumi.get(self, "address_line1")
1858
1858
 
1859
- @property
1859
+ @_builtins.property
1860
1860
  @pulumi.getter
1861
- def city(self) -> str:
1861
+ def city(self) -> _builtins.str:
1862
1862
  """
1863
1863
  City of the contact's address.
1864
1864
  """
1865
1865
  return pulumi.get(self, "city")
1866
1866
 
1867
- @property
1867
+ @_builtins.property
1868
1868
  @pulumi.getter(name="companyIdentificationCode")
1869
- def company_identification_code(self) -> str:
1869
+ def company_identification_code(self) -> _builtins.str:
1870
1870
  """
1871
1871
  Company identification code (e.g., SIREN/SIRET in France) for the contact.
1872
1872
  """
1873
1873
  return pulumi.get(self, "company_identification_code")
1874
1874
 
1875
- @property
1875
+ @_builtins.property
1876
1876
  @pulumi.getter
1877
- def country(self) -> str:
1877
+ def country(self) -> _builtins.str:
1878
1878
  """
1879
1879
  Country code of the contact's address (ISO format).
1880
1880
  """
1881
1881
  return pulumi.get(self, "country")
1882
1882
 
1883
- @property
1883
+ @_builtins.property
1884
1884
  @pulumi.getter
1885
- def email(self) -> str:
1885
+ def email(self) -> _builtins.str:
1886
1886
  """
1887
1887
  Primary email address of the contact.
1888
1888
  """
1889
1889
  return pulumi.get(self, "email")
1890
1890
 
1891
- @property
1891
+ @_builtins.property
1892
1892
  @pulumi.getter
1893
- def firstname(self) -> str:
1893
+ def firstname(self) -> _builtins.str:
1894
1894
  """
1895
1895
  First name of the contact.
1896
1896
  """
1897
1897
  return pulumi.get(self, "firstname")
1898
1898
 
1899
- @property
1899
+ @_builtins.property
1900
1900
  @pulumi.getter
1901
- def lastname(self) -> str:
1901
+ def lastname(self) -> _builtins.str:
1902
1902
  """
1903
1903
  Last name of the contact.
1904
1904
  """
1905
1905
  return pulumi.get(self, "lastname")
1906
1906
 
1907
- @property
1907
+ @_builtins.property
1908
1908
  @pulumi.getter(name="legalForm")
1909
- def legal_form(self) -> str:
1909
+ def legal_form(self) -> _builtins.str:
1910
1910
  """
1911
1911
  Legal form of the contact (e.g., 'individual' or 'organization').
1912
1912
  """
1913
1913
  return pulumi.get(self, "legal_form")
1914
1914
 
1915
- @property
1915
+ @_builtins.property
1916
1916
  @pulumi.getter(name="phoneNumber")
1917
- def phone_number(self) -> str:
1917
+ def phone_number(self) -> _builtins.str:
1918
1918
  """
1919
1919
  Primary phone number of the contact.
1920
1920
  """
1921
1921
  return pulumi.get(self, "phone_number")
1922
1922
 
1923
- @property
1923
+ @_builtins.property
1924
1924
  @pulumi.getter(name="vatIdentificationCode")
1925
- def vat_identification_code(self) -> str:
1925
+ def vat_identification_code(self) -> _builtins.str:
1926
1926
  """
1927
1927
  VAT identification code of the contact, if applicable.
1928
1928
  """
1929
1929
  return pulumi.get(self, "vat_identification_code")
1930
1930
 
1931
- @property
1931
+ @_builtins.property
1932
1932
  @pulumi.getter
1933
- def zip(self) -> str:
1933
+ def zip(self) -> _builtins.str:
1934
1934
  """
1935
1935
  Postal code of the contact's address.
1936
1936
  """
1937
1937
  return pulumi.get(self, "zip")
1938
1938
 
1939
- @property
1939
+ @_builtins.property
1940
1940
  @pulumi.getter(name="addressLine2")
1941
- def address_line2(self) -> Optional[str]:
1941
+ def address_line2(self) -> Optional[_builtins.str]:
1942
1942
  """
1943
1943
  Secondary address line for the contact (optional).
1944
1944
  """
1945
1945
  return pulumi.get(self, "address_line2")
1946
1946
 
1947
- @property
1947
+ @_builtins.property
1948
1948
  @pulumi.getter(name="companyName")
1949
- def company_name(self) -> Optional[str]:
1949
+ def company_name(self) -> Optional[_builtins.str]:
1950
1950
  """
1951
1951
  Name of the company associated with the contact (if applicable).
1952
1952
  """
1953
1953
  return pulumi.get(self, "company_name")
1954
1954
 
1955
- @property
1955
+ @_builtins.property
1956
1956
  @pulumi.getter(name="emailAlt")
1957
- def email_alt(self) -> Optional[str]:
1957
+ def email_alt(self) -> Optional[_builtins.str]:
1958
1958
  """
1959
1959
  Alternative email address for the contact.
1960
1960
  """
1961
1961
  return pulumi.get(self, "email_alt")
1962
1962
 
1963
- @property
1963
+ @_builtins.property
1964
1964
  @pulumi.getter(name="extensionEu")
1965
1965
  def extension_eu(self) -> Optional['outputs.RegistrationTechnicalContactExtensionEu']:
1966
1966
  """
@@ -1968,7 +1968,7 @@ class RegistrationTechnicalContact(dict):
1968
1968
  """
1969
1969
  return pulumi.get(self, "extension_eu")
1970
1970
 
1971
- @property
1971
+ @_builtins.property
1972
1972
  @pulumi.getter(name="extensionFr")
1973
1973
  def extension_fr(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFr']:
1974
1974
  """
@@ -1976,49 +1976,49 @@ class RegistrationTechnicalContact(dict):
1976
1976
  """
1977
1977
  return pulumi.get(self, "extension_fr")
1978
1978
 
1979
- @property
1979
+ @_builtins.property
1980
1980
  @pulumi.getter(name="extensionNls")
1981
- def extension_nls(self) -> Optional[Sequence[str]]:
1981
+ def extension_nls(self) -> Optional[Sequence[_builtins.str]]:
1982
1982
  """
1983
1983
  Extension details specific to Dutch domain registrations.
1984
1984
  """
1985
1985
  return pulumi.get(self, "extension_nls")
1986
1986
 
1987
- @property
1987
+ @_builtins.property
1988
1988
  @pulumi.getter(name="faxNumber")
1989
- def fax_number(self) -> Optional[str]:
1989
+ def fax_number(self) -> Optional[_builtins.str]:
1990
1990
  """
1991
1991
  Fax number for the contact (if available).
1992
1992
  """
1993
1993
  return pulumi.get(self, "fax_number")
1994
1994
 
1995
- @property
1995
+ @_builtins.property
1996
1996
  @pulumi.getter
1997
- def lang(self) -> Optional[str]:
1997
+ def lang(self) -> Optional[_builtins.str]:
1998
1998
  """
1999
1999
  Preferred language of the contact (e.g., 'en_US', 'fr_FR').
2000
2000
  """
2001
2001
  return pulumi.get(self, "lang")
2002
2002
 
2003
- @property
2003
+ @_builtins.property
2004
2004
  @pulumi.getter
2005
- def resale(self) -> Optional[bool]:
2005
+ def resale(self) -> Optional[_builtins.bool]:
2006
2006
  """
2007
2007
  Indicates if the contact is used for resale purposes.
2008
2008
  """
2009
2009
  return pulumi.get(self, "resale")
2010
2010
 
2011
- @property
2011
+ @_builtins.property
2012
2012
  @pulumi.getter
2013
- def state(self) -> Optional[str]:
2013
+ def state(self) -> Optional[_builtins.str]:
2014
2014
  """
2015
2015
  State or region of the contact.
2016
2016
  """
2017
2017
  return pulumi.get(self, "state")
2018
2018
 
2019
- @property
2019
+ @_builtins.property
2020
2020
  @pulumi.getter(name="whoisOptIn")
2021
- def whois_opt_in(self) -> Optional[bool]:
2021
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
2022
2022
  """
2023
2023
  Indicates whether the contact has opted into WHOIS publishing.
2024
2024
  """
@@ -2045,16 +2045,16 @@ class RegistrationTechnicalContactExtensionEu(dict):
2045
2045
  return super().get(key, default)
2046
2046
 
2047
2047
  def __init__(__self__, *,
2048
- european_citizenship: Optional[str] = None):
2048
+ european_citizenship: Optional[_builtins.str] = None):
2049
2049
  """
2050
- :param str european_citizenship: Indicates the European citizenship of the contact.
2050
+ :param _builtins.str european_citizenship: Indicates the European citizenship of the contact.
2051
2051
  """
2052
2052
  if european_citizenship is not None:
2053
2053
  pulumi.set(__self__, "european_citizenship", european_citizenship)
2054
2054
 
2055
- @property
2055
+ @_builtins.property
2056
2056
  @pulumi.getter(name="europeanCitizenship")
2057
- def european_citizenship(self) -> Optional[str]:
2057
+ def european_citizenship(self) -> Optional[_builtins.str]:
2058
2058
  """
2059
2059
  Indicates the European citizenship of the contact.
2060
2060
  """
@@ -2093,14 +2093,14 @@ class RegistrationTechnicalContactExtensionFr(dict):
2093
2093
  code_auth_afnic_info: Optional['outputs.RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo'] = None,
2094
2094
  duns_info: Optional['outputs.RegistrationTechnicalContactExtensionFrDunsInfo'] = None,
2095
2095
  individual_info: Optional['outputs.RegistrationTechnicalContactExtensionFrIndividualInfo'] = None,
2096
- mode: Optional[str] = None,
2096
+ mode: Optional[_builtins.str] = None,
2097
2097
  trademark_info: Optional['outputs.RegistrationTechnicalContactExtensionFrTrademarkInfo'] = None):
2098
2098
  """
2099
2099
  :param 'RegistrationTechnicalContactExtensionFrAssociationInfoArgs' association_info: Association-specific information for the domain (French extension).
2100
2100
  :param 'RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfoArgs' code_auth_afnic_info: AFNIC authorization information for the contact (French extension).
2101
2101
  :param 'RegistrationTechnicalContactExtensionFrDunsInfoArgs' duns_info: DUNS information for the domain owner (specific to French domains).
2102
2102
  :param 'RegistrationTechnicalContactExtensionFrIndividualInfoArgs' individual_info: Information about the individual registration for French domains.
2103
- :param str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2103
+ :param _builtins.str mode: Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2104
2104
  :param 'RegistrationTechnicalContactExtensionFrTrademarkInfoArgs' trademark_info: Trademark-related information for the domain (French extension).
2105
2105
  """
2106
2106
  if association_info is not None:
@@ -2116,7 +2116,7 @@ class RegistrationTechnicalContactExtensionFr(dict):
2116
2116
  if trademark_info is not None:
2117
2117
  pulumi.set(__self__, "trademark_info", trademark_info)
2118
2118
 
2119
- @property
2119
+ @_builtins.property
2120
2120
  @pulumi.getter(name="associationInfo")
2121
2121
  def association_info(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFrAssociationInfo']:
2122
2122
  """
@@ -2124,7 +2124,7 @@ class RegistrationTechnicalContactExtensionFr(dict):
2124
2124
  """
2125
2125
  return pulumi.get(self, "association_info")
2126
2126
 
2127
- @property
2127
+ @_builtins.property
2128
2128
  @pulumi.getter(name="codeAuthAfnicInfo")
2129
2129
  def code_auth_afnic_info(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo']:
2130
2130
  """
@@ -2132,7 +2132,7 @@ class RegistrationTechnicalContactExtensionFr(dict):
2132
2132
  """
2133
2133
  return pulumi.get(self, "code_auth_afnic_info")
2134
2134
 
2135
- @property
2135
+ @_builtins.property
2136
2136
  @pulumi.getter(name="dunsInfo")
2137
2137
  def duns_info(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFrDunsInfo']:
2138
2138
  """
@@ -2140,7 +2140,7 @@ class RegistrationTechnicalContactExtensionFr(dict):
2140
2140
  """
2141
2141
  return pulumi.get(self, "duns_info")
2142
2142
 
2143
- @property
2143
+ @_builtins.property
2144
2144
  @pulumi.getter(name="individualInfo")
2145
2145
  def individual_info(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFrIndividualInfo']:
2146
2146
  """
@@ -2148,15 +2148,15 @@ class RegistrationTechnicalContactExtensionFr(dict):
2148
2148
  """
2149
2149
  return pulumi.get(self, "individual_info")
2150
2150
 
2151
- @property
2151
+ @_builtins.property
2152
2152
  @pulumi.getter
2153
- def mode(self) -> Optional[str]:
2153
+ def mode(self) -> Optional[_builtins.str]:
2154
2154
  """
2155
2155
  Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
2156
2156
  """
2157
2157
  return pulumi.get(self, "mode")
2158
2158
 
2159
- @property
2159
+ @_builtins.property
2160
2160
  @pulumi.getter(name="trademarkInfo")
2161
2161
  def trademark_info(self) -> Optional['outputs.RegistrationTechnicalContactExtensionFrTrademarkInfo']:
2162
2162
  """
@@ -2187,28 +2187,28 @@ class RegistrationTechnicalContactExtensionFrAssociationInfo(dict):
2187
2187
  return super().get(key, default)
2188
2188
 
2189
2189
  def __init__(__self__, *,
2190
- publication_jo: Optional[str] = None,
2191
- publication_jo_page: Optional[int] = None):
2190
+ publication_jo: Optional[_builtins.str] = None,
2191
+ publication_jo_page: Optional[_builtins.int] = None):
2192
2192
  """
2193
- :param str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2194
- :param int publication_jo_page: Page number of the publication in the Official Journal for association information.
2193
+ :param _builtins.str publication_jo: Publication date in the Official Journal (RFC3339 format) for association information.
2194
+ :param _builtins.int publication_jo_page: Page number of the publication in the Official Journal for association information.
2195
2195
  """
2196
2196
  if publication_jo is not None:
2197
2197
  pulumi.set(__self__, "publication_jo", publication_jo)
2198
2198
  if publication_jo_page is not None:
2199
2199
  pulumi.set(__self__, "publication_jo_page", publication_jo_page)
2200
2200
 
2201
- @property
2201
+ @_builtins.property
2202
2202
  @pulumi.getter(name="publicationJo")
2203
- def publication_jo(self) -> Optional[str]:
2203
+ def publication_jo(self) -> Optional[_builtins.str]:
2204
2204
  """
2205
2205
  Publication date in the Official Journal (RFC3339 format) for association information.
2206
2206
  """
2207
2207
  return pulumi.get(self, "publication_jo")
2208
2208
 
2209
- @property
2209
+ @_builtins.property
2210
2210
  @pulumi.getter(name="publicationJoPage")
2211
- def publication_jo_page(self) -> Optional[int]:
2211
+ def publication_jo_page(self) -> Optional[_builtins.int]:
2212
2212
  """
2213
2213
  Page number of the publication in the Official Journal for association information.
2214
2214
  """
@@ -2235,16 +2235,16 @@ class RegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo(dict):
2235
2235
  return super().get(key, default)
2236
2236
 
2237
2237
  def __init__(__self__, *,
2238
- code_auth_afnic: Optional[str] = None):
2238
+ code_auth_afnic: Optional[_builtins.str] = None):
2239
2239
  """
2240
- :param str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2240
+ :param _builtins.str code_auth_afnic: AFNIC authorization code for the contact (specific to French domains).
2241
2241
  """
2242
2242
  if code_auth_afnic is not None:
2243
2243
  pulumi.set(__self__, "code_auth_afnic", code_auth_afnic)
2244
2244
 
2245
- @property
2245
+ @_builtins.property
2246
2246
  @pulumi.getter(name="codeAuthAfnic")
2247
- def code_auth_afnic(self) -> Optional[str]:
2247
+ def code_auth_afnic(self) -> Optional[_builtins.str]:
2248
2248
  """
2249
2249
  AFNIC authorization code for the contact (specific to French domains).
2250
2250
  """
@@ -2273,28 +2273,28 @@ class RegistrationTechnicalContactExtensionFrDunsInfo(dict):
2273
2273
  return super().get(key, default)
2274
2274
 
2275
2275
  def __init__(__self__, *,
2276
- duns_id: Optional[str] = None,
2277
- local_id: Optional[str] = None):
2276
+ duns_id: Optional[_builtins.str] = None,
2277
+ local_id: Optional[_builtins.str] = None):
2278
2278
  """
2279
- :param str duns_id: DUNS ID associated with the domain owner (for French domains).
2280
- :param str local_id: Local identifier of the domain owner (for French domains).
2279
+ :param _builtins.str duns_id: DUNS ID associated with the domain owner (for French domains).
2280
+ :param _builtins.str local_id: Local identifier of the domain owner (for French domains).
2281
2281
  """
2282
2282
  if duns_id is not None:
2283
2283
  pulumi.set(__self__, "duns_id", duns_id)
2284
2284
  if local_id is not None:
2285
2285
  pulumi.set(__self__, "local_id", local_id)
2286
2286
 
2287
- @property
2287
+ @_builtins.property
2288
2288
  @pulumi.getter(name="dunsId")
2289
- def duns_id(self) -> Optional[str]:
2289
+ def duns_id(self) -> Optional[_builtins.str]:
2290
2290
  """
2291
2291
  DUNS ID associated with the domain owner (for French domains).
2292
2292
  """
2293
2293
  return pulumi.get(self, "duns_id")
2294
2294
 
2295
- @property
2295
+ @_builtins.property
2296
2296
  @pulumi.getter(name="localId")
2297
- def local_id(self) -> Optional[str]:
2297
+ def local_id(self) -> Optional[_builtins.str]:
2298
2298
  """
2299
2299
  Local identifier of the domain owner (for French domains).
2300
2300
  """
@@ -2321,16 +2321,16 @@ class RegistrationTechnicalContactExtensionFrIndividualInfo(dict):
2321
2321
  return super().get(key, default)
2322
2322
 
2323
2323
  def __init__(__self__, *,
2324
- whois_opt_in: Optional[bool] = None):
2324
+ whois_opt_in: Optional[_builtins.bool] = None):
2325
2325
  """
2326
- :param bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2326
+ :param _builtins.bool whois_opt_in: Whether the individual contact has opted into WHOIS publishing.
2327
2327
  """
2328
2328
  if whois_opt_in is not None:
2329
2329
  pulumi.set(__self__, "whois_opt_in", whois_opt_in)
2330
2330
 
2331
- @property
2331
+ @_builtins.property
2332
2332
  @pulumi.getter(name="whoisOptIn")
2333
- def whois_opt_in(self) -> Optional[bool]:
2333
+ def whois_opt_in(self) -> Optional[_builtins.bool]:
2334
2334
  """
2335
2335
  Whether the individual contact has opted into WHOIS publishing.
2336
2336
  """
@@ -2357,16 +2357,16 @@ class RegistrationTechnicalContactExtensionFrTrademarkInfo(dict):
2357
2357
  return super().get(key, default)
2358
2358
 
2359
2359
  def __init__(__self__, *,
2360
- trademark_inpi: Optional[str] = None):
2360
+ trademark_inpi: Optional[_builtins.str] = None):
2361
2361
  """
2362
- :param str trademark_inpi: Trademark information from INPI (French extension).
2362
+ :param _builtins.str trademark_inpi: Trademark information from INPI (French extension).
2363
2363
  """
2364
2364
  if trademark_inpi is not None:
2365
2365
  pulumi.set(__self__, "trademark_inpi", trademark_inpi)
2366
2366
 
2367
- @property
2367
+ @_builtins.property
2368
2368
  @pulumi.getter(name="trademarkInpi")
2369
- def trademark_inpi(self) -> Optional[str]:
2369
+ def trademark_inpi(self) -> Optional[_builtins.str]:
2370
2370
  """
2371
2371
  Trademark information from INPI (French extension).
2372
2372
  """
@@ -2382,7 +2382,7 @@ class GetRecordGeoIpResult(dict):
2382
2382
  """
2383
2383
  pulumi.set(__self__, "matches", matches)
2384
2384
 
2385
- @property
2385
+ @_builtins.property
2386
2386
  @pulumi.getter
2387
2387
  def matches(self) -> Sequence['outputs.GetRecordGeoIpMatchResult']:
2388
2388
  """
@@ -2394,37 +2394,37 @@ class GetRecordGeoIpResult(dict):
2394
2394
  @pulumi.output_type
2395
2395
  class GetRecordGeoIpMatchResult(dict):
2396
2396
  def __init__(__self__, *,
2397
- continents: Sequence[str],
2398
- countries: Sequence[str],
2399
- data: str):
2397
+ continents: Sequence[_builtins.str],
2398
+ countries: Sequence[_builtins.str],
2399
+ data: _builtins.str):
2400
2400
  """
2401
- :param Sequence[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
2402
- :param Sequence[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
2403
- :param str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2401
+ :param Sequence[_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
2402
+ :param Sequence[_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
2403
+ :param _builtins.str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2404
2404
  """
2405
2405
  pulumi.set(__self__, "continents", continents)
2406
2406
  pulumi.set(__self__, "countries", countries)
2407
2407
  pulumi.set(__self__, "data", data)
2408
2408
 
2409
- @property
2409
+ @_builtins.property
2410
2410
  @pulumi.getter
2411
- def continents(self) -> Sequence[str]:
2411
+ def continents(self) -> Sequence[_builtins.str]:
2412
2412
  """
2413
2413
  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
2414
2414
  """
2415
2415
  return pulumi.get(self, "continents")
2416
2416
 
2417
- @property
2417
+ @_builtins.property
2418
2418
  @pulumi.getter
2419
- def countries(self) -> Sequence[str]:
2419
+ def countries(self) -> Sequence[_builtins.str]:
2420
2420
  """
2421
2421
  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
2422
2422
  """
2423
2423
  return pulumi.get(self, "countries")
2424
2424
 
2425
- @property
2425
+ @_builtins.property
2426
2426
  @pulumi.getter
2427
- def data(self) -> str:
2427
+ def data(self) -> _builtins.str:
2428
2428
  """
2429
2429
  The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2430
2430
  """
@@ -2434,17 +2434,17 @@ class GetRecordGeoIpMatchResult(dict):
2434
2434
  @pulumi.output_type
2435
2435
  class GetRecordHttpServiceResult(dict):
2436
2436
  def __init__(__self__, *,
2437
- ips: Sequence[str],
2438
- must_contain: str,
2439
- strategy: str,
2440
- url: str,
2441
- user_agent: str):
2442
- """
2443
- :param Sequence[str] ips: IPs to check
2444
- :param str must_contain: Text to search
2445
- :param str strategy: Strategy to return an IP from the IPs list
2446
- :param str url: URL to match the must_contain text to validate an IP
2447
- :param str user_agent: User-agent used when checking the URL
2437
+ ips: Sequence[_builtins.str],
2438
+ must_contain: _builtins.str,
2439
+ strategy: _builtins.str,
2440
+ url: _builtins.str,
2441
+ user_agent: _builtins.str):
2442
+ """
2443
+ :param Sequence[_builtins.str] ips: IPs to check
2444
+ :param _builtins.str must_contain: Text to search
2445
+ :param _builtins.str strategy: Strategy to return an IP from the IPs list
2446
+ :param _builtins.str url: URL to match the must_contain text to validate an IP
2447
+ :param _builtins.str user_agent: User-agent used when checking the URL
2448
2448
  """
2449
2449
  pulumi.set(__self__, "ips", ips)
2450
2450
  pulumi.set(__self__, "must_contain", must_contain)
@@ -2452,41 +2452,41 @@ class GetRecordHttpServiceResult(dict):
2452
2452
  pulumi.set(__self__, "url", url)
2453
2453
  pulumi.set(__self__, "user_agent", user_agent)
2454
2454
 
2455
- @property
2455
+ @_builtins.property
2456
2456
  @pulumi.getter
2457
- def ips(self) -> Sequence[str]:
2457
+ def ips(self) -> Sequence[_builtins.str]:
2458
2458
  """
2459
2459
  IPs to check
2460
2460
  """
2461
2461
  return pulumi.get(self, "ips")
2462
2462
 
2463
- @property
2463
+ @_builtins.property
2464
2464
  @pulumi.getter(name="mustContain")
2465
- def must_contain(self) -> str:
2465
+ def must_contain(self) -> _builtins.str:
2466
2466
  """
2467
2467
  Text to search
2468
2468
  """
2469
2469
  return pulumi.get(self, "must_contain")
2470
2470
 
2471
- @property
2471
+ @_builtins.property
2472
2472
  @pulumi.getter
2473
- def strategy(self) -> str:
2473
+ def strategy(self) -> _builtins.str:
2474
2474
  """
2475
2475
  Strategy to return an IP from the IPs list
2476
2476
  """
2477
2477
  return pulumi.get(self, "strategy")
2478
2478
 
2479
- @property
2479
+ @_builtins.property
2480
2480
  @pulumi.getter
2481
- def url(self) -> str:
2481
+ def url(self) -> _builtins.str:
2482
2482
  """
2483
2483
  URL to match the must_contain text to validate an IP
2484
2484
  """
2485
2485
  return pulumi.get(self, "url")
2486
2486
 
2487
- @property
2487
+ @_builtins.property
2488
2488
  @pulumi.getter(name="userAgent")
2489
- def user_agent(self) -> str:
2489
+ def user_agent(self) -> _builtins.str:
2490
2490
  """
2491
2491
  User-agent used when checking the URL
2492
2492
  """
@@ -2496,26 +2496,26 @@ class GetRecordHttpServiceResult(dict):
2496
2496
  @pulumi.output_type
2497
2497
  class GetRecordViewResult(dict):
2498
2498
  def __init__(__self__, *,
2499
- data: str,
2500
- subnet: str):
2499
+ data: _builtins.str,
2500
+ subnet: _builtins.str):
2501
2501
  """
2502
- :param str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2503
- :param str subnet: The subnet of the view
2502
+ :param _builtins.str data: The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2503
+ :param _builtins.str subnet: The subnet of the view
2504
2504
  """
2505
2505
  pulumi.set(__self__, "data", data)
2506
2506
  pulumi.set(__self__, "subnet", subnet)
2507
2507
 
2508
- @property
2508
+ @_builtins.property
2509
2509
  @pulumi.getter
2510
- def data(self) -> str:
2510
+ def data(self) -> _builtins.str:
2511
2511
  """
2512
2512
  The content of the record (e.g., an IPv4 address for an `A` record or a string for a `TXT` record). Cannot be used with `record_id`.
2513
2513
  """
2514
2514
  return pulumi.get(self, "data")
2515
2515
 
2516
- @property
2516
+ @_builtins.property
2517
2517
  @pulumi.getter
2518
- def subnet(self) -> str:
2518
+ def subnet(self) -> _builtins.str:
2519
2519
  """
2520
2520
  The subnet of the view
2521
2521
  """
@@ -2525,26 +2525,26 @@ class GetRecordViewResult(dict):
2525
2525
  @pulumi.output_type
2526
2526
  class GetRecordWeightedResult(dict):
2527
2527
  def __init__(__self__, *,
2528
- ip: str,
2529
- weight: int):
2528
+ ip: _builtins.str,
2529
+ weight: _builtins.int):
2530
2530
  """
2531
- :param str ip: The weighted IP
2532
- :param int weight: The weight of the IP
2531
+ :param _builtins.str ip: The weighted IP
2532
+ :param _builtins.int weight: The weight of the IP
2533
2533
  """
2534
2534
  pulumi.set(__self__, "ip", ip)
2535
2535
  pulumi.set(__self__, "weight", weight)
2536
2536
 
2537
- @property
2537
+ @_builtins.property
2538
2538
  @pulumi.getter
2539
- def ip(self) -> str:
2539
+ def ip(self) -> _builtins.str:
2540
2540
  """
2541
2541
  The weighted IP
2542
2542
  """
2543
2543
  return pulumi.get(self, "ip")
2544
2544
 
2545
- @property
2545
+ @_builtins.property
2546
2546
  @pulumi.getter
2547
- def weight(self) -> int:
2547
+ def weight(self) -> _builtins.int:
2548
2548
  """
2549
2549
  The weight of the IP
2550
2550
  """