pulumiverse-scaleway 1.35.0a1759392423__py3-none-any.whl → 1.35.0a1760445454__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (499) hide show
  1. pulumiverse_scaleway/__init__.py +1 -1
  2. pulumiverse_scaleway/_inputs.py +2711 -2712
  3. pulumiverse_scaleway/account/__init__.py +1 -1
  4. pulumiverse_scaleway/account/get_availability_zones.py +11 -12
  5. pulumiverse_scaleway/account/get_project.py +27 -28
  6. pulumiverse_scaleway/account/get_projects.py +18 -19
  7. pulumiverse_scaleway/account/get_ssh_key.py +33 -34
  8. pulumiverse_scaleway/account/outputs.py +25 -26
  9. pulumiverse_scaleway/account/project.py +70 -71
  10. pulumiverse_scaleway/account/ssh_key.py +105 -106
  11. pulumiverse_scaleway/account_project.py +70 -71
  12. pulumiverse_scaleway/account_ssh_key.py +105 -106
  13. pulumiverse_scaleway/apple_silicon_server.py +216 -217
  14. pulumiverse_scaleway/applesilicon/__init__.py +1 -1
  15. pulumiverse_scaleway/applesilicon/_inputs.py +50 -51
  16. pulumiverse_scaleway/applesilicon/outputs.py +34 -35
  17. pulumiverse_scaleway/applesilicon/server.py +216 -217
  18. pulumiverse_scaleway/autoscaling/__init__.py +1 -1
  19. pulumiverse_scaleway/autoscaling/_inputs.py +130 -131
  20. pulumiverse_scaleway/autoscaling/instance_group.py +127 -128
  21. pulumiverse_scaleway/autoscaling/instance_policy.py +140 -141
  22. pulumiverse_scaleway/autoscaling/instance_template.py +235 -236
  23. pulumiverse_scaleway/autoscaling/outputs.py +88 -89
  24. pulumiverse_scaleway/baremetal_server.py +350 -351
  25. pulumiverse_scaleway/billing/__init__.py +1 -1
  26. pulumiverse_scaleway/billing/get_consumptions.py +14 -15
  27. pulumiverse_scaleway/billing/get_invoices.py +24 -25
  28. pulumiverse_scaleway/billing/outputs.py +95 -96
  29. pulumiverse_scaleway/block/__init__.py +1 -1
  30. pulumiverse_scaleway/block/_inputs.py +25 -26
  31. pulumiverse_scaleway/block/get_snapshot.py +37 -38
  32. pulumiverse_scaleway/block/get_volume.py +37 -38
  33. pulumiverse_scaleway/block/outputs.py +33 -34
  34. pulumiverse_scaleway/block/snapshot.py +92 -93
  35. pulumiverse_scaleway/block/volume.py +137 -138
  36. pulumiverse_scaleway/block_snapshot.py +92 -93
  37. pulumiverse_scaleway/block_volume.py +137 -138
  38. pulumiverse_scaleway/cockpit.py +48 -49
  39. pulumiverse_scaleway/cockpit_alert_manager.py +64 -65
  40. pulumiverse_scaleway/cockpit_grafana_user.py +70 -71
  41. pulumiverse_scaleway/cockpit_source.py +140 -141
  42. pulumiverse_scaleway/cockpit_token.py +82 -83
  43. pulumiverse_scaleway/config/__init__.py +1 -1
  44. pulumiverse_scaleway/config/__init__.pyi +1 -2
  45. pulumiverse_scaleway/config/vars.py +9 -10
  46. pulumiverse_scaleway/container.py +476 -477
  47. pulumiverse_scaleway/container_cron.py +95 -96
  48. pulumiverse_scaleway/container_domain.py +61 -62
  49. pulumiverse_scaleway/container_namespace.py +181 -182
  50. pulumiverse_scaleway/container_token.py +95 -96
  51. pulumiverse_scaleway/container_trigger.py +75 -76
  52. pulumiverse_scaleway/containers/__init__.py +1 -1
  53. pulumiverse_scaleway/containers/_inputs.py +86 -87
  54. pulumiverse_scaleway/containers/container.py +476 -477
  55. pulumiverse_scaleway/containers/cron.py +95 -96
  56. pulumiverse_scaleway/containers/domain.py +61 -62
  57. pulumiverse_scaleway/containers/get_container.py +79 -80
  58. pulumiverse_scaleway/containers/get_namespace.py +45 -46
  59. pulumiverse_scaleway/containers/namespace.py +181 -182
  60. pulumiverse_scaleway/containers/outputs.py +83 -84
  61. pulumiverse_scaleway/containers/token.py +95 -96
  62. pulumiverse_scaleway/containers/trigger.py +75 -76
  63. pulumiverse_scaleway/database.py +79 -80
  64. pulumiverse_scaleway/database_acl.py +38 -39
  65. pulumiverse_scaleway/database_backup.py +122 -123
  66. pulumiverse_scaleway/database_instance.py +374 -375
  67. pulumiverse_scaleway/database_privilege.py +86 -87
  68. pulumiverse_scaleway/database_read_replica.py +58 -59
  69. pulumiverse_scaleway/database_user.py +86 -87
  70. pulumiverse_scaleway/databases/__init__.py +1 -1
  71. pulumiverse_scaleway/databases/_inputs.py +227 -228
  72. pulumiverse_scaleway/databases/acl.py +38 -39
  73. pulumiverse_scaleway/databases/database.py +79 -80
  74. pulumiverse_scaleway/databases/database_backup.py +122 -123
  75. pulumiverse_scaleway/databases/get_acl.py +16 -17
  76. pulumiverse_scaleway/databases/get_database.py +25 -26
  77. pulumiverse_scaleway/databases/get_database_backup.py +45 -46
  78. pulumiverse_scaleway/databases/get_instance.py +72 -73
  79. pulumiverse_scaleway/databases/get_privilege.py +29 -30
  80. pulumiverse_scaleway/databases/instance.py +374 -375
  81. pulumiverse_scaleway/databases/outputs.py +247 -248
  82. pulumiverse_scaleway/databases/privilege.py +86 -87
  83. pulumiverse_scaleway/databases/read_replica.py +58 -59
  84. pulumiverse_scaleway/databases/serverless_database.py +95 -96
  85. pulumiverse_scaleway/databases/snapshot.py +123 -124
  86. pulumiverse_scaleway/databases/user.py +86 -87
  87. pulumiverse_scaleway/domain/__init__.py +1 -1
  88. pulumiverse_scaleway/domain/_inputs.py +660 -661
  89. pulumiverse_scaleway/domain/get_record.py +51 -52
  90. pulumiverse_scaleway/domain/get_zone.py +33 -34
  91. pulumiverse_scaleway/domain/outputs.py +500 -501
  92. pulumiverse_scaleway/domain/record.py +150 -151
  93. pulumiverse_scaleway/domain/registration.py +121 -122
  94. pulumiverse_scaleway/domain/zone.py +106 -107
  95. pulumiverse_scaleway/domain_record.py +150 -151
  96. pulumiverse_scaleway/domain_zone.py +106 -107
  97. pulumiverse_scaleway/edge_services_backend_stage.py +59 -60
  98. pulumiverse_scaleway/edge_services_cache_stage.py +158 -159
  99. pulumiverse_scaleway/edge_services_dns_stage.py +130 -131
  100. pulumiverse_scaleway/edge_services_head_stage.py +35 -36
  101. pulumiverse_scaleway/edge_services_pipeline.py +79 -80
  102. pulumiverse_scaleway/edge_services_plan.py +35 -36
  103. pulumiverse_scaleway/edge_services_route_stage.py +73 -74
  104. pulumiverse_scaleway/edge_services_tls_stage.py +150 -151
  105. pulumiverse_scaleway/edge_services_waf_stage.py +104 -105
  106. pulumiverse_scaleway/elasticmetal/__init__.py +1 -1
  107. pulumiverse_scaleway/elasticmetal/_inputs.py +146 -147
  108. pulumiverse_scaleway/elasticmetal/get_ip.py +41 -42
  109. pulumiverse_scaleway/elasticmetal/get_ips.py +30 -31
  110. pulumiverse_scaleway/elasticmetal/get_offer.py +40 -41
  111. pulumiverse_scaleway/elasticmetal/get_option.py +23 -24
  112. pulumiverse_scaleway/elasticmetal/get_os.py +27 -28
  113. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +35 -36
  114. pulumiverse_scaleway/elasticmetal/get_server.py +69 -70
  115. pulumiverse_scaleway/elasticmetal/ip.py +165 -166
  116. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +105 -106
  117. pulumiverse_scaleway/elasticmetal/outputs.py +312 -312
  118. pulumiverse_scaleway/elasticmetal/server.py +350 -351
  119. pulumiverse_scaleway/file_filesystem.py +131 -132
  120. pulumiverse_scaleway/flexible_ip.py +165 -166
  121. pulumiverse_scaleway/flexible_ip_mac_address.py +105 -106
  122. pulumiverse_scaleway/function.py +381 -382
  123. pulumiverse_scaleway/function_cron.py +95 -96
  124. pulumiverse_scaleway/function_domain.py +61 -62
  125. pulumiverse_scaleway/function_namespace.py +164 -165
  126. pulumiverse_scaleway/function_token.py +95 -96
  127. pulumiverse_scaleway/function_trigger.py +75 -76
  128. pulumiverse_scaleway/functions/__init__.py +1 -1
  129. pulumiverse_scaleway/functions/_inputs.py +49 -50
  130. pulumiverse_scaleway/functions/cron.py +95 -96
  131. pulumiverse_scaleway/functions/domain.py +61 -62
  132. pulumiverse_scaleway/functions/function.py +381 -382
  133. pulumiverse_scaleway/functions/get_function.py +73 -74
  134. pulumiverse_scaleway/functions/get_namespace.py +43 -44
  135. pulumiverse_scaleway/functions/namespace.py +164 -165
  136. pulumiverse_scaleway/functions/outputs.py +33 -34
  137. pulumiverse_scaleway/functions/token.py +95 -96
  138. pulumiverse_scaleway/functions/trigger.py +75 -76
  139. pulumiverse_scaleway/get_account_project.py +27 -28
  140. pulumiverse_scaleway/get_account_ssh_key.py +33 -34
  141. pulumiverse_scaleway/get_availability_zones.py +11 -12
  142. pulumiverse_scaleway/get_baremetal_offer.py +40 -41
  143. pulumiverse_scaleway/get_baremetal_option.py +23 -24
  144. pulumiverse_scaleway/get_baremetal_os.py +27 -28
  145. pulumiverse_scaleway/get_baremetal_server.py +69 -70
  146. pulumiverse_scaleway/get_billing_consumptions.py +14 -15
  147. pulumiverse_scaleway/get_billing_invoices.py +24 -25
  148. pulumiverse_scaleway/get_block_snapshot.py +37 -38
  149. pulumiverse_scaleway/get_block_volume.py +37 -38
  150. pulumiverse_scaleway/get_cockpit.py +15 -16
  151. pulumiverse_scaleway/get_cockpit_source.py +49 -50
  152. pulumiverse_scaleway/get_config.py +23 -24
  153. pulumiverse_scaleway/get_container.py +79 -80
  154. pulumiverse_scaleway/get_container_namespace.py +45 -46
  155. pulumiverse_scaleway/get_database.py +25 -26
  156. pulumiverse_scaleway/get_database_acl.py +16 -17
  157. pulumiverse_scaleway/get_database_backup.py +45 -46
  158. pulumiverse_scaleway/get_database_instance.py +72 -73
  159. pulumiverse_scaleway/get_database_privilege.py +29 -30
  160. pulumiverse_scaleway/get_domain_record.py +51 -52
  161. pulumiverse_scaleway/get_domain_zone.py +33 -34
  162. pulumiverse_scaleway/get_flexible_ip.py +41 -42
  163. pulumiverse_scaleway/get_flexible_ips.py +30 -31
  164. pulumiverse_scaleway/get_function.py +73 -74
  165. pulumiverse_scaleway/get_function_namespace.py +43 -44
  166. pulumiverse_scaleway/get_iam_api_key.py +27 -28
  167. pulumiverse_scaleway/get_iam_application.py +31 -32
  168. pulumiverse_scaleway/get_iam_group.py +35 -36
  169. pulumiverse_scaleway/get_iam_ssh_key.py +33 -34
  170. pulumiverse_scaleway/get_iam_user.py +27 -28
  171. pulumiverse_scaleway/get_instance_image.py +57 -58
  172. pulumiverse_scaleway/get_instance_ip.py +29 -30
  173. pulumiverse_scaleway/get_instance_placement_group.py +37 -38
  174. pulumiverse_scaleway/get_instance_private_nic.py +40 -41
  175. pulumiverse_scaleway/get_instance_security_group.py +45 -46
  176. pulumiverse_scaleway/get_instance_server.py +81 -82
  177. pulumiverse_scaleway/get_instance_servers.py +30 -31
  178. pulumiverse_scaleway/get_instance_snapshot.py +40 -41
  179. pulumiverse_scaleway/get_instance_volume.py +41 -42
  180. pulumiverse_scaleway/get_iot_device.py +45 -46
  181. pulumiverse_scaleway/get_iot_hub.py +59 -60
  182. pulumiverse_scaleway/get_ipam_ip.py +64 -65
  183. pulumiverse_scaleway/get_ipam_ips.py +55 -56
  184. pulumiverse_scaleway/get_k8s_version.py +21 -22
  185. pulumiverse_scaleway/get_kubernetes_cluster.py +63 -64
  186. pulumiverse_scaleway/get_kubernetes_node_pool.py +75 -76
  187. pulumiverse_scaleway/get_lb_acls.py +28 -29
  188. pulumiverse_scaleway/get_lb_backend.py +74 -75
  189. pulumiverse_scaleway/get_lb_backends.py +28 -29
  190. pulumiverse_scaleway/get_lb_frontend.py +44 -45
  191. pulumiverse_scaleway/get_lb_frontends.py +28 -29
  192. pulumiverse_scaleway/get_lb_ips.py +36 -37
  193. pulumiverse_scaleway/get_lb_route.py +25 -26
  194. pulumiverse_scaleway/get_lb_routes.py +22 -23
  195. pulumiverse_scaleway/get_lbs.py +30 -31
  196. pulumiverse_scaleway/get_loadbalancer.py +55 -56
  197. pulumiverse_scaleway/get_loadbalancer_certificate.py +35 -36
  198. pulumiverse_scaleway/get_loadbalancer_ip.py +39 -40
  199. pulumiverse_scaleway/get_marketplace_image.py +27 -28
  200. pulumiverse_scaleway/get_mnq_sns.py +17 -18
  201. pulumiverse_scaleway/get_mnq_sqs.py +17 -18
  202. pulumiverse_scaleway/get_mongo_db_instance.py +62 -63
  203. pulumiverse_scaleway/get_object_bucket.py +34 -35
  204. pulumiverse_scaleway/get_object_bucket_policy.py +21 -22
  205. pulumiverse_scaleway/get_redis_cluster.py +53 -54
  206. pulumiverse_scaleway/get_registry_image.py +47 -48
  207. pulumiverse_scaleway/get_registry_image_tag.py +43 -44
  208. pulumiverse_scaleway/get_registry_namespace.py +35 -36
  209. pulumiverse_scaleway/get_secret.py +57 -58
  210. pulumiverse_scaleway/get_secret_version.py +45 -46
  211. pulumiverse_scaleway/get_tem_domain.py +102 -70
  212. pulumiverse_scaleway/get_vpc.py +47 -48
  213. pulumiverse_scaleway/get_vpc_gateway_network.py +43 -44
  214. pulumiverse_scaleway/get_vpc_private_network.py +47 -48
  215. pulumiverse_scaleway/get_vpc_public_gateway.py +55 -56
  216. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +43 -44
  217. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +43 -44
  218. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +23 -24
  219. pulumiverse_scaleway/get_vpc_public_pat_rule.py +31 -32
  220. pulumiverse_scaleway/get_vpc_routes.py +46 -47
  221. pulumiverse_scaleway/get_vpcs.py +30 -31
  222. pulumiverse_scaleway/get_web_host_offer.py +33 -34
  223. pulumiverse_scaleway/get_webhosting.py +57 -58
  224. pulumiverse_scaleway/hosting/__init__.py +1 -1
  225. pulumiverse_scaleway/hosting/_inputs.py +80 -81
  226. pulumiverse_scaleway/hosting/get_hosting.py +57 -58
  227. pulumiverse_scaleway/hosting/get_offer.py +33 -34
  228. pulumiverse_scaleway/hosting/hosting.py +209 -210
  229. pulumiverse_scaleway/hosting/outputs.py +211 -212
  230. pulumiverse_scaleway/iam/__init__.py +1 -1
  231. pulumiverse_scaleway/iam/_inputs.py +25 -26
  232. pulumiverse_scaleway/iam/api_key.py +140 -141
  233. pulumiverse_scaleway/iam/application.py +96 -97
  234. pulumiverse_scaleway/iam/get_api_key.py +27 -28
  235. pulumiverse_scaleway/iam/get_application.py +31 -32
  236. pulumiverse_scaleway/iam/get_group.py +35 -36
  237. pulumiverse_scaleway/iam/get_ssh_key.py +33 -34
  238. pulumiverse_scaleway/iam/get_user.py +27 -28
  239. pulumiverse_scaleway/iam/group.py +138 -139
  240. pulumiverse_scaleway/iam/group_membership.py +52 -53
  241. pulumiverse_scaleway/iam/outputs.py +17 -18
  242. pulumiverse_scaleway/iam/policy.py +167 -168
  243. pulumiverse_scaleway/iam/ssh_key.py +105 -106
  244. pulumiverse_scaleway/iam/user.py +269 -270
  245. pulumiverse_scaleway/iam_api_key.py +140 -141
  246. pulumiverse_scaleway/iam_application.py +96 -97
  247. pulumiverse_scaleway/iam_group.py +138 -139
  248. pulumiverse_scaleway/iam_group_membership.py +52 -53
  249. pulumiverse_scaleway/iam_policy.py +167 -168
  250. pulumiverse_scaleway/iam_ssh_key.py +105 -106
  251. pulumiverse_scaleway/iam_user.py +269 -270
  252. pulumiverse_scaleway/inference/__init__.py +1 -1
  253. pulumiverse_scaleway/inference/_inputs.py +86 -87
  254. pulumiverse_scaleway/inference/deployment.py +225 -226
  255. pulumiverse_scaleway/inference/get_model.py +42 -43
  256. pulumiverse_scaleway/inference/model.py +160 -161
  257. pulumiverse_scaleway/inference/outputs.py +75 -76
  258. pulumiverse_scaleway/inference_deployment.py +225 -226
  259. pulumiverse_scaleway/instance/__init__.py +2 -1
  260. pulumiverse_scaleway/instance/_inputs.py +381 -382
  261. pulumiverse_scaleway/instance/get_image.py +57 -58
  262. pulumiverse_scaleway/instance/get_ip.py +29 -30
  263. pulumiverse_scaleway/instance/get_placement_group.py +37 -38
  264. pulumiverse_scaleway/instance/get_private_nic.py +40 -41
  265. pulumiverse_scaleway/instance/get_security_group.py +45 -46
  266. pulumiverse_scaleway/instance/get_server.py +81 -82
  267. pulumiverse_scaleway/instance/get_server_type.py +271 -0
  268. pulumiverse_scaleway/instance/get_servers.py +30 -31
  269. pulumiverse_scaleway/instance/get_snapshot.py +40 -41
  270. pulumiverse_scaleway/instance/get_volume.py +41 -42
  271. pulumiverse_scaleway/instance/image.py +184 -185
  272. pulumiverse_scaleway/instance/ip.py +114 -115
  273. pulumiverse_scaleway/instance/ip_reverse_dns.py +52 -53
  274. pulumiverse_scaleway/instance/outputs.py +660 -515
  275. pulumiverse_scaleway/instance/placement_group.py +121 -122
  276. pulumiverse_scaleway/instance/private_nic.py +115 -116
  277. pulumiverse_scaleway/instance/security_group.py +186 -187
  278. pulumiverse_scaleway/instance/security_group_rules.py +24 -25
  279. pulumiverse_scaleway/instance/server.py +433 -434
  280. pulumiverse_scaleway/instance/snapshot.py +133 -162
  281. pulumiverse_scaleway/instance/user_data.py +69 -70
  282. pulumiverse_scaleway/instance/volume.py +155 -177
  283. pulumiverse_scaleway/instance_image.py +184 -185
  284. pulumiverse_scaleway/instance_ip.py +114 -115
  285. pulumiverse_scaleway/instance_ip_reverse_dns.py +52 -53
  286. pulumiverse_scaleway/instance_placement_group.py +121 -122
  287. pulumiverse_scaleway/instance_private_nic.py +115 -116
  288. pulumiverse_scaleway/instance_security_group.py +186 -187
  289. pulumiverse_scaleway/instance_security_group_rules.py +24 -25
  290. pulumiverse_scaleway/instance_server.py +433 -434
  291. pulumiverse_scaleway/instance_snapshot.py +133 -162
  292. pulumiverse_scaleway/instance_user_data.py +69 -70
  293. pulumiverse_scaleway/instance_volume.py +155 -177
  294. pulumiverse_scaleway/iot/__init__.py +1 -1
  295. pulumiverse_scaleway/iot/_inputs.py +118 -119
  296. pulumiverse_scaleway/iot/device.py +154 -155
  297. pulumiverse_scaleway/iot/get_device.py +45 -46
  298. pulumiverse_scaleway/iot/get_hub.py +59 -60
  299. pulumiverse_scaleway/iot/hub.py +252 -253
  300. pulumiverse_scaleway/iot/network.py +113 -114
  301. pulumiverse_scaleway/iot/outputs.py +106 -107
  302. pulumiverse_scaleway/iot/route.py +87 -88
  303. pulumiverse_scaleway/iot_device.py +154 -155
  304. pulumiverse_scaleway/iot_hub.py +252 -253
  305. pulumiverse_scaleway/iot_network.py +113 -114
  306. pulumiverse_scaleway/iot_route.py +87 -88
  307. pulumiverse_scaleway/ipam/__init__.py +1 -1
  308. pulumiverse_scaleway/ipam/_inputs.py +103 -104
  309. pulumiverse_scaleway/ipam/get_ip.py +64 -65
  310. pulumiverse_scaleway/ipam/get_ips.py +55 -56
  311. pulumiverse_scaleway/ipam/ip.py +123 -124
  312. pulumiverse_scaleway/ipam/ip_reverse_dns.py +69 -70
  313. pulumiverse_scaleway/ipam/outputs.py +119 -120
  314. pulumiverse_scaleway/ipam_ip.py +123 -124
  315. pulumiverse_scaleway/ipam_ip_reverse_dns.py +69 -70
  316. pulumiverse_scaleway/job/__init__.py +1 -1
  317. pulumiverse_scaleway/job/_inputs.py +44 -45
  318. pulumiverse_scaleway/job/definition.py +177 -178
  319. pulumiverse_scaleway/job/outputs.py +30 -31
  320. pulumiverse_scaleway/job_definition.py +177 -178
  321. pulumiverse_scaleway/key_manager_key.py +203 -204
  322. pulumiverse_scaleway/kubernetes/__init__.py +1 -1
  323. pulumiverse_scaleway/kubernetes/_inputs.py +227 -228
  324. pulumiverse_scaleway/kubernetes/acl.py +55 -56
  325. pulumiverse_scaleway/kubernetes/cluster.py +296 -297
  326. pulumiverse_scaleway/kubernetes/get_cluster.py +63 -64
  327. pulumiverse_scaleway/kubernetes/get_pool.py +75 -76
  328. pulumiverse_scaleway/kubernetes/get_version.py +21 -22
  329. pulumiverse_scaleway/kubernetes/outputs.py +288 -289
  330. pulumiverse_scaleway/kubernetes/pool.py +374 -375
  331. pulumiverse_scaleway/kubernetes_cluster.py +296 -297
  332. pulumiverse_scaleway/kubernetes_node_pool.py +374 -375
  333. pulumiverse_scaleway/loadbalancer.py +246 -247
  334. pulumiverse_scaleway/loadbalancer_acl.py +93 -94
  335. pulumiverse_scaleway/loadbalancer_backend.py +493 -487
  336. pulumiverse_scaleway/loadbalancer_certificate.py +95 -96
  337. pulumiverse_scaleway/loadbalancer_frontend.py +201 -202
  338. pulumiverse_scaleway/loadbalancer_ip.py +122 -123
  339. pulumiverse_scaleway/loadbalancer_route.py +121 -122
  340. pulumiverse_scaleway/loadbalancers/__init__.py +1 -1
  341. pulumiverse_scaleway/loadbalancers/_inputs.py +273 -274
  342. pulumiverse_scaleway/loadbalancers/acl.py +93 -94
  343. pulumiverse_scaleway/loadbalancers/backend.py +493 -487
  344. pulumiverse_scaleway/loadbalancers/certificate.py +95 -96
  345. pulumiverse_scaleway/loadbalancers/frontend.py +201 -202
  346. pulumiverse_scaleway/loadbalancers/get_acls.py +28 -29
  347. pulumiverse_scaleway/loadbalancers/get_backend.py +74 -75
  348. pulumiverse_scaleway/loadbalancers/get_backends.py +28 -29
  349. pulumiverse_scaleway/loadbalancers/get_certificate.py +35 -36
  350. pulumiverse_scaleway/loadbalancers/get_frontend.py +44 -45
  351. pulumiverse_scaleway/loadbalancers/get_frontends.py +28 -29
  352. pulumiverse_scaleway/loadbalancers/get_ip.py +39 -40
  353. pulumiverse_scaleway/loadbalancers/get_ips.py +36 -37
  354. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +55 -56
  355. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +30 -31
  356. pulumiverse_scaleway/loadbalancers/get_route.py +25 -26
  357. pulumiverse_scaleway/loadbalancers/get_routes.py +22 -23
  358. pulumiverse_scaleway/loadbalancers/ip.py +122 -123
  359. pulumiverse_scaleway/loadbalancers/load_balancer.py +246 -247
  360. pulumiverse_scaleway/loadbalancers/outputs.py +748 -745
  361. pulumiverse_scaleway/loadbalancers/route.py +121 -122
  362. pulumiverse_scaleway/mnq/__init__.py +1 -1
  363. pulumiverse_scaleway/mnq/_inputs.py +49 -50
  364. pulumiverse_scaleway/mnq/get_sns.py +17 -18
  365. pulumiverse_scaleway/mnq/get_sqs.py +17 -18
  366. pulumiverse_scaleway/mnq/nats_account.py +61 -62
  367. pulumiverse_scaleway/mnq/nats_credentials.py +61 -62
  368. pulumiverse_scaleway/mnq/outputs.py +33 -34
  369. pulumiverse_scaleway/mnq/sns.py +44 -45
  370. pulumiverse_scaleway/mnq/sns_credentials.py +73 -74
  371. pulumiverse_scaleway/mnq/sns_topic.py +172 -173
  372. pulumiverse_scaleway/mnq/sns_topic_subscription.py +180 -181
  373. pulumiverse_scaleway/mnq/sqs.py +44 -45
  374. pulumiverse_scaleway/mnq/sqs_credentials.py +73 -74
  375. pulumiverse_scaleway/mnq/sqs_queue.py +243 -244
  376. pulumiverse_scaleway/mnq_nats_account.py +61 -62
  377. pulumiverse_scaleway/mnq_nats_credentials.py +61 -62
  378. pulumiverse_scaleway/mnq_sns.py +44 -45
  379. pulumiverse_scaleway/mnq_sns_credentials.py +73 -74
  380. pulumiverse_scaleway/mnq_sns_topic.py +172 -173
  381. pulumiverse_scaleway/mnq_sns_topic_subscription.py +180 -181
  382. pulumiverse_scaleway/mnq_sqs.py +44 -45
  383. pulumiverse_scaleway/mnq_sqs_credentials.py +73 -74
  384. pulumiverse_scaleway/mnq_sqs_queue.py +243 -244
  385. pulumiverse_scaleway/mongo_db_instance.py +309 -310
  386. pulumiverse_scaleway/mongo_db_snapshot.py +123 -124
  387. pulumiverse_scaleway/mongodb/__init__.py +1 -1
  388. pulumiverse_scaleway/mongodb/_inputs.py +80 -81
  389. pulumiverse_scaleway/mongodb/get_instance.py +62 -63
  390. pulumiverse_scaleway/mongodb/instance.py +309 -310
  391. pulumiverse_scaleway/mongodb/outputs.py +95 -96
  392. pulumiverse_scaleway/mongodb/snapshot.py +123 -124
  393. pulumiverse_scaleway/mongodb/user.py +72 -73
  394. pulumiverse_scaleway/network/__init__.py +1 -1
  395. pulumiverse_scaleway/network/_inputs.py +166 -167
  396. pulumiverse_scaleway/network/acl.py +72 -73
  397. pulumiverse_scaleway/network/gateway_network.py +179 -180
  398. pulumiverse_scaleway/network/get_gateway_network.py +43 -44
  399. pulumiverse_scaleway/network/get_private_network.py +47 -48
  400. pulumiverse_scaleway/network/get_public_gateway.py +55 -56
  401. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +43 -44
  402. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +43 -44
  403. pulumiverse_scaleway/network/get_public_gateway_ip.py +23 -24
  404. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +31 -32
  405. pulumiverse_scaleway/network/get_routes.py +46 -47
  406. pulumiverse_scaleway/network/get_vpc.py +47 -48
  407. pulumiverse_scaleway/network/get_vpcs.py +30 -31
  408. pulumiverse_scaleway/network/outputs.py +288 -287
  409. pulumiverse_scaleway/network/private_network.py +170 -171
  410. pulumiverse_scaleway/network/public_gateway.py +259 -260
  411. pulumiverse_scaleway/network/public_gateway_dhcp.py +283 -284
  412. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +105 -106
  413. pulumiverse_scaleway/network/public_gateway_ip.py +105 -106
  414. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +52 -53
  415. pulumiverse_scaleway/network/public_gateway_pat_rule.py +130 -131
  416. pulumiverse_scaleway/network/route.py +138 -139
  417. pulumiverse_scaleway/network/vpc.py +139 -140
  418. pulumiverse_scaleway/object/__init__.py +1 -1
  419. pulumiverse_scaleway/object/_inputs.py +164 -165
  420. pulumiverse_scaleway/object/bucket.py +147 -148
  421. pulumiverse_scaleway/object/bucket_acl.py +89 -90
  422. pulumiverse_scaleway/object/bucket_lock_configuration.py +55 -56
  423. pulumiverse_scaleway/object/bucket_policy.py +69 -70
  424. pulumiverse_scaleway/object/bucket_website_configuration.py +76 -77
  425. pulumiverse_scaleway/object/get_bucket.py +34 -35
  426. pulumiverse_scaleway/object/get_bucket_policy.py +21 -22
  427. pulumiverse_scaleway/object/item.py +239 -240
  428. pulumiverse_scaleway/object/outputs.py +171 -172
  429. pulumiverse_scaleway/object_bucket.py +147 -148
  430. pulumiverse_scaleway/object_bucket_acl.py +89 -90
  431. pulumiverse_scaleway/object_bucket_lock_configuration.py +55 -56
  432. pulumiverse_scaleway/object_bucket_policy.py +69 -70
  433. pulumiverse_scaleway/object_bucket_website_configuration.py +76 -77
  434. pulumiverse_scaleway/object_item.py +239 -240
  435. pulumiverse_scaleway/observability/__init__.py +1 -1
  436. pulumiverse_scaleway/observability/_inputs.py +105 -106
  437. pulumiverse_scaleway/observability/alert_manager.py +64 -65
  438. pulumiverse_scaleway/observability/cockpit.py +48 -49
  439. pulumiverse_scaleway/observability/get_instance.py +15 -16
  440. pulumiverse_scaleway/observability/get_source.py +49 -50
  441. pulumiverse_scaleway/observability/get_sources.py +46 -47
  442. pulumiverse_scaleway/observability/grafana_user.py +70 -71
  443. pulumiverse_scaleway/observability/outputs.py +149 -150
  444. pulumiverse_scaleway/observability/source.py +140 -141
  445. pulumiverse_scaleway/observability/token.py +82 -83
  446. pulumiverse_scaleway/outputs.py +3886 -3879
  447. pulumiverse_scaleway/provider.py +82 -83
  448. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  449. pulumiverse_scaleway/rdb_snapshot.py +123 -124
  450. pulumiverse_scaleway/redis/__init__.py +1 -1
  451. pulumiverse_scaleway/redis/_inputs.py +86 -87
  452. pulumiverse_scaleway/redis/cluster.py +227 -228
  453. pulumiverse_scaleway/redis/get_cluster.py +53 -54
  454. pulumiverse_scaleway/redis/outputs.py +115 -116
  455. pulumiverse_scaleway/redis_cluster.py +227 -228
  456. pulumiverse_scaleway/registry/__init__.py +1 -1
  457. pulumiverse_scaleway/registry/get_image.py +47 -48
  458. pulumiverse_scaleway/registry/get_image_tag.py +43 -44
  459. pulumiverse_scaleway/registry/get_namespace.py +35 -36
  460. pulumiverse_scaleway/registry/namespace.py +104 -105
  461. pulumiverse_scaleway/registry_namespace.py +104 -105
  462. pulumiverse_scaleway/sdb_database.py +95 -96
  463. pulumiverse_scaleway/secret.py +178 -179
  464. pulumiverse_scaleway/secret_version.py +105 -106
  465. pulumiverse_scaleway/secrets/__init__.py +1 -1
  466. pulumiverse_scaleway/secrets/_inputs.py +62 -63
  467. pulumiverse_scaleway/secrets/get_secret.py +57 -58
  468. pulumiverse_scaleway/secrets/get_version.py +45 -46
  469. pulumiverse_scaleway/secrets/outputs.py +83 -84
  470. pulumiverse_scaleway/secrets/secret.py +178 -179
  471. pulumiverse_scaleway/secrets/version.py +105 -106
  472. pulumiverse_scaleway/tem/__init__.py +1 -1
  473. pulumiverse_scaleway/tem/_inputs.py +32 -33
  474. pulumiverse_scaleway/tem/blocked_list.py +103 -104
  475. pulumiverse_scaleway/tem/domain.py +340 -257
  476. pulumiverse_scaleway/tem/domain_validation.py +61 -62
  477. pulumiverse_scaleway/tem/get_domain.py +102 -70
  478. pulumiverse_scaleway/tem/get_offer_subscription.py +33 -34
  479. pulumiverse_scaleway/tem/outputs.py +43 -44
  480. pulumiverse_scaleway/tem/webhook.py +130 -131
  481. pulumiverse_scaleway/tem_domain.py +340 -257
  482. pulumiverse_scaleway/tem_domain_validation.py +61 -62
  483. pulumiverse_scaleway/tem_webhook.py +130 -131
  484. pulumiverse_scaleway/vpc.py +139 -140
  485. pulumiverse_scaleway/vpc_gateway_network.py +179 -180
  486. pulumiverse_scaleway/vpc_private_network.py +170 -171
  487. pulumiverse_scaleway/vpc_public_gateway.py +259 -260
  488. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +283 -284
  489. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +105 -106
  490. pulumiverse_scaleway/vpc_public_gateway_ip.py +105 -106
  491. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +52 -53
  492. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +130 -131
  493. pulumiverse_scaleway/vpc_route.py +138 -139
  494. pulumiverse_scaleway/webhosting.py +209 -210
  495. {pulumiverse_scaleway-1.35.0a1759392423.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/METADATA +1 -1
  496. pulumiverse_scaleway-1.35.0a1760445454.dist-info/RECORD +500 -0
  497. pulumiverse_scaleway-1.35.0a1759392423.dist-info/RECORD +0 -499
  498. {pulumiverse_scaleway-1.35.0a1759392423.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.35.0a1759392423.dist-info → pulumiverse_scaleway-1.35.0a1760445454.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -39,15 +38,15 @@ __all__ = [
39
38
  @pulumi.output_type
40
39
  class ServerIp(dict):
41
40
  def __init__(__self__, *,
42
- address: Optional[builtins.str] = None,
43
- id: Optional[builtins.str] = None,
44
- reverse: Optional[builtins.str] = None,
45
- version: Optional[builtins.str] = None):
41
+ address: Optional[_builtins.str] = None,
42
+ id: Optional[_builtins.str] = None,
43
+ reverse: Optional[_builtins.str] = None,
44
+ version: Optional[_builtins.str] = None):
46
45
  """
47
- :param builtins.str address: The address of the IPv6.
48
- :param builtins.str id: The ID of the IPv6.
49
- :param builtins.str reverse: The reverse of the IPv6.
50
- :param builtins.str version: The type of the IPv6.
46
+ :param _builtins.str address: The address of the IPv6.
47
+ :param _builtins.str id: The ID of the IPv6.
48
+ :param _builtins.str reverse: The reverse of the IPv6.
49
+ :param _builtins.str version: The type of the IPv6.
51
50
  """
52
51
  if address is not None:
53
52
  pulumi.set(__self__, "address", address)
@@ -58,33 +57,33 @@ class ServerIp(dict):
58
57
  if version is not None:
59
58
  pulumi.set(__self__, "version", version)
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def address(self) -> Optional[builtins.str]:
62
+ def address(self) -> Optional[_builtins.str]:
64
63
  """
65
64
  The address of the IPv6.
66
65
  """
67
66
  return pulumi.get(self, "address")
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter
71
- def id(self) -> Optional[builtins.str]:
70
+ def id(self) -> Optional[_builtins.str]:
72
71
  """
73
72
  The ID of the IPv6.
74
73
  """
75
74
  return pulumi.get(self, "id")
76
75
 
77
- @property
76
+ @_builtins.property
78
77
  @pulumi.getter
79
- def reverse(self) -> Optional[builtins.str]:
78
+ def reverse(self) -> Optional[_builtins.str]:
80
79
  """
81
80
  The reverse of the IPv6.
82
81
  """
83
82
  return pulumi.get(self, "reverse")
84
83
 
85
- @property
84
+ @_builtins.property
86
85
  @pulumi.getter
87
- def version(self) -> Optional[builtins.str]:
86
+ def version(self) -> Optional[_builtins.str]:
88
87
  """
89
88
  The type of the IPv6.
90
89
  """
@@ -94,15 +93,15 @@ class ServerIp(dict):
94
93
  @pulumi.output_type
95
94
  class ServerIpv4(dict):
96
95
  def __init__(__self__, *,
97
- address: Optional[builtins.str] = None,
98
- id: Optional[builtins.str] = None,
99
- reverse: Optional[builtins.str] = None,
100
- version: Optional[builtins.str] = None):
96
+ address: Optional[_builtins.str] = None,
97
+ id: Optional[_builtins.str] = None,
98
+ reverse: Optional[_builtins.str] = None,
99
+ version: Optional[_builtins.str] = None):
101
100
  """
102
- :param builtins.str address: The address of the IPv6.
103
- :param builtins.str id: The ID of the IPv6.
104
- :param builtins.str reverse: The reverse of the IPv6.
105
- :param builtins.str version: The type of the IPv6.
101
+ :param _builtins.str address: The address of the IPv6.
102
+ :param _builtins.str id: The ID of the IPv6.
103
+ :param _builtins.str reverse: The reverse of the IPv6.
104
+ :param _builtins.str version: The type of the IPv6.
106
105
  """
107
106
  if address is not None:
108
107
  pulumi.set(__self__, "address", address)
@@ -113,33 +112,33 @@ class ServerIpv4(dict):
113
112
  if version is not None:
114
113
  pulumi.set(__self__, "version", version)
115
114
 
116
- @property
115
+ @_builtins.property
117
116
  @pulumi.getter
118
- def address(self) -> Optional[builtins.str]:
117
+ def address(self) -> Optional[_builtins.str]:
119
118
  """
120
119
  The address of the IPv6.
121
120
  """
122
121
  return pulumi.get(self, "address")
123
122
 
124
- @property
123
+ @_builtins.property
125
124
  @pulumi.getter
126
- def id(self) -> Optional[builtins.str]:
125
+ def id(self) -> Optional[_builtins.str]:
127
126
  """
128
127
  The ID of the IPv6.
129
128
  """
130
129
  return pulumi.get(self, "id")
131
130
 
132
- @property
131
+ @_builtins.property
133
132
  @pulumi.getter
134
- def reverse(self) -> Optional[builtins.str]:
133
+ def reverse(self) -> Optional[_builtins.str]:
135
134
  """
136
135
  The reverse of the IPv6.
137
136
  """
138
137
  return pulumi.get(self, "reverse")
139
138
 
140
- @property
139
+ @_builtins.property
141
140
  @pulumi.getter
142
- def version(self) -> Optional[builtins.str]:
141
+ def version(self) -> Optional[_builtins.str]:
143
142
  """
144
143
  The type of the IPv6.
145
144
  """
@@ -149,15 +148,15 @@ class ServerIpv4(dict):
149
148
  @pulumi.output_type
150
149
  class ServerIpv6(dict):
151
150
  def __init__(__self__, *,
152
- address: Optional[builtins.str] = None,
153
- id: Optional[builtins.str] = None,
154
- reverse: Optional[builtins.str] = None,
155
- version: Optional[builtins.str] = None):
151
+ address: Optional[_builtins.str] = None,
152
+ id: Optional[_builtins.str] = None,
153
+ reverse: Optional[_builtins.str] = None,
154
+ version: Optional[_builtins.str] = None):
156
155
  """
157
- :param builtins.str address: The address of the IPv6.
158
- :param builtins.str id: The ID of the IPv6.
159
- :param builtins.str reverse: The reverse of the IPv6.
160
- :param builtins.str version: The type of the IPv6.
156
+ :param _builtins.str address: The address of the IPv6.
157
+ :param _builtins.str id: The ID of the IPv6.
158
+ :param _builtins.str reverse: The reverse of the IPv6.
159
+ :param _builtins.str version: The type of the IPv6.
161
160
  """
162
161
  if address is not None:
163
162
  pulumi.set(__self__, "address", address)
@@ -168,33 +167,33 @@ class ServerIpv6(dict):
168
167
  if version is not None:
169
168
  pulumi.set(__self__, "version", version)
170
169
 
171
- @property
170
+ @_builtins.property
172
171
  @pulumi.getter
173
- def address(self) -> Optional[builtins.str]:
172
+ def address(self) -> Optional[_builtins.str]:
174
173
  """
175
174
  The address of the IPv6.
176
175
  """
177
176
  return pulumi.get(self, "address")
178
177
 
179
- @property
178
+ @_builtins.property
180
179
  @pulumi.getter
181
- def id(self) -> Optional[builtins.str]:
180
+ def id(self) -> Optional[_builtins.str]:
182
181
  """
183
182
  The ID of the IPv6.
184
183
  """
185
184
  return pulumi.get(self, "id")
186
185
 
187
- @property
186
+ @_builtins.property
188
187
  @pulumi.getter
189
- def reverse(self) -> Optional[builtins.str]:
188
+ def reverse(self) -> Optional[_builtins.str]:
190
189
  """
191
190
  The reverse of the IPv6.
192
191
  """
193
192
  return pulumi.get(self, "reverse")
194
193
 
195
- @property
194
+ @_builtins.property
196
195
  @pulumi.getter
197
- def version(self) -> Optional[builtins.str]:
196
+ def version(self) -> Optional[_builtins.str]:
198
197
  """
199
198
  The type of the IPv6.
200
199
  """
@@ -221,13 +220,13 @@ class ServerOption(dict):
221
220
  return super().get(key, default)
222
221
 
223
222
  def __init__(__self__, *,
224
- id: builtins.str,
225
- expires_at: Optional[builtins.str] = None,
226
- name: Optional[builtins.str] = None):
223
+ id: _builtins.str,
224
+ expires_at: Optional[_builtins.str] = None,
225
+ name: Optional[_builtins.str] = None):
227
226
  """
228
- :param builtins.str id: The id of the option to enable. Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-options-list-options) to find the available options IDs.
229
- :param builtins.str expires_at: The auto expiration date for compatible options
230
- :param builtins.str name: The name of the server.
227
+ :param _builtins.str id: The id of the option to enable. Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-options-list-options) to find the available options IDs.
228
+ :param _builtins.str expires_at: The auto expiration date for compatible options
229
+ :param _builtins.str name: The name of the server.
231
230
  """
232
231
  pulumi.set(__self__, "id", id)
233
232
  if expires_at is not None:
@@ -235,25 +234,25 @@ class ServerOption(dict):
235
234
  if name is not None:
236
235
  pulumi.set(__self__, "name", name)
237
236
 
238
- @property
237
+ @_builtins.property
239
238
  @pulumi.getter
240
- def id(self) -> builtins.str:
239
+ def id(self) -> _builtins.str:
241
240
  """
242
241
  The id of the option to enable. Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-options-list-options) to find the available options IDs.
243
242
  """
244
243
  return pulumi.get(self, "id")
245
244
 
246
- @property
245
+ @_builtins.property
247
246
  @pulumi.getter(name="expiresAt")
248
- def expires_at(self) -> Optional[builtins.str]:
247
+ def expires_at(self) -> Optional[_builtins.str]:
249
248
  """
250
249
  The auto expiration date for compatible options
251
250
  """
252
251
  return pulumi.get(self, "expires_at")
253
252
 
254
- @property
253
+ @_builtins.property
255
254
  @pulumi.getter
256
- def name(self) -> Optional[builtins.str]:
255
+ def name(self) -> Optional[_builtins.str]:
257
256
  """
258
257
  The name of the server.
259
258
  """
@@ -263,28 +262,28 @@ class ServerOption(dict):
263
262
  @pulumi.output_type
264
263
  class ServerPrivateIp(dict):
265
264
  def __init__(__self__, *,
266
- address: Optional[builtins.str] = None,
267
- id: Optional[builtins.str] = None):
265
+ address: Optional[_builtins.str] = None,
266
+ id: Optional[_builtins.str] = None):
268
267
  """
269
- :param builtins.str address: The address of the IPv6.
270
- :param builtins.str id: The ID of the IPv6.
268
+ :param _builtins.str address: The address of the IPv6.
269
+ :param _builtins.str id: The ID of the IPv6.
271
270
  """
272
271
  if address is not None:
273
272
  pulumi.set(__self__, "address", address)
274
273
  if id is not None:
275
274
  pulumi.set(__self__, "id", id)
276
275
 
277
- @property
276
+ @_builtins.property
278
277
  @pulumi.getter
279
- def address(self) -> Optional[builtins.str]:
278
+ def address(self) -> Optional[_builtins.str]:
280
279
  """
281
280
  The address of the IPv6.
282
281
  """
283
282
  return pulumi.get(self, "address")
284
283
 
285
- @property
284
+ @_builtins.property
286
285
  @pulumi.getter
287
- def id(self) -> Optional[builtins.str]:
286
+ def id(self) -> Optional[_builtins.str]:
288
287
  """
289
288
  The ID of the IPv6.
290
289
  """
@@ -317,21 +316,21 @@ class ServerPrivateNetwork(dict):
317
316
  return super().get(key, default)
318
317
 
319
318
  def __init__(__self__, *,
320
- id: builtins.str,
321
- created_at: Optional[builtins.str] = None,
322
- ipam_ip_ids: Optional[Sequence[builtins.str]] = None,
323
- mapping_id: Optional[builtins.str] = None,
324
- status: Optional[builtins.str] = None,
325
- updated_at: Optional[builtins.str] = None,
326
- vlan: Optional[builtins.int] = None):
327
- """
328
- :param builtins.str id: The id of the private network to attach.
329
- :param builtins.str created_at: The date and time of the creation of the private network.
330
- :param Sequence[builtins.str] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
331
- :param builtins.str mapping_id: The ID of the Server-to-Private Network mapping.
332
- :param builtins.str status: The private network status.
333
- :param builtins.str updated_at: The date and time of the last update of the private network.
334
- :param builtins.int vlan: The VLAN ID associated to the private network.
319
+ id: _builtins.str,
320
+ created_at: Optional[_builtins.str] = None,
321
+ ipam_ip_ids: Optional[Sequence[_builtins.str]] = None,
322
+ mapping_id: Optional[_builtins.str] = None,
323
+ status: Optional[_builtins.str] = None,
324
+ updated_at: Optional[_builtins.str] = None,
325
+ vlan: Optional[_builtins.int] = None):
326
+ """
327
+ :param _builtins.str id: The id of the private network to attach.
328
+ :param _builtins.str created_at: The date and time of the creation of the private network.
329
+ :param Sequence[_builtins.str] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
330
+ :param _builtins.str mapping_id: The ID of the Server-to-Private Network mapping.
331
+ :param _builtins.str status: The private network status.
332
+ :param _builtins.str updated_at: The date and time of the last update of the private network.
333
+ :param _builtins.int vlan: The VLAN ID associated to the private network.
335
334
  """
336
335
  pulumi.set(__self__, "id", id)
337
336
  if created_at is not None:
@@ -347,57 +346,57 @@ class ServerPrivateNetwork(dict):
347
346
  if vlan is not None:
348
347
  pulumi.set(__self__, "vlan", vlan)
349
348
 
350
- @property
349
+ @_builtins.property
351
350
  @pulumi.getter
352
- def id(self) -> builtins.str:
351
+ def id(self) -> _builtins.str:
353
352
  """
354
353
  The id of the private network to attach.
355
354
  """
356
355
  return pulumi.get(self, "id")
357
356
 
358
- @property
357
+ @_builtins.property
359
358
  @pulumi.getter(name="createdAt")
360
- def created_at(self) -> Optional[builtins.str]:
359
+ def created_at(self) -> Optional[_builtins.str]:
361
360
  """
362
361
  The date and time of the creation of the private network.
363
362
  """
364
363
  return pulumi.get(self, "created_at")
365
364
 
366
- @property
365
+ @_builtins.property
367
366
  @pulumi.getter(name="ipamIpIds")
368
- def ipam_ip_ids(self) -> Optional[Sequence[builtins.str]]:
367
+ def ipam_ip_ids(self) -> Optional[Sequence[_builtins.str]]:
369
368
  """
370
369
  List of IPAM IP IDs to assign to the server in the requested private network.
371
370
  """
372
371
  return pulumi.get(self, "ipam_ip_ids")
373
372
 
374
- @property
373
+ @_builtins.property
375
374
  @pulumi.getter(name="mappingId")
376
- def mapping_id(self) -> Optional[builtins.str]:
375
+ def mapping_id(self) -> Optional[_builtins.str]:
377
376
  """
378
377
  The ID of the Server-to-Private Network mapping.
379
378
  """
380
379
  return pulumi.get(self, "mapping_id")
381
380
 
382
- @property
381
+ @_builtins.property
383
382
  @pulumi.getter
384
- def status(self) -> Optional[builtins.str]:
383
+ def status(self) -> Optional[_builtins.str]:
385
384
  """
386
385
  The private network status.
387
386
  """
388
387
  return pulumi.get(self, "status")
389
388
 
390
- @property
389
+ @_builtins.property
391
390
  @pulumi.getter(name="updatedAt")
392
- def updated_at(self) -> Optional[builtins.str]:
391
+ def updated_at(self) -> Optional[_builtins.str]:
393
392
  """
394
393
  The date and time of the last update of the private network.
395
394
  """
396
395
  return pulumi.get(self, "updated_at")
397
396
 
398
- @property
397
+ @_builtins.property
399
398
  @pulumi.getter
400
- def vlan(self) -> Optional[builtins.int]:
399
+ def vlan(self) -> Optional[_builtins.int]:
401
400
  """
402
401
  The VLAN ID associated to the private network.
403
402
  """
@@ -407,31 +406,31 @@ class ServerPrivateNetwork(dict):
407
406
  @pulumi.output_type
408
407
  class GetIpsIpResult(dict):
409
408
  def __init__(__self__, *,
410
- created_at: builtins.str,
411
- description: builtins.str,
412
- id: builtins.str,
413
- ip_address: builtins.str,
409
+ created_at: _builtins.str,
410
+ description: _builtins.str,
411
+ id: _builtins.str,
412
+ ip_address: _builtins.str,
414
413
  mac_addresses: Sequence['outputs.GetIpsIpMacAddressResult'],
415
- organization_id: builtins.str,
416
- project_id: builtins.str,
417
- reverse: builtins.str,
418
- status: builtins.str,
419
- tags: Sequence[builtins.str],
420
- updated_at: builtins.str,
421
- zone: builtins.str):
422
- """
423
- :param builtins.str created_at: The date on which the flexible IP was created (RFC 3339 format).
424
- :param builtins.str description: The description of the flexible IP.
425
- :param builtins.str id: The MAC address ID.
426
- :param builtins.str ip_address: IP address of the flexible IP
414
+ organization_id: _builtins.str,
415
+ project_id: _builtins.str,
416
+ reverse: _builtins.str,
417
+ status: _builtins.str,
418
+ tags: Sequence[_builtins.str],
419
+ updated_at: _builtins.str,
420
+ zone: _builtins.str):
421
+ """
422
+ :param _builtins.str created_at: The date on which the flexible IP was created (RFC 3339 format).
423
+ :param _builtins.str description: The description of the flexible IP.
424
+ :param _builtins.str id: The MAC address ID.
425
+ :param _builtins.str ip_address: IP address of the flexible IP
427
426
  :param Sequence['GetIpsIpMacAddressArgs'] mac_addresses: The MAC address of the Virtual MAC.
428
- :param builtins.str organization_id: (Defaults to provider `organization_id`) The ID of the organization the IP is in.
429
- :param builtins.str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
430
- :param builtins.str reverse: The reverse domain associated with this IP.
431
- :param builtins.str status: The status of virtual MAC.
432
- :param Sequence[builtins.str] tags: List of tags used as filter. IPs with these exact tags are listed.
433
- :param builtins.str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
434
- :param builtins.str zone: `zone`) The zone in which IPs exist.
427
+ :param _builtins.str organization_id: (Defaults to provider `organization_id`) The ID of the organization the IP is in.
428
+ :param _builtins.str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
429
+ :param _builtins.str reverse: The reverse domain associated with this IP.
430
+ :param _builtins.str status: The status of virtual MAC.
431
+ :param Sequence[_builtins.str] tags: List of tags used as filter. IPs with these exact tags are listed.
432
+ :param _builtins.str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
433
+ :param _builtins.str zone: `zone`) The zone in which IPs exist.
435
434
  """
436
435
  pulumi.set(__self__, "created_at", created_at)
437
436
  pulumi.set(__self__, "description", description)
@@ -446,39 +445,39 @@ class GetIpsIpResult(dict):
446
445
  pulumi.set(__self__, "updated_at", updated_at)
447
446
  pulumi.set(__self__, "zone", zone)
448
447
 
449
- @property
448
+ @_builtins.property
450
449
  @pulumi.getter(name="createdAt")
451
- def created_at(self) -> builtins.str:
450
+ def created_at(self) -> _builtins.str:
452
451
  """
453
452
  The date on which the flexible IP was created (RFC 3339 format).
454
453
  """
455
454
  return pulumi.get(self, "created_at")
456
455
 
457
- @property
456
+ @_builtins.property
458
457
  @pulumi.getter
459
- def description(self) -> builtins.str:
458
+ def description(self) -> _builtins.str:
460
459
  """
461
460
  The description of the flexible IP.
462
461
  """
463
462
  return pulumi.get(self, "description")
464
463
 
465
- @property
464
+ @_builtins.property
466
465
  @pulumi.getter
467
- def id(self) -> builtins.str:
466
+ def id(self) -> _builtins.str:
468
467
  """
469
468
  The MAC address ID.
470
469
  """
471
470
  return pulumi.get(self, "id")
472
471
 
473
- @property
472
+ @_builtins.property
474
473
  @pulumi.getter(name="ipAddress")
475
- def ip_address(self) -> builtins.str:
474
+ def ip_address(self) -> _builtins.str:
476
475
  """
477
476
  IP address of the flexible IP
478
477
  """
479
478
  return pulumi.get(self, "ip_address")
480
479
 
481
- @property
480
+ @_builtins.property
482
481
  @pulumi.getter(name="macAddresses")
483
482
  def mac_addresses(self) -> Sequence['outputs.GetIpsIpMacAddressResult']:
484
483
  """
@@ -486,57 +485,57 @@ class GetIpsIpResult(dict):
486
485
  """
487
486
  return pulumi.get(self, "mac_addresses")
488
487
 
489
- @property
488
+ @_builtins.property
490
489
  @pulumi.getter(name="organizationId")
491
- def organization_id(self) -> builtins.str:
490
+ def organization_id(self) -> _builtins.str:
492
491
  """
493
492
  (Defaults to provider `organization_id`) The ID of the organization the IP is in.
494
493
  """
495
494
  return pulumi.get(self, "organization_id")
496
495
 
497
- @property
496
+ @_builtins.property
498
497
  @pulumi.getter(name="projectId")
499
- def project_id(self) -> builtins.str:
498
+ def project_id(self) -> _builtins.str:
500
499
  """
501
500
  (Defaults to provider `project_id`) The ID of the project the IP is in.
502
501
  """
503
502
  return pulumi.get(self, "project_id")
504
503
 
505
- @property
504
+ @_builtins.property
506
505
  @pulumi.getter
507
- def reverse(self) -> builtins.str:
506
+ def reverse(self) -> _builtins.str:
508
507
  """
509
508
  The reverse domain associated with this IP.
510
509
  """
511
510
  return pulumi.get(self, "reverse")
512
511
 
513
- @property
512
+ @_builtins.property
514
513
  @pulumi.getter
515
- def status(self) -> builtins.str:
514
+ def status(self) -> _builtins.str:
516
515
  """
517
516
  The status of virtual MAC.
518
517
  """
519
518
  return pulumi.get(self, "status")
520
519
 
521
- @property
520
+ @_builtins.property
522
521
  @pulumi.getter
523
- def tags(self) -> Sequence[builtins.str]:
522
+ def tags(self) -> Sequence[_builtins.str]:
524
523
  """
525
524
  List of tags used as filter. IPs with these exact tags are listed.
526
525
  """
527
526
  return pulumi.get(self, "tags")
528
527
 
529
- @property
528
+ @_builtins.property
530
529
  @pulumi.getter(name="updatedAt")
531
- def updated_at(self) -> builtins.str:
530
+ def updated_at(self) -> _builtins.str:
532
531
  """
533
532
  The date on which the flexible IP was last updated (RFC 3339 format).
534
533
  """
535
534
  return pulumi.get(self, "updated_at")
536
535
 
537
- @property
536
+ @_builtins.property
538
537
  @pulumi.getter
539
- def zone(self) -> builtins.str:
538
+ def zone(self) -> _builtins.str:
540
539
  """
541
540
  `zone`) The zone in which IPs exist.
542
541
  """
@@ -546,21 +545,21 @@ class GetIpsIpResult(dict):
546
545
  @pulumi.output_type
547
546
  class GetIpsIpMacAddressResult(dict):
548
547
  def __init__(__self__, *,
549
- created_at: builtins.str,
550
- id: builtins.str,
551
- mac_address: builtins.str,
552
- mac_type: builtins.str,
553
- status: builtins.str,
554
- updated_at: builtins.str,
555
- zone: builtins.str):
556
- """
557
- :param builtins.str created_at: The date on which the flexible IP was created (RFC 3339 format).
558
- :param builtins.str id: The MAC address ID.
559
- :param builtins.str mac_address: The MAC address of the Virtual MAC.
560
- :param builtins.str mac_type: The type of virtual MAC.
561
- :param builtins.str status: The status of virtual MAC.
562
- :param builtins.str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
563
- :param builtins.str zone: `zone`) The zone in which IPs exist.
548
+ created_at: _builtins.str,
549
+ id: _builtins.str,
550
+ mac_address: _builtins.str,
551
+ mac_type: _builtins.str,
552
+ status: _builtins.str,
553
+ updated_at: _builtins.str,
554
+ zone: Optional[_builtins.str] = None):
555
+ """
556
+ :param _builtins.str created_at: The date on which the flexible IP was created (RFC 3339 format).
557
+ :param _builtins.str id: The MAC address ID.
558
+ :param _builtins.str mac_address: The MAC address of the Virtual MAC.
559
+ :param _builtins.str mac_type: The type of virtual MAC.
560
+ :param _builtins.str status: The status of virtual MAC.
561
+ :param _builtins.str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
562
+ :param _builtins.str zone: `zone`) The zone in which IPs exist.
564
563
  """
565
564
  pulumi.set(__self__, "created_at", created_at)
566
565
  pulumi.set(__self__, "id", id)
@@ -568,59 +567,60 @@ class GetIpsIpMacAddressResult(dict):
568
567
  pulumi.set(__self__, "mac_type", mac_type)
569
568
  pulumi.set(__self__, "status", status)
570
569
  pulumi.set(__self__, "updated_at", updated_at)
571
- pulumi.set(__self__, "zone", zone)
570
+ if zone is not None:
571
+ pulumi.set(__self__, "zone", zone)
572
572
 
573
- @property
573
+ @_builtins.property
574
574
  @pulumi.getter(name="createdAt")
575
- def created_at(self) -> builtins.str:
575
+ def created_at(self) -> _builtins.str:
576
576
  """
577
577
  The date on which the flexible IP was created (RFC 3339 format).
578
578
  """
579
579
  return pulumi.get(self, "created_at")
580
580
 
581
- @property
581
+ @_builtins.property
582
582
  @pulumi.getter
583
- def id(self) -> builtins.str:
583
+ def id(self) -> _builtins.str:
584
584
  """
585
585
  The MAC address ID.
586
586
  """
587
587
  return pulumi.get(self, "id")
588
588
 
589
- @property
589
+ @_builtins.property
590
590
  @pulumi.getter(name="macAddress")
591
- def mac_address(self) -> builtins.str:
591
+ def mac_address(self) -> _builtins.str:
592
592
  """
593
593
  The MAC address of the Virtual MAC.
594
594
  """
595
595
  return pulumi.get(self, "mac_address")
596
596
 
597
- @property
597
+ @_builtins.property
598
598
  @pulumi.getter(name="macType")
599
- def mac_type(self) -> builtins.str:
599
+ def mac_type(self) -> _builtins.str:
600
600
  """
601
601
  The type of virtual MAC.
602
602
  """
603
603
  return pulumi.get(self, "mac_type")
604
604
 
605
- @property
605
+ @_builtins.property
606
606
  @pulumi.getter
607
- def status(self) -> builtins.str:
607
+ def status(self) -> _builtins.str:
608
608
  """
609
609
  The status of virtual MAC.
610
610
  """
611
611
  return pulumi.get(self, "status")
612
612
 
613
- @property
613
+ @_builtins.property
614
614
  @pulumi.getter(name="updatedAt")
615
- def updated_at(self) -> builtins.str:
615
+ def updated_at(self) -> _builtins.str:
616
616
  """
617
617
  The date on which the flexible IP was last updated (RFC 3339 format).
618
618
  """
619
619
  return pulumi.get(self, "updated_at")
620
620
 
621
- @property
621
+ @_builtins.property
622
622
  @pulumi.getter
623
- def zone(self) -> builtins.str:
623
+ def zone(self) -> Optional[_builtins.str]:
624
624
  """
625
625
  `zone`) The zone in which IPs exist.
626
626
  """
@@ -630,48 +630,48 @@ class GetIpsIpMacAddressResult(dict):
630
630
  @pulumi.output_type
631
631
  class GetOfferCpuResult(dict):
632
632
  def __init__(__self__, *,
633
- core_count: builtins.int,
634
- frequency: builtins.int,
635
- name: builtins.str,
636
- thread_count: builtins.int):
633
+ core_count: _builtins.int,
634
+ frequency: _builtins.int,
635
+ name: _builtins.str,
636
+ thread_count: _builtins.int):
637
637
  """
638
- :param builtins.int core_count: Number of core on this CPU.
639
- :param builtins.int frequency: Frequency of the memory in MHz.
640
- :param builtins.str name: The offer name. Only one of `name` and `offer_id` should be specified.
641
- :param builtins.int thread_count: Number of thread on this CPU.
638
+ :param _builtins.int core_count: Number of core on this CPU.
639
+ :param _builtins.int frequency: Frequency of the memory in MHz.
640
+ :param _builtins.str name: The offer name. Only one of `name` and `offer_id` should be specified.
641
+ :param _builtins.int thread_count: Number of thread on this CPU.
642
642
  """
643
643
  pulumi.set(__self__, "core_count", core_count)
644
644
  pulumi.set(__self__, "frequency", frequency)
645
645
  pulumi.set(__self__, "name", name)
646
646
  pulumi.set(__self__, "thread_count", thread_count)
647
647
 
648
- @property
648
+ @_builtins.property
649
649
  @pulumi.getter(name="coreCount")
650
- def core_count(self) -> builtins.int:
650
+ def core_count(self) -> _builtins.int:
651
651
  """
652
652
  Number of core on this CPU.
653
653
  """
654
654
  return pulumi.get(self, "core_count")
655
655
 
656
- @property
656
+ @_builtins.property
657
657
  @pulumi.getter
658
- def frequency(self) -> builtins.int:
658
+ def frequency(self) -> _builtins.int:
659
659
  """
660
660
  Frequency of the memory in MHz.
661
661
  """
662
662
  return pulumi.get(self, "frequency")
663
663
 
664
- @property
664
+ @_builtins.property
665
665
  @pulumi.getter
666
- def name(self) -> builtins.str:
666
+ def name(self) -> _builtins.str:
667
667
  """
668
668
  The offer name. Only one of `name` and `offer_id` should be specified.
669
669
  """
670
670
  return pulumi.get(self, "name")
671
671
 
672
- @property
672
+ @_builtins.property
673
673
  @pulumi.getter(name="threadCount")
674
- def thread_count(self) -> builtins.int:
674
+ def thread_count(self) -> _builtins.int:
675
675
  """
676
676
  Number of thread on this CPU.
677
677
  """
@@ -681,26 +681,26 @@ class GetOfferCpuResult(dict):
681
681
  @pulumi.output_type
682
682
  class GetOfferDiskResult(dict):
683
683
  def __init__(__self__, *,
684
- capacity: builtins.int,
685
- type: builtins.str):
684
+ capacity: _builtins.int,
685
+ type: _builtins.str):
686
686
  """
687
- :param builtins.int capacity: Capacity of the memory in GB.
688
- :param builtins.str type: Type of memory.
687
+ :param _builtins.int capacity: Capacity of the memory in GB.
688
+ :param _builtins.str type: Type of memory.
689
689
  """
690
690
  pulumi.set(__self__, "capacity", capacity)
691
691
  pulumi.set(__self__, "type", type)
692
692
 
693
- @property
693
+ @_builtins.property
694
694
  @pulumi.getter
695
- def capacity(self) -> builtins.int:
695
+ def capacity(self) -> _builtins.int:
696
696
  """
697
697
  Capacity of the memory in GB.
698
698
  """
699
699
  return pulumi.get(self, "capacity")
700
700
 
701
- @property
701
+ @_builtins.property
702
702
  @pulumi.getter
703
- def type(self) -> builtins.str:
703
+ def type(self) -> _builtins.str:
704
704
  """
705
705
  Type of memory.
706
706
  """
@@ -710,48 +710,48 @@ class GetOfferDiskResult(dict):
710
710
  @pulumi.output_type
711
711
  class GetOfferMemoryResult(dict):
712
712
  def __init__(__self__, *,
713
- capacity: builtins.int,
714
- frequency: builtins.int,
715
- is_ecc: builtins.bool,
716
- type: builtins.str):
713
+ capacity: _builtins.int,
714
+ frequency: _builtins.int,
715
+ is_ecc: _builtins.bool,
716
+ type: _builtins.str):
717
717
  """
718
- :param builtins.int capacity: Capacity of the memory in GB.
719
- :param builtins.int frequency: Frequency of the memory in MHz.
720
- :param builtins.bool is_ecc: True if error-correcting code is available on this memory.
721
- :param builtins.str type: Type of memory.
718
+ :param _builtins.int capacity: Capacity of the memory in GB.
719
+ :param _builtins.int frequency: Frequency of the memory in MHz.
720
+ :param _builtins.bool is_ecc: True if error-correcting code is available on this memory.
721
+ :param _builtins.str type: Type of memory.
722
722
  """
723
723
  pulumi.set(__self__, "capacity", capacity)
724
724
  pulumi.set(__self__, "frequency", frequency)
725
725
  pulumi.set(__self__, "is_ecc", is_ecc)
726
726
  pulumi.set(__self__, "type", type)
727
727
 
728
- @property
728
+ @_builtins.property
729
729
  @pulumi.getter
730
- def capacity(self) -> builtins.int:
730
+ def capacity(self) -> _builtins.int:
731
731
  """
732
732
  Capacity of the memory in GB.
733
733
  """
734
734
  return pulumi.get(self, "capacity")
735
735
 
736
- @property
736
+ @_builtins.property
737
737
  @pulumi.getter
738
- def frequency(self) -> builtins.int:
738
+ def frequency(self) -> _builtins.int:
739
739
  """
740
740
  Frequency of the memory in MHz.
741
741
  """
742
742
  return pulumi.get(self, "frequency")
743
743
 
744
- @property
744
+ @_builtins.property
745
745
  @pulumi.getter(name="isEcc")
746
- def is_ecc(self) -> builtins.bool:
746
+ def is_ecc(self) -> _builtins.bool:
747
747
  """
748
748
  True if error-correcting code is available on this memory.
749
749
  """
750
750
  return pulumi.get(self, "is_ecc")
751
751
 
752
- @property
752
+ @_builtins.property
753
753
  @pulumi.getter
754
- def type(self) -> builtins.str:
754
+ def type(self) -> _builtins.str:
755
755
  """
756
756
  Type of memory.
757
757
  """
@@ -761,48 +761,48 @@ class GetOfferMemoryResult(dict):
761
761
  @pulumi.output_type
762
762
  class GetServerIpResult(dict):
763
763
  def __init__(__self__, *,
764
- address: builtins.str,
765
- id: builtins.str,
766
- reverse: builtins.str,
767
- version: builtins.str):
764
+ address: _builtins.str,
765
+ id: _builtins.str,
766
+ reverse: _builtins.str,
767
+ version: _builtins.str):
768
768
  """
769
- :param builtins.str address: The IPv6 address
770
- :param builtins.str id: The ID of the server.
771
- :param builtins.str reverse: The Reverse of the IPv6
772
- :param builtins.str version: The version of the IPv6
769
+ :param _builtins.str address: The IPv6 address
770
+ :param _builtins.str id: The ID of the server.
771
+ :param _builtins.str reverse: The Reverse of the IPv6
772
+ :param _builtins.str version: The version of the IPv6
773
773
  """
774
774
  pulumi.set(__self__, "address", address)
775
775
  pulumi.set(__self__, "id", id)
776
776
  pulumi.set(__self__, "reverse", reverse)
777
777
  pulumi.set(__self__, "version", version)
778
778
 
779
- @property
779
+ @_builtins.property
780
780
  @pulumi.getter
781
- def address(self) -> builtins.str:
781
+ def address(self) -> _builtins.str:
782
782
  """
783
783
  The IPv6 address
784
784
  """
785
785
  return pulumi.get(self, "address")
786
786
 
787
- @property
787
+ @_builtins.property
788
788
  @pulumi.getter
789
- def id(self) -> builtins.str:
789
+ def id(self) -> _builtins.str:
790
790
  """
791
791
  The ID of the server.
792
792
  """
793
793
  return pulumi.get(self, "id")
794
794
 
795
- @property
795
+ @_builtins.property
796
796
  @pulumi.getter
797
- def reverse(self) -> builtins.str:
797
+ def reverse(self) -> _builtins.str:
798
798
  """
799
799
  The Reverse of the IPv6
800
800
  """
801
801
  return pulumi.get(self, "reverse")
802
802
 
803
- @property
803
+ @_builtins.property
804
804
  @pulumi.getter
805
- def version(self) -> builtins.str:
805
+ def version(self) -> _builtins.str:
806
806
  """
807
807
  The version of the IPv6
808
808
  """
@@ -812,48 +812,48 @@ class GetServerIpResult(dict):
812
812
  @pulumi.output_type
813
813
  class GetServerIpv4Result(dict):
814
814
  def __init__(__self__, *,
815
- address: builtins.str,
816
- id: builtins.str,
817
- reverse: builtins.str,
818
- version: builtins.str):
815
+ address: _builtins.str,
816
+ id: _builtins.str,
817
+ reverse: _builtins.str,
818
+ version: _builtins.str):
819
819
  """
820
- :param builtins.str address: The IPv6 address
821
- :param builtins.str id: The ID of the server.
822
- :param builtins.str reverse: The Reverse of the IPv6
823
- :param builtins.str version: The version of the IPv6
820
+ :param _builtins.str address: The IPv6 address
821
+ :param _builtins.str id: The ID of the server.
822
+ :param _builtins.str reverse: The Reverse of the IPv6
823
+ :param _builtins.str version: The version of the IPv6
824
824
  """
825
825
  pulumi.set(__self__, "address", address)
826
826
  pulumi.set(__self__, "id", id)
827
827
  pulumi.set(__self__, "reverse", reverse)
828
828
  pulumi.set(__self__, "version", version)
829
829
 
830
- @property
830
+ @_builtins.property
831
831
  @pulumi.getter
832
- def address(self) -> builtins.str:
832
+ def address(self) -> _builtins.str:
833
833
  """
834
834
  The IPv6 address
835
835
  """
836
836
  return pulumi.get(self, "address")
837
837
 
838
- @property
838
+ @_builtins.property
839
839
  @pulumi.getter
840
- def id(self) -> builtins.str:
840
+ def id(self) -> _builtins.str:
841
841
  """
842
842
  The ID of the server.
843
843
  """
844
844
  return pulumi.get(self, "id")
845
845
 
846
- @property
846
+ @_builtins.property
847
847
  @pulumi.getter
848
- def reverse(self) -> builtins.str:
848
+ def reverse(self) -> _builtins.str:
849
849
  """
850
850
  The Reverse of the IPv6
851
851
  """
852
852
  return pulumi.get(self, "reverse")
853
853
 
854
- @property
854
+ @_builtins.property
855
855
  @pulumi.getter
856
- def version(self) -> builtins.str:
856
+ def version(self) -> _builtins.str:
857
857
  """
858
858
  The version of the IPv6
859
859
  """
@@ -863,48 +863,48 @@ class GetServerIpv4Result(dict):
863
863
  @pulumi.output_type
864
864
  class GetServerIpv6Result(dict):
865
865
  def __init__(__self__, *,
866
- address: builtins.str,
867
- id: builtins.str,
868
- reverse: builtins.str,
869
- version: builtins.str):
866
+ address: _builtins.str,
867
+ id: _builtins.str,
868
+ reverse: _builtins.str,
869
+ version: _builtins.str):
870
870
  """
871
- :param builtins.str address: The IPv6 address
872
- :param builtins.str id: The ID of the server.
873
- :param builtins.str reverse: The Reverse of the IPv6
874
- :param builtins.str version: The version of the IPv6
871
+ :param _builtins.str address: The IPv6 address
872
+ :param _builtins.str id: The ID of the server.
873
+ :param _builtins.str reverse: The Reverse of the IPv6
874
+ :param _builtins.str version: The version of the IPv6
875
875
  """
876
876
  pulumi.set(__self__, "address", address)
877
877
  pulumi.set(__self__, "id", id)
878
878
  pulumi.set(__self__, "reverse", reverse)
879
879
  pulumi.set(__self__, "version", version)
880
880
 
881
- @property
881
+ @_builtins.property
882
882
  @pulumi.getter
883
- def address(self) -> builtins.str:
883
+ def address(self) -> _builtins.str:
884
884
  """
885
885
  The IPv6 address
886
886
  """
887
887
  return pulumi.get(self, "address")
888
888
 
889
- @property
889
+ @_builtins.property
890
890
  @pulumi.getter
891
- def id(self) -> builtins.str:
891
+ def id(self) -> _builtins.str:
892
892
  """
893
893
  The ID of the server.
894
894
  """
895
895
  return pulumi.get(self, "id")
896
896
 
897
- @property
897
+ @_builtins.property
898
898
  @pulumi.getter
899
- def reverse(self) -> builtins.str:
899
+ def reverse(self) -> _builtins.str:
900
900
  """
901
901
  The Reverse of the IPv6
902
902
  """
903
903
  return pulumi.get(self, "reverse")
904
904
 
905
- @property
905
+ @_builtins.property
906
906
  @pulumi.getter
907
- def version(self) -> builtins.str:
907
+ def version(self) -> _builtins.str:
908
908
  """
909
909
  The version of the IPv6
910
910
  """
@@ -914,37 +914,37 @@ class GetServerIpv6Result(dict):
914
914
  @pulumi.output_type
915
915
  class GetServerOptionResult(dict):
916
916
  def __init__(__self__, *,
917
- expires_at: builtins.str,
918
- id: builtins.str,
919
- name: builtins.str):
917
+ expires_at: _builtins.str,
918
+ id: _builtins.str,
919
+ name: _builtins.str):
920
920
  """
921
- :param builtins.str expires_at: Auto expire the option after this date
922
- :param builtins.str id: The ID of the server.
923
- :param builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
921
+ :param _builtins.str expires_at: Auto expire the option after this date
922
+ :param _builtins.str id: The ID of the server.
923
+ :param _builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
924
924
  """
925
925
  pulumi.set(__self__, "expires_at", expires_at)
926
926
  pulumi.set(__self__, "id", id)
927
927
  pulumi.set(__self__, "name", name)
928
928
 
929
- @property
929
+ @_builtins.property
930
930
  @pulumi.getter(name="expiresAt")
931
- def expires_at(self) -> builtins.str:
931
+ def expires_at(self) -> _builtins.str:
932
932
  """
933
933
  Auto expire the option after this date
934
934
  """
935
935
  return pulumi.get(self, "expires_at")
936
936
 
937
- @property
937
+ @_builtins.property
938
938
  @pulumi.getter
939
- def id(self) -> builtins.str:
939
+ def id(self) -> _builtins.str:
940
940
  """
941
941
  The ID of the server.
942
942
  """
943
943
  return pulumi.get(self, "id")
944
944
 
945
- @property
945
+ @_builtins.property
946
946
  @pulumi.getter
947
- def name(self) -> builtins.str:
947
+ def name(self) -> _builtins.str:
948
948
  """
949
949
  The server name. Only one of `name` and `server_id` should be specified.
950
950
  """
@@ -954,26 +954,26 @@ class GetServerOptionResult(dict):
954
954
  @pulumi.output_type
955
955
  class GetServerPrivateIpResult(dict):
956
956
  def __init__(__self__, *,
957
- address: builtins.str,
958
- id: builtins.str):
957
+ address: _builtins.str,
958
+ id: _builtins.str):
959
959
  """
960
- :param builtins.str address: The private IP address
961
- :param builtins.str id: The ID of the server.
960
+ :param _builtins.str address: The private IP address
961
+ :param _builtins.str id: The ID of the server.
962
962
  """
963
963
  pulumi.set(__self__, "address", address)
964
964
  pulumi.set(__self__, "id", id)
965
965
 
966
- @property
966
+ @_builtins.property
967
967
  @pulumi.getter
968
- def address(self) -> builtins.str:
968
+ def address(self) -> _builtins.str:
969
969
  """
970
970
  The private IP address
971
971
  """
972
972
  return pulumi.get(self, "address")
973
973
 
974
- @property
974
+ @_builtins.property
975
975
  @pulumi.getter
976
- def id(self) -> builtins.str:
976
+ def id(self) -> _builtins.str:
977
977
  """
978
978
  The ID of the server.
979
979
  """
@@ -983,21 +983,21 @@ class GetServerPrivateIpResult(dict):
983
983
  @pulumi.output_type
984
984
  class GetServerPrivateNetworkResult(dict):
985
985
  def __init__(__self__, *,
986
- created_at: builtins.str,
987
- id: builtins.str,
988
- ipam_ip_ids: Sequence[builtins.str],
989
- mapping_id: builtins.str,
990
- status: builtins.str,
991
- updated_at: builtins.str,
992
- vlan: builtins.int):
993
- """
994
- :param builtins.str created_at: The date and time of the creation of the private network
995
- :param builtins.str id: The ID of the server.
996
- :param Sequence[builtins.str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
997
- :param builtins.str mapping_id: The ID of the Server-to-Private Network mapping
998
- :param builtins.str status: The private network status
999
- :param builtins.str updated_at: The date and time of the last update of the private network
1000
- :param builtins.int vlan: The VLAN ID associated to the private network
986
+ created_at: _builtins.str,
987
+ id: _builtins.str,
988
+ ipam_ip_ids: Sequence[_builtins.str],
989
+ mapping_id: _builtins.str,
990
+ status: _builtins.str,
991
+ updated_at: _builtins.str,
992
+ vlan: _builtins.int):
993
+ """
994
+ :param _builtins.str created_at: The date and time of the creation of the private network
995
+ :param _builtins.str id: The ID of the server.
996
+ :param Sequence[_builtins.str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
997
+ :param _builtins.str mapping_id: The ID of the Server-to-Private Network mapping
998
+ :param _builtins.str status: The private network status
999
+ :param _builtins.str updated_at: The date and time of the last update of the private network
1000
+ :param _builtins.int vlan: The VLAN ID associated to the private network
1001
1001
  """
1002
1002
  pulumi.set(__self__, "created_at", created_at)
1003
1003
  pulumi.set(__self__, "id", id)
@@ -1007,57 +1007,57 @@ class GetServerPrivateNetworkResult(dict):
1007
1007
  pulumi.set(__self__, "updated_at", updated_at)
1008
1008
  pulumi.set(__self__, "vlan", vlan)
1009
1009
 
1010
- @property
1010
+ @_builtins.property
1011
1011
  @pulumi.getter(name="createdAt")
1012
- def created_at(self) -> builtins.str:
1012
+ def created_at(self) -> _builtins.str:
1013
1013
  """
1014
1014
  The date and time of the creation of the private network
1015
1015
  """
1016
1016
  return pulumi.get(self, "created_at")
1017
1017
 
1018
- @property
1018
+ @_builtins.property
1019
1019
  @pulumi.getter
1020
- def id(self) -> builtins.str:
1020
+ def id(self) -> _builtins.str:
1021
1021
  """
1022
1022
  The ID of the server.
1023
1023
  """
1024
1024
  return pulumi.get(self, "id")
1025
1025
 
1026
- @property
1026
+ @_builtins.property
1027
1027
  @pulumi.getter(name="ipamIpIds")
1028
- def ipam_ip_ids(self) -> Sequence[builtins.str]:
1028
+ def ipam_ip_ids(self) -> Sequence[_builtins.str]:
1029
1029
  """
1030
1030
  List of IPAM IP IDs to attach to the server
1031
1031
  """
1032
1032
  return pulumi.get(self, "ipam_ip_ids")
1033
1033
 
1034
- @property
1034
+ @_builtins.property
1035
1035
  @pulumi.getter(name="mappingId")
1036
- def mapping_id(self) -> builtins.str:
1036
+ def mapping_id(self) -> _builtins.str:
1037
1037
  """
1038
1038
  The ID of the Server-to-Private Network mapping
1039
1039
  """
1040
1040
  return pulumi.get(self, "mapping_id")
1041
1041
 
1042
- @property
1042
+ @_builtins.property
1043
1043
  @pulumi.getter
1044
- def status(self) -> builtins.str:
1044
+ def status(self) -> _builtins.str:
1045
1045
  """
1046
1046
  The private network status
1047
1047
  """
1048
1048
  return pulumi.get(self, "status")
1049
1049
 
1050
- @property
1050
+ @_builtins.property
1051
1051
  @pulumi.getter(name="updatedAt")
1052
- def updated_at(self) -> builtins.str:
1052
+ def updated_at(self) -> _builtins.str:
1053
1053
  """
1054
1054
  The date and time of the last update of the private network
1055
1055
  """
1056
1056
  return pulumi.get(self, "updated_at")
1057
1057
 
1058
- @property
1058
+ @_builtins.property
1059
1059
  @pulumi.getter
1060
- def vlan(self) -> builtins.int:
1060
+ def vlan(self) -> _builtins.int:
1061
1061
  """
1062
1062
  The VLAN ID associated to the private network
1063
1063
  """