pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl

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