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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (490) hide show
  1. pulumiverse_scaleway/__init__.py +11 -1
  2. pulumiverse_scaleway/_inputs.py +2252 -2143
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +2 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +9 -8
  6. pulumiverse_scaleway/account/get_project.py +21 -20
  7. pulumiverse_scaleway/account/get_projects.py +28 -21
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +20 -19
  10. pulumiverse_scaleway/account/project.py +59 -57
  11. pulumiverse_scaleway/account/ssh_key.py +87 -85
  12. pulumiverse_scaleway/account_project.py +59 -57
  13. pulumiverse_scaleway/account_ssh_key.py +87 -85
  14. pulumiverse_scaleway/apple_silicon_server.py +204 -155
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
  17. pulumiverse_scaleway/applesilicon/outputs.py +54 -21
  18. pulumiverse_scaleway/applesilicon/server.py +204 -155
  19. pulumiverse_scaleway/baremetal_server.py +262 -260
  20. pulumiverse_scaleway/billing/__init__.py +2 -1
  21. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  22. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  23. pulumiverse_scaleway/billing/outputs.py +73 -72
  24. pulumiverse_scaleway/block/__init__.py +2 -1
  25. pulumiverse_scaleway/block/_inputs.py +12 -11
  26. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  27. pulumiverse_scaleway/block/get_volume.py +28 -27
  28. pulumiverse_scaleway/block/outputs.py +14 -13
  29. pulumiverse_scaleway/block/snapshot.py +73 -71
  30. pulumiverse_scaleway/block/volume.py +115 -113
  31. pulumiverse_scaleway/block_snapshot.py +73 -71
  32. pulumiverse_scaleway/block_volume.py +115 -113
  33. pulumiverse_scaleway/cockpit.py +38 -36
  34. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  35. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  36. pulumiverse_scaleway/cockpit_source.py +115 -113
  37. pulumiverse_scaleway/cockpit_token.py +66 -64
  38. pulumiverse_scaleway/config/__init__.py +2 -1
  39. pulumiverse_scaleway/config/__init__.pyi +2 -1
  40. pulumiverse_scaleway/config/vars.py +2 -1
  41. pulumiverse_scaleway/container.py +573 -343
  42. pulumiverse_scaleway/container_cron.py +80 -78
  43. pulumiverse_scaleway/container_domain.py +52 -50
  44. pulumiverse_scaleway/container_namespace.py +211 -140
  45. pulumiverse_scaleway/container_token.py +80 -78
  46. pulumiverse_scaleway/container_trigger.py +59 -57
  47. pulumiverse_scaleway/containers/__init__.py +2 -1
  48. pulumiverse_scaleway/containers/_inputs.py +72 -71
  49. pulumiverse_scaleway/containers/container.py +573 -343
  50. pulumiverse_scaleway/containers/cron.py +80 -78
  51. pulumiverse_scaleway/containers/domain.py +52 -50
  52. pulumiverse_scaleway/containers/get_container.py +87 -42
  53. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  54. pulumiverse_scaleway/containers/namespace.py +211 -140
  55. pulumiverse_scaleway/containers/outputs.py +62 -61
  56. pulumiverse_scaleway/containers/token.py +80 -78
  57. pulumiverse_scaleway/containers/trigger.py +59 -57
  58. pulumiverse_scaleway/database.py +66 -64
  59. pulumiverse_scaleway/database_acl.py +31 -29
  60. pulumiverse_scaleway/database_backup.py +101 -99
  61. pulumiverse_scaleway/database_instance.py +297 -295
  62. pulumiverse_scaleway/database_privilege.py +73 -71
  63. pulumiverse_scaleway/database_read_replica.py +45 -43
  64. pulumiverse_scaleway/database_user.py +73 -71
  65. pulumiverse_scaleway/databases/__init__.py +2 -1
  66. pulumiverse_scaleway/databases/_inputs.py +191 -190
  67. pulumiverse_scaleway/databases/acl.py +31 -29
  68. pulumiverse_scaleway/databases/database.py +66 -64
  69. pulumiverse_scaleway/databases/database_backup.py +101 -99
  70. pulumiverse_scaleway/databases/get_acl.py +13 -12
  71. pulumiverse_scaleway/databases/get_database.py +19 -18
  72. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  73. pulumiverse_scaleway/databases/get_instance.py +43 -42
  74. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  75. pulumiverse_scaleway/databases/instance.py +297 -295
  76. pulumiverse_scaleway/databases/outputs.py +188 -187
  77. pulumiverse_scaleway/databases/privilege.py +73 -71
  78. pulumiverse_scaleway/databases/read_replica.py +45 -43
  79. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  80. pulumiverse_scaleway/databases/snapshot.py +101 -99
  81. pulumiverse_scaleway/databases/user.py +73 -71
  82. pulumiverse_scaleway/domain/__init__.py +2 -1
  83. pulumiverse_scaleway/domain/_inputs.py +531 -530
  84. pulumiverse_scaleway/domain/get_record.py +38 -37
  85. pulumiverse_scaleway/domain/get_zone.py +24 -23
  86. pulumiverse_scaleway/domain/outputs.py +358 -357
  87. pulumiverse_scaleway/domain/record.py +129 -127
  88. pulumiverse_scaleway/domain/registration.py +94 -92
  89. pulumiverse_scaleway/domain/zone.py +87 -85
  90. pulumiverse_scaleway/domain_record.py +129 -127
  91. pulumiverse_scaleway/domain_zone.py +87 -85
  92. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  93. pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
  94. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  95. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  96. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  97. pulumiverse_scaleway/edge_services_plan.py +31 -29
  98. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  99. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  100. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  101. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  102. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  103. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  104. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  105. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  106. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  107. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  108. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  109. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  110. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  111. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  112. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  113. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  114. pulumiverse_scaleway/file_filesystem.py +552 -0
  115. pulumiverse_scaleway/flexible_ip.py +139 -137
  116. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  117. pulumiverse_scaleway/function.py +394 -284
  118. pulumiverse_scaleway/function_cron.py +80 -78
  119. pulumiverse_scaleway/function_domain.py +52 -50
  120. pulumiverse_scaleway/function_namespace.py +197 -126
  121. pulumiverse_scaleway/function_token.py +80 -78
  122. pulumiverse_scaleway/function_trigger.py +59 -57
  123. pulumiverse_scaleway/functions/__init__.py +2 -1
  124. pulumiverse_scaleway/functions/_inputs.py +42 -41
  125. pulumiverse_scaleway/functions/cron.py +80 -78
  126. pulumiverse_scaleway/functions/domain.py +52 -50
  127. pulumiverse_scaleway/functions/function.py +394 -284
  128. pulumiverse_scaleway/functions/get_function.py +69 -46
  129. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  130. pulumiverse_scaleway/functions/namespace.py +197 -126
  131. pulumiverse_scaleway/functions/outputs.py +26 -25
  132. pulumiverse_scaleway/functions/token.py +80 -78
  133. pulumiverse_scaleway/functions/trigger.py +59 -57
  134. pulumiverse_scaleway/get_account_project.py +21 -20
  135. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  136. pulumiverse_scaleway/get_availability_zones.py +9 -8
  137. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  138. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  139. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  140. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  141. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  142. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  143. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  144. pulumiverse_scaleway/get_block_volume.py +28 -27
  145. pulumiverse_scaleway/get_cockpit.py +10 -9
  146. pulumiverse_scaleway/get_cockpit_source.py +33 -32
  147. pulumiverse_scaleway/get_config.py +13 -12
  148. pulumiverse_scaleway/get_container.py +87 -42
  149. pulumiverse_scaleway/get_container_namespace.py +43 -31
  150. pulumiverse_scaleway/get_database.py +19 -18
  151. pulumiverse_scaleway/get_database_acl.py +13 -12
  152. pulumiverse_scaleway/get_database_backup.py +34 -33
  153. pulumiverse_scaleway/get_database_instance.py +43 -42
  154. pulumiverse_scaleway/get_database_privilege.py +24 -23
  155. pulumiverse_scaleway/get_domain_record.py +38 -37
  156. pulumiverse_scaleway/get_domain_zone.py +24 -23
  157. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  158. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  159. pulumiverse_scaleway/get_function.py +69 -46
  160. pulumiverse_scaleway/get_function_namespace.py +42 -30
  161. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  162. pulumiverse_scaleway/get_iam_application.py +23 -22
  163. pulumiverse_scaleway/get_iam_group.py +25 -24
  164. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  165. pulumiverse_scaleway/get_iam_user.py +23 -22
  166. pulumiverse_scaleway/get_instance_image.py +42 -41
  167. pulumiverse_scaleway/get_instance_ip.py +20 -19
  168. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  169. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  170. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  171. pulumiverse_scaleway/get_instance_server.py +59 -47
  172. pulumiverse_scaleway/get_instance_servers.py +24 -23
  173. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  174. pulumiverse_scaleway/get_instance_volume.py +30 -29
  175. pulumiverse_scaleway/get_iot_device.py +31 -30
  176. pulumiverse_scaleway/get_iot_hub.py +39 -38
  177. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  178. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  179. pulumiverse_scaleway/get_k8s_version.py +16 -15
  180. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  181. pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
  182. pulumiverse_scaleway/get_lb_acls.py +22 -21
  183. pulumiverse_scaleway/get_lb_backend.py +43 -42
  184. pulumiverse_scaleway/get_lb_backends.py +22 -21
  185. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  186. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  187. pulumiverse_scaleway/get_lb_ips.py +29 -28
  188. pulumiverse_scaleway/get_lb_route.py +16 -15
  189. pulumiverse_scaleway/get_lb_routes.py +17 -16
  190. pulumiverse_scaleway/get_lbs.py +24 -23
  191. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  192. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  193. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  194. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  195. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  196. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  197. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  198. pulumiverse_scaleway/get_object_bucket.py +22 -21
  199. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  200. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  201. pulumiverse_scaleway/get_registry_image.py +37 -36
  202. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  203. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  204. pulumiverse_scaleway/get_secret.py +41 -40
  205. pulumiverse_scaleway/get_secret_version.py +34 -33
  206. pulumiverse_scaleway/get_tem_domain.py +43 -42
  207. pulumiverse_scaleway/get_vpc.py +35 -34
  208. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  209. pulumiverse_scaleway/get_vpc_private_network.py +32 -31
  210. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  211. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  212. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  213. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  214. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  215. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  216. pulumiverse_scaleway/get_vpcs.py +24 -23
  217. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  218. pulumiverse_scaleway/get_webhosting.py +36 -35
  219. pulumiverse_scaleway/hosting/__init__.py +2 -1
  220. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  221. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  222. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  223. pulumiverse_scaleway/hosting/hosting.py +164 -162
  224. pulumiverse_scaleway/hosting/outputs.py +139 -138
  225. pulumiverse_scaleway/iam/__init__.py +2 -1
  226. pulumiverse_scaleway/iam/_inputs.py +22 -21
  227. pulumiverse_scaleway/iam/api_key.py +115 -113
  228. pulumiverse_scaleway/iam/application.py +80 -78
  229. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  230. pulumiverse_scaleway/iam/get_application.py +23 -22
  231. pulumiverse_scaleway/iam/get_group.py +25 -24
  232. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  233. pulumiverse_scaleway/iam/get_user.py +23 -22
  234. pulumiverse_scaleway/iam/group.py +115 -113
  235. pulumiverse_scaleway/iam/group_membership.py +45 -43
  236. pulumiverse_scaleway/iam/outputs.py +14 -13
  237. pulumiverse_scaleway/iam/policy.py +136 -134
  238. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  239. pulumiverse_scaleway/iam/user.py +284 -273
  240. pulumiverse_scaleway/iam_api_key.py +115 -113
  241. pulumiverse_scaleway/iam_application.py +80 -78
  242. pulumiverse_scaleway/iam_group.py +115 -113
  243. pulumiverse_scaleway/iam_group_membership.py +45 -43
  244. pulumiverse_scaleway/iam_policy.py +136 -134
  245. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  246. pulumiverse_scaleway/iam_user.py +284 -273
  247. pulumiverse_scaleway/inference/__init__.py +2 -1
  248. pulumiverse_scaleway/inference/_inputs.py +116 -61
  249. pulumiverse_scaleway/inference/deployment.py +225 -176
  250. pulumiverse_scaleway/inference/get_model.py +27 -26
  251. pulumiverse_scaleway/inference/model.py +129 -127
  252. pulumiverse_scaleway/inference/outputs.py +82 -49
  253. pulumiverse_scaleway/inference_deployment.py +225 -176
  254. pulumiverse_scaleway/instance/__init__.py +2 -1
  255. pulumiverse_scaleway/instance/_inputs.py +296 -295
  256. pulumiverse_scaleway/instance/get_image.py +42 -41
  257. pulumiverse_scaleway/instance/get_ip.py +20 -19
  258. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  259. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  260. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  261. pulumiverse_scaleway/instance/get_server.py +59 -47
  262. pulumiverse_scaleway/instance/get_servers.py +24 -23
  263. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  264. pulumiverse_scaleway/instance/get_volume.py +30 -29
  265. pulumiverse_scaleway/instance/image.py +150 -148
  266. pulumiverse_scaleway/instance/ip.py +94 -92
  267. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  268. pulumiverse_scaleway/instance/outputs.py +349 -348
  269. pulumiverse_scaleway/instance/placement_group.py +101 -99
  270. pulumiverse_scaleway/instance/private_nic.py +94 -92
  271. pulumiverse_scaleway/instance/security_group.py +150 -148
  272. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  273. pulumiverse_scaleway/instance/server.py +393 -330
  274. pulumiverse_scaleway/instance/snapshot.py +108 -106
  275. pulumiverse_scaleway/instance/user_data.py +59 -57
  276. pulumiverse_scaleway/instance/volume.py +129 -127
  277. pulumiverse_scaleway/instance_image.py +150 -148
  278. pulumiverse_scaleway/instance_ip.py +94 -92
  279. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  280. pulumiverse_scaleway/instance_placement_group.py +101 -99
  281. pulumiverse_scaleway/instance_private_nic.py +94 -92
  282. pulumiverse_scaleway/instance_security_group.py +150 -148
  283. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  284. pulumiverse_scaleway/instance_server.py +393 -330
  285. pulumiverse_scaleway/instance_snapshot.py +108 -106
  286. pulumiverse_scaleway/instance_user_data.py +59 -57
  287. pulumiverse_scaleway/instance_volume.py +129 -127
  288. pulumiverse_scaleway/iot/__init__.py +2 -1
  289. pulumiverse_scaleway/iot/_inputs.py +98 -97
  290. pulumiverse_scaleway/iot/device.py +122 -120
  291. pulumiverse_scaleway/iot/get_device.py +31 -30
  292. pulumiverse_scaleway/iot/get_hub.py +39 -38
  293. pulumiverse_scaleway/iot/hub.py +206 -204
  294. pulumiverse_scaleway/iot/network.py +94 -92
  295. pulumiverse_scaleway/iot/outputs.py +78 -77
  296. pulumiverse_scaleway/iot/route.py +66 -64
  297. pulumiverse_scaleway/iot_device.py +122 -120
  298. pulumiverse_scaleway/iot_hub.py +206 -204
  299. pulumiverse_scaleway/iot_network.py +94 -92
  300. pulumiverse_scaleway/iot_route.py +66 -64
  301. pulumiverse_scaleway/ipam/__init__.py +2 -1
  302. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  303. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  304. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  305. pulumiverse_scaleway/ipam/ip.py +94 -92
  306. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  307. pulumiverse_scaleway/ipam/outputs.py +90 -89
  308. pulumiverse_scaleway/ipam_ip.py +94 -92
  309. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  310. pulumiverse_scaleway/job/__init__.py +2 -1
  311. pulumiverse_scaleway/job/_inputs.py +38 -37
  312. pulumiverse_scaleway/job/definition.py +143 -141
  313. pulumiverse_scaleway/job/outputs.py +24 -23
  314. pulumiverse_scaleway/job_definition.py +143 -141
  315. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  316. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  317. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  318. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  319. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  320. pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
  321. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  322. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  323. pulumiverse_scaleway/kubernetes/pool.py +290 -288
  324. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
  326. pulumiverse_scaleway/loadbalancer.py +199 -197
  327. pulumiverse_scaleway/loadbalancer_acl.py +73 -71
  328. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  329. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  330. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  331. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  332. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  333. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  334. pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
  335. pulumiverse_scaleway/loadbalancers/acl.py +73 -71
  336. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  337. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  338. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  339. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  340. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  341. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  342. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  343. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  344. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  345. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  346. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  347. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  348. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  350. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  351. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  352. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  353. pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
  354. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  355. pulumiverse_scaleway/mnq/__init__.py +2 -1
  356. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  357. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  358. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  359. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  360. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  361. pulumiverse_scaleway/mnq/outputs.py +20 -19
  362. pulumiverse_scaleway/mnq/sns.py +38 -36
  363. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  364. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  365. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  366. pulumiverse_scaleway/mnq/sqs.py +38 -36
  367. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  368. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  369. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  370. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  371. pulumiverse_scaleway/mnq_sns.py +38 -36
  372. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  373. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  374. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  375. pulumiverse_scaleway/mnq_sqs.py +38 -36
  376. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  377. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  378. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  379. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  380. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  381. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  382. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  383. pulumiverse_scaleway/mongodb/instance.py +199 -197
  384. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  385. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  386. pulumiverse_scaleway/network/__init__.py +2 -1
  387. pulumiverse_scaleway/network/_inputs.py +140 -139
  388. pulumiverse_scaleway/network/acl.py +59 -57
  389. pulumiverse_scaleway/network/gateway_network.py +143 -141
  390. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  391. pulumiverse_scaleway/network/get_private_network.py +32 -31
  392. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  393. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  394. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  395. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  396. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  397. pulumiverse_scaleway/network/get_routes.py +38 -37
  398. pulumiverse_scaleway/network/get_vpc.py +35 -34
  399. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  400. pulumiverse_scaleway/network/outputs.py +206 -205
  401. pulumiverse_scaleway/network/private_network.py +122 -120
  402. pulumiverse_scaleway/network/public_gateway.py +213 -211
  403. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  404. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  405. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  406. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  407. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  408. pulumiverse_scaleway/network/route.py +115 -113
  409. pulumiverse_scaleway/network/vpc.py +101 -99
  410. pulumiverse_scaleway/object/__init__.py +2 -1
  411. pulumiverse_scaleway/object/_inputs.py +127 -126
  412. pulumiverse_scaleway/object/bucket.py +115 -113
  413. pulumiverse_scaleway/object/bucket_acl.py +73 -71
  414. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  415. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  416. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  417. pulumiverse_scaleway/object/get_bucket.py +22 -21
  418. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  419. pulumiverse_scaleway/object/item.py +232 -183
  420. pulumiverse_scaleway/object/outputs.py +114 -113
  421. pulumiverse_scaleway/object_bucket.py +115 -113
  422. pulumiverse_scaleway/object_bucket_acl.py +73 -71
  423. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  424. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  425. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  426. pulumiverse_scaleway/object_item.py +232 -183
  427. pulumiverse_scaleway/observability/__init__.py +2 -1
  428. pulumiverse_scaleway/observability/_inputs.py +89 -88
  429. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  430. pulumiverse_scaleway/observability/cockpit.py +38 -36
  431. pulumiverse_scaleway/observability/get_instance.py +10 -9
  432. pulumiverse_scaleway/observability/get_source.py +33 -32
  433. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  434. pulumiverse_scaleway/observability/outputs.py +77 -76
  435. pulumiverse_scaleway/observability/source.py +115 -113
  436. pulumiverse_scaleway/observability/token.py +66 -64
  437. pulumiverse_scaleway/outputs.py +2797 -2732
  438. pulumiverse_scaleway/provider.py +87 -65
  439. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  440. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  441. pulumiverse_scaleway/redis/__init__.py +2 -1
  442. pulumiverse_scaleway/redis/_inputs.py +63 -62
  443. pulumiverse_scaleway/redis/cluster.py +178 -176
  444. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  445. pulumiverse_scaleway/redis/outputs.py +74 -73
  446. pulumiverse_scaleway/redis_cluster.py +178 -176
  447. pulumiverse_scaleway/registry/__init__.py +2 -1
  448. pulumiverse_scaleway/registry/get_image.py +37 -36
  449. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  450. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  451. pulumiverse_scaleway/registry/namespace.py +87 -85
  452. pulumiverse_scaleway/registry_namespace.py +87 -85
  453. pulumiverse_scaleway/sdb_database.py +80 -78
  454. pulumiverse_scaleway/secret.py +143 -141
  455. pulumiverse_scaleway/secret_version.py +87 -85
  456. pulumiverse_scaleway/secrets/__init__.py +2 -1
  457. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  458. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  459. pulumiverse_scaleway/secrets/get_version.py +34 -33
  460. pulumiverse_scaleway/secrets/outputs.py +64 -63
  461. pulumiverse_scaleway/secrets/secret.py +143 -141
  462. pulumiverse_scaleway/secrets/version.py +87 -85
  463. pulumiverse_scaleway/tem/__init__.py +2 -1
  464. pulumiverse_scaleway/tem/_inputs.py +28 -27
  465. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  466. pulumiverse_scaleway/tem/domain.py +199 -197
  467. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  468. pulumiverse_scaleway/tem/get_domain.py +43 -42
  469. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  470. pulumiverse_scaleway/tem/outputs.py +34 -33
  471. pulumiverse_scaleway/tem/webhook.py +108 -106
  472. pulumiverse_scaleway/tem_domain.py +199 -197
  473. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem_webhook.py +108 -106
  475. pulumiverse_scaleway/vpc.py +101 -99
  476. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  477. pulumiverse_scaleway/vpc_private_network.py +122 -120
  478. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  479. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  480. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  481. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  482. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  483. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  484. pulumiverse_scaleway/vpc_route.py +115 -113
  485. pulumiverse_scaleway/webhosting.py +164 -162
  486. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
  487. pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
  488. pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
  489. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
  490. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -54,25 +55,25 @@ class AclRule(dict):
54
55
  return super().get(key, default)
55
56
 
56
57
  def __init__(__self__, *,
57
- action: Optional[str] = None,
58
- description: Optional[str] = None,
59
- destination: Optional[str] = None,
60
- dst_port_high: Optional[int] = None,
61
- dst_port_low: Optional[int] = None,
62
- protocol: Optional[str] = None,
63
- source: Optional[str] = None,
64
- src_port_high: Optional[int] = None,
65
- src_port_low: Optional[int] = None):
66
- """
67
- :param str action: The policy to apply to the packet.
68
- :param str description: The rule description.
69
- :param str destination: The destination IP range to which this rule applies (CIDR notation with subnet mask).
70
- :param int dst_port_high: The ending port of the destination port range to which this rule applies (inclusive).
71
- :param int dst_port_low: The starting port of the destination port range to which this rule applies (inclusive).
72
- :param str protocol: The protocol to which this rule applies. Default value: ANY.
73
- :param str source: The Source IP range to which this rule applies (CIDR notation with subnet mask).
74
- :param int src_port_high: The ending port of the source port range to which this rule applies (inclusive).
75
- :param int src_port_low: The starting port of the source port range to which this rule applies (inclusive).
58
+ action: Optional[builtins.str] = None,
59
+ description: Optional[builtins.str] = None,
60
+ destination: Optional[builtins.str] = None,
61
+ dst_port_high: Optional[builtins.int] = None,
62
+ dst_port_low: Optional[builtins.int] = None,
63
+ protocol: Optional[builtins.str] = None,
64
+ source: Optional[builtins.str] = None,
65
+ src_port_high: Optional[builtins.int] = None,
66
+ src_port_low: Optional[builtins.int] = None):
67
+ """
68
+ :param builtins.str action: The policy to apply to the packet.
69
+ :param builtins.str description: The rule description.
70
+ :param builtins.str destination: The destination IP range to which this rule applies (CIDR notation with subnet mask).
71
+ :param builtins.int dst_port_high: The ending port of the destination port range to which this rule applies (inclusive).
72
+ :param builtins.int dst_port_low: The starting port of the destination port range to which this rule applies (inclusive).
73
+ :param builtins.str protocol: The protocol to which this rule applies. Default value: ANY.
74
+ :param builtins.str source: The Source IP range to which this rule applies (CIDR notation with subnet mask).
75
+ :param builtins.int src_port_high: The ending port of the source port range to which this rule applies (inclusive).
76
+ :param builtins.int src_port_low: The starting port of the source port range to which this rule applies (inclusive).
76
77
  """
77
78
  if action is not None:
78
79
  pulumi.set(__self__, "action", action)
@@ -95,7 +96,7 @@ class AclRule(dict):
95
96
 
96
97
  @property
97
98
  @pulumi.getter
98
- def action(self) -> Optional[str]:
99
+ def action(self) -> Optional[builtins.str]:
99
100
  """
100
101
  The policy to apply to the packet.
101
102
  """
@@ -103,7 +104,7 @@ class AclRule(dict):
103
104
 
104
105
  @property
105
106
  @pulumi.getter
106
- def description(self) -> Optional[str]:
107
+ def description(self) -> Optional[builtins.str]:
107
108
  """
108
109
  The rule description.
109
110
  """
@@ -111,7 +112,7 @@ class AclRule(dict):
111
112
 
112
113
  @property
113
114
  @pulumi.getter
114
- def destination(self) -> Optional[str]:
115
+ def destination(self) -> Optional[builtins.str]:
115
116
  """
116
117
  The destination IP range to which this rule applies (CIDR notation with subnet mask).
117
118
  """
@@ -119,7 +120,7 @@ class AclRule(dict):
119
120
 
120
121
  @property
121
122
  @pulumi.getter(name="dstPortHigh")
122
- def dst_port_high(self) -> Optional[int]:
123
+ def dst_port_high(self) -> Optional[builtins.int]:
123
124
  """
124
125
  The ending port of the destination port range to which this rule applies (inclusive).
125
126
  """
@@ -127,7 +128,7 @@ class AclRule(dict):
127
128
 
128
129
  @property
129
130
  @pulumi.getter(name="dstPortLow")
130
- def dst_port_low(self) -> Optional[int]:
131
+ def dst_port_low(self) -> Optional[builtins.int]:
131
132
  """
132
133
  The starting port of the destination port range to which this rule applies (inclusive).
133
134
  """
@@ -135,7 +136,7 @@ class AclRule(dict):
135
136
 
136
137
  @property
137
138
  @pulumi.getter
138
- def protocol(self) -> Optional[str]:
139
+ def protocol(self) -> Optional[builtins.str]:
139
140
  """
140
141
  The protocol to which this rule applies. Default value: ANY.
141
142
  """
@@ -143,7 +144,7 @@ class AclRule(dict):
143
144
 
144
145
  @property
145
146
  @pulumi.getter
146
- def source(self) -> Optional[str]:
147
+ def source(self) -> Optional[builtins.str]:
147
148
  """
148
149
  The Source IP range to which this rule applies (CIDR notation with subnet mask).
149
150
  """
@@ -151,7 +152,7 @@ class AclRule(dict):
151
152
 
152
153
  @property
153
154
  @pulumi.getter(name="srcPortHigh")
154
- def src_port_high(self) -> Optional[int]:
155
+ def src_port_high(self) -> Optional[builtins.int]:
155
156
  """
156
157
  The ending port of the source port range to which this rule applies (inclusive).
157
158
  """
@@ -159,7 +160,7 @@ class AclRule(dict):
159
160
 
160
161
  @property
161
162
  @pulumi.getter(name="srcPortLow")
162
- def src_port_low(self) -> Optional[int]:
163
+ def src_port_low(self) -> Optional[builtins.int]:
163
164
  """
164
165
  The starting port of the source port range to which this rule applies (inclusive).
165
166
  """
@@ -188,11 +189,11 @@ class GatewayNetworkIpamConfig(dict):
188
189
  return super().get(key, default)
189
190
 
190
191
  def __init__(__self__, *,
191
- ipam_ip_id: Optional[str] = None,
192
- push_default_route: Optional[bool] = None):
192
+ ipam_ip_id: Optional[builtins.str] = None,
193
+ push_default_route: Optional[builtins.bool] = None):
193
194
  """
194
- :param str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network.
195
- :param bool push_default_route: Defines whether to enable the default route on the GatewayNetwork.
195
+ :param builtins.str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network.
196
+ :param builtins.bool push_default_route: Defines whether to enable the default route on the GatewayNetwork.
196
197
  """
197
198
  if ipam_ip_id is not None:
198
199
  pulumi.set(__self__, "ipam_ip_id", ipam_ip_id)
@@ -201,7 +202,7 @@ class GatewayNetworkIpamConfig(dict):
201
202
 
202
203
  @property
203
204
  @pulumi.getter(name="ipamIpId")
204
- def ipam_ip_id(self) -> Optional[str]:
205
+ def ipam_ip_id(self) -> Optional[builtins.str]:
205
206
  """
206
207
  Use this IPAM-booked IP ID as the Gateway's IP in this Private Network.
207
208
  """
@@ -209,7 +210,7 @@ class GatewayNetworkIpamConfig(dict):
209
210
 
210
211
  @property
211
212
  @pulumi.getter(name="pushDefaultRoute")
212
- def push_default_route(self) -> Optional[bool]:
213
+ def push_default_route(self) -> Optional[builtins.bool]:
213
214
  """
214
215
  Defines whether to enable the default route on the GatewayNetwork.
215
216
  """
@@ -219,11 +220,11 @@ class GatewayNetworkIpamConfig(dict):
219
220
  @pulumi.output_type
220
221
  class GatewayNetworkPrivateIp(dict):
221
222
  def __init__(__self__, *,
222
- address: Optional[str] = None,
223
- id: Optional[str] = None):
223
+ address: Optional[builtins.str] = None,
224
+ id: Optional[builtins.str] = None):
224
225
  """
225
- :param str address: The private IPv4 address.
226
- :param str id: The ID of the IPv4 address resource.
226
+ :param builtins.str address: The private IPv4 address.
227
+ :param builtins.str id: The ID of the IPv4 address resource.
227
228
  """
228
229
  if address is not None:
229
230
  pulumi.set(__self__, "address", address)
@@ -232,7 +233,7 @@ class GatewayNetworkPrivateIp(dict):
232
233
 
233
234
  @property
234
235
  @pulumi.getter
235
- def address(self) -> Optional[str]:
236
+ def address(self) -> Optional[builtins.str]:
236
237
  """
237
238
  The private IPv4 address.
238
239
  """
@@ -240,7 +241,7 @@ class GatewayNetworkPrivateIp(dict):
240
241
 
241
242
  @property
242
243
  @pulumi.getter
243
- def id(self) -> Optional[str]:
244
+ def id(self) -> Optional[builtins.str]:
244
245
  """
245
246
  The ID of the IPv4 address resource.
246
247
  """
@@ -273,21 +274,21 @@ class PrivateNetworkIpv4Subnet(dict):
273
274
  return super().get(key, default)
274
275
 
275
276
  def __init__(__self__, *,
276
- address: Optional[str] = None,
277
- created_at: Optional[str] = None,
278
- id: Optional[str] = None,
279
- prefix_length: Optional[int] = None,
280
- subnet: Optional[str] = None,
281
- subnet_mask: Optional[str] = None,
282
- updated_at: Optional[str] = None):
283
- """
284
- :param str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
285
- :param str created_at: The date and time of the creation of the subnet.
286
- :param str id: The subnet ID.
287
- :param int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
288
- :param str subnet: The subnet CIDR.
289
- :param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
290
- :param str updated_at: The date and time of the last update of the subnet.
277
+ address: Optional[builtins.str] = None,
278
+ created_at: Optional[builtins.str] = None,
279
+ id: Optional[builtins.str] = None,
280
+ prefix_length: Optional[builtins.int] = None,
281
+ subnet: Optional[builtins.str] = None,
282
+ subnet_mask: Optional[builtins.str] = None,
283
+ updated_at: Optional[builtins.str] = None):
284
+ """
285
+ :param builtins.str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
286
+ :param builtins.str created_at: The date and time of the creation of the subnet.
287
+ :param builtins.str id: The subnet ID.
288
+ :param builtins.int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
289
+ :param builtins.str subnet: The subnet CIDR.
290
+ :param builtins.str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
291
+ :param builtins.str updated_at: The date and time of the last update of the subnet.
291
292
  """
292
293
  if address is not None:
293
294
  pulumi.set(__self__, "address", address)
@@ -306,7 +307,7 @@ class PrivateNetworkIpv4Subnet(dict):
306
307
 
307
308
  @property
308
309
  @pulumi.getter
309
- def address(self) -> Optional[str]:
310
+ def address(self) -> Optional[builtins.str]:
310
311
  """
311
312
  The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
312
313
  """
@@ -314,7 +315,7 @@ class PrivateNetworkIpv4Subnet(dict):
314
315
 
315
316
  @property
316
317
  @pulumi.getter(name="createdAt")
317
- def created_at(self) -> Optional[str]:
318
+ def created_at(self) -> Optional[builtins.str]:
318
319
  """
319
320
  The date and time of the creation of the subnet.
320
321
  """
@@ -322,7 +323,7 @@ class PrivateNetworkIpv4Subnet(dict):
322
323
 
323
324
  @property
324
325
  @pulumi.getter
325
- def id(self) -> Optional[str]:
326
+ def id(self) -> Optional[builtins.str]:
326
327
  """
327
328
  The subnet ID.
328
329
  """
@@ -330,7 +331,7 @@ class PrivateNetworkIpv4Subnet(dict):
330
331
 
331
332
  @property
332
333
  @pulumi.getter(name="prefixLength")
333
- def prefix_length(self) -> Optional[int]:
334
+ def prefix_length(self) -> Optional[builtins.int]:
334
335
  """
335
336
  The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
336
337
  """
@@ -338,7 +339,7 @@ class PrivateNetworkIpv4Subnet(dict):
338
339
 
339
340
  @property
340
341
  @pulumi.getter
341
- def subnet(self) -> Optional[str]:
342
+ def subnet(self) -> Optional[builtins.str]:
342
343
  """
343
344
  The subnet CIDR.
344
345
  """
@@ -346,7 +347,7 @@ class PrivateNetworkIpv4Subnet(dict):
346
347
 
347
348
  @property
348
349
  @pulumi.getter(name="subnetMask")
349
- def subnet_mask(self) -> Optional[str]:
350
+ def subnet_mask(self) -> Optional[builtins.str]:
350
351
  """
351
352
  The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
352
353
  """
@@ -354,7 +355,7 @@ class PrivateNetworkIpv4Subnet(dict):
354
355
 
355
356
  @property
356
357
  @pulumi.getter(name="updatedAt")
357
- def updated_at(self) -> Optional[str]:
358
+ def updated_at(self) -> Optional[builtins.str]:
358
359
  """
359
360
  The date and time of the last update of the subnet.
360
361
  """
@@ -387,21 +388,21 @@ class PrivateNetworkIpv6Subnet(dict):
387
388
  return super().get(key, default)
388
389
 
389
390
  def __init__(__self__, *,
390
- address: Optional[str] = None,
391
- created_at: Optional[str] = None,
392
- id: Optional[str] = None,
393
- prefix_length: Optional[int] = None,
394
- subnet: Optional[str] = None,
395
- subnet_mask: Optional[str] = None,
396
- updated_at: Optional[str] = None):
397
- """
398
- :param str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
399
- :param str created_at: The date and time of the creation of the subnet.
400
- :param str id: The subnet ID.
401
- :param int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
402
- :param str subnet: The subnet CIDR.
403
- :param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
404
- :param str updated_at: The date and time of the last update of the subnet.
391
+ address: Optional[builtins.str] = None,
392
+ created_at: Optional[builtins.str] = None,
393
+ id: Optional[builtins.str] = None,
394
+ prefix_length: Optional[builtins.int] = None,
395
+ subnet: Optional[builtins.str] = None,
396
+ subnet_mask: Optional[builtins.str] = None,
397
+ updated_at: Optional[builtins.str] = None):
398
+ """
399
+ :param builtins.str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
400
+ :param builtins.str created_at: The date and time of the creation of the subnet.
401
+ :param builtins.str id: The subnet ID.
402
+ :param builtins.int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
403
+ :param builtins.str subnet: The subnet CIDR.
404
+ :param builtins.str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
405
+ :param builtins.str updated_at: The date and time of the last update of the subnet.
405
406
  """
406
407
  if address is not None:
407
408
  pulumi.set(__self__, "address", address)
@@ -420,7 +421,7 @@ class PrivateNetworkIpv6Subnet(dict):
420
421
 
421
422
  @property
422
423
  @pulumi.getter
423
- def address(self) -> Optional[str]:
424
+ def address(self) -> Optional[builtins.str]:
424
425
  """
425
426
  The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
426
427
  """
@@ -428,7 +429,7 @@ class PrivateNetworkIpv6Subnet(dict):
428
429
 
429
430
  @property
430
431
  @pulumi.getter(name="createdAt")
431
- def created_at(self) -> Optional[str]:
432
+ def created_at(self) -> Optional[builtins.str]:
432
433
  """
433
434
  The date and time of the creation of the subnet.
434
435
  """
@@ -436,7 +437,7 @@ class PrivateNetworkIpv6Subnet(dict):
436
437
 
437
438
  @property
438
439
  @pulumi.getter
439
- def id(self) -> Optional[str]:
440
+ def id(self) -> Optional[builtins.str]:
440
441
  """
441
442
  The subnet ID.
442
443
  """
@@ -444,7 +445,7 @@ class PrivateNetworkIpv6Subnet(dict):
444
445
 
445
446
  @property
446
447
  @pulumi.getter(name="prefixLength")
447
- def prefix_length(self) -> Optional[int]:
448
+ def prefix_length(self) -> Optional[builtins.int]:
448
449
  """
449
450
  The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
450
451
  """
@@ -452,7 +453,7 @@ class PrivateNetworkIpv6Subnet(dict):
452
453
 
453
454
  @property
454
455
  @pulumi.getter
455
- def subnet(self) -> Optional[str]:
456
+ def subnet(self) -> Optional[builtins.str]:
456
457
  """
457
458
  The subnet CIDR.
458
459
  """
@@ -460,7 +461,7 @@ class PrivateNetworkIpv6Subnet(dict):
460
461
 
461
462
  @property
462
463
  @pulumi.getter(name="subnetMask")
463
- def subnet_mask(self) -> Optional[str]:
464
+ def subnet_mask(self) -> Optional[builtins.str]:
464
465
  """
465
466
  The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
466
467
  """
@@ -468,7 +469,7 @@ class PrivateNetworkIpv6Subnet(dict):
468
469
 
469
470
  @property
470
471
  @pulumi.getter(name="updatedAt")
471
- def updated_at(self) -> Optional[str]:
472
+ def updated_at(self) -> Optional[builtins.str]:
472
473
  """
473
474
  The date and time of the last update of the subnet.
474
475
  """
@@ -478,18 +479,18 @@ class PrivateNetworkIpv6Subnet(dict):
478
479
  @pulumi.output_type
479
480
  class GetGatewayNetworkIpamConfigResult(dict):
480
481
  def __init__(__self__, *,
481
- ipam_ip_id: str,
482
- push_default_route: bool):
482
+ ipam_ip_id: builtins.str,
483
+ push_default_route: builtins.bool):
483
484
  """
484
- :param str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network
485
- :param bool push_default_route: Defines whether the default route is enabled on that Gateway Network
485
+ :param builtins.str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network
486
+ :param builtins.bool push_default_route: Defines whether the default route is enabled on that Gateway Network
486
487
  """
487
488
  pulumi.set(__self__, "ipam_ip_id", ipam_ip_id)
488
489
  pulumi.set(__self__, "push_default_route", push_default_route)
489
490
 
490
491
  @property
491
492
  @pulumi.getter(name="ipamIpId")
492
- def ipam_ip_id(self) -> str:
493
+ def ipam_ip_id(self) -> builtins.str:
493
494
  """
494
495
  Use this IPAM-booked IP ID as the Gateway's IP in this Private Network
495
496
  """
@@ -497,7 +498,7 @@ class GetGatewayNetworkIpamConfigResult(dict):
497
498
 
498
499
  @property
499
500
  @pulumi.getter(name="pushDefaultRoute")
500
- def push_default_route(self) -> bool:
501
+ def push_default_route(self) -> builtins.bool:
501
502
  """
502
503
  Defines whether the default route is enabled on that Gateway Network
503
504
  """
@@ -507,18 +508,18 @@ class GetGatewayNetworkIpamConfigResult(dict):
507
508
  @pulumi.output_type
508
509
  class GetGatewayNetworkPrivateIpResult(dict):
509
510
  def __init__(__self__, *,
510
- address: str,
511
- id: str):
511
+ address: builtins.str,
512
+ id: builtins.str):
512
513
  """
513
- :param str address: The private IPv4 address.
514
- :param str id: The ID of the IPv4 address resource.
514
+ :param builtins.str address: The private IPv4 address.
515
+ :param builtins.str id: The ID of the IPv4 address resource.
515
516
  """
516
517
  pulumi.set(__self__, "address", address)
517
518
  pulumi.set(__self__, "id", id)
518
519
 
519
520
  @property
520
521
  @pulumi.getter
521
- def address(self) -> str:
522
+ def address(self) -> builtins.str:
522
523
  """
523
524
  The private IPv4 address.
524
525
  """
@@ -526,7 +527,7 @@ class GetGatewayNetworkPrivateIpResult(dict):
526
527
 
527
528
  @property
528
529
  @pulumi.getter
529
- def id(self) -> str:
530
+ def id(self) -> builtins.str:
530
531
  """
531
532
  The ID of the IPv4 address resource.
532
533
  """
@@ -536,21 +537,21 @@ class GetGatewayNetworkPrivateIpResult(dict):
536
537
  @pulumi.output_type
537
538
  class GetPrivateNetworkIpv4SubnetResult(dict):
538
539
  def __init__(__self__, *,
539
- address: str,
540
- created_at: str,
541
- id: str,
542
- prefix_length: int,
543
- subnet: str,
544
- subnet_mask: str,
545
- updated_at: str):
546
- """
547
- :param str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
548
- :param str created_at: The date and time of the creation of the subnet
549
- :param str id: The ID of the Private Network.
550
- :param int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
551
- :param str subnet: The subnet CIDR
552
- :param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
553
- :param str updated_at: The date and time of the last update of the subnet
540
+ address: builtins.str,
541
+ created_at: builtins.str,
542
+ id: builtins.str,
543
+ prefix_length: builtins.int,
544
+ subnet: builtins.str,
545
+ subnet_mask: builtins.str,
546
+ updated_at: builtins.str):
547
+ """
548
+ :param builtins.str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
549
+ :param builtins.str created_at: The date and time of the creation of the subnet
550
+ :param builtins.str id: The ID of the Private Network.
551
+ :param builtins.int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
552
+ :param builtins.str subnet: The subnet CIDR
553
+ :param builtins.str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
554
+ :param builtins.str updated_at: The date and time of the last update of the subnet
554
555
  """
555
556
  pulumi.set(__self__, "address", address)
556
557
  pulumi.set(__self__, "created_at", created_at)
@@ -562,7 +563,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
562
563
 
563
564
  @property
564
565
  @pulumi.getter
565
- def address(self) -> str:
566
+ def address(self) -> builtins.str:
566
567
  """
567
568
  The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
568
569
  """
@@ -570,7 +571,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
570
571
 
571
572
  @property
572
573
  @pulumi.getter(name="createdAt")
573
- def created_at(self) -> str:
574
+ def created_at(self) -> builtins.str:
574
575
  """
575
576
  The date and time of the creation of the subnet
576
577
  """
@@ -578,7 +579,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
578
579
 
579
580
  @property
580
581
  @pulumi.getter
581
- def id(self) -> str:
582
+ def id(self) -> builtins.str:
582
583
  """
583
584
  The ID of the Private Network.
584
585
  """
@@ -586,7 +587,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
586
587
 
587
588
  @property
588
589
  @pulumi.getter(name="prefixLength")
589
- def prefix_length(self) -> int:
590
+ def prefix_length(self) -> builtins.int:
590
591
  """
591
592
  The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
592
593
  """
@@ -594,7 +595,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
594
595
 
595
596
  @property
596
597
  @pulumi.getter
597
- def subnet(self) -> str:
598
+ def subnet(self) -> builtins.str:
598
599
  """
599
600
  The subnet CIDR
600
601
  """
@@ -602,7 +603,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
602
603
 
603
604
  @property
604
605
  @pulumi.getter(name="subnetMask")
605
- def subnet_mask(self) -> str:
606
+ def subnet_mask(self) -> builtins.str:
606
607
  """
607
608
  The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
608
609
  """
@@ -610,7 +611,7 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
610
611
 
611
612
  @property
612
613
  @pulumi.getter(name="updatedAt")
613
- def updated_at(self) -> str:
614
+ def updated_at(self) -> builtins.str:
614
615
  """
615
616
  The date and time of the last update of the subnet
616
617
  """
@@ -620,21 +621,21 @@ class GetPrivateNetworkIpv4SubnetResult(dict):
620
621
  @pulumi.output_type
621
622
  class GetPrivateNetworkIpv6SubnetResult(dict):
622
623
  def __init__(__self__, *,
623
- address: str,
624
- created_at: str,
625
- id: str,
626
- prefix_length: int,
627
- subnet: str,
628
- subnet_mask: str,
629
- updated_at: str):
630
- """
631
- :param str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
632
- :param str created_at: The date and time of the creation of the subnet
633
- :param str id: The ID of the Private Network.
634
- :param int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
635
- :param str subnet: The subnet CIDR
636
- :param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
637
- :param str updated_at: The date and time of the last update of the subnet
624
+ address: builtins.str,
625
+ created_at: builtins.str,
626
+ id: builtins.str,
627
+ prefix_length: builtins.int,
628
+ subnet: builtins.str,
629
+ subnet_mask: builtins.str,
630
+ updated_at: builtins.str):
631
+ """
632
+ :param builtins.str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
633
+ :param builtins.str created_at: The date and time of the creation of the subnet
634
+ :param builtins.str id: The ID of the Private Network.
635
+ :param builtins.int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
636
+ :param builtins.str subnet: The subnet CIDR
637
+ :param builtins.str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
638
+ :param builtins.str updated_at: The date and time of the last update of the subnet
638
639
  """
639
640
  pulumi.set(__self__, "address", address)
640
641
  pulumi.set(__self__, "created_at", created_at)
@@ -646,7 +647,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
646
647
 
647
648
  @property
648
649
  @pulumi.getter
649
- def address(self) -> str:
650
+ def address(self) -> builtins.str:
650
651
  """
651
652
  The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
652
653
  """
@@ -654,7 +655,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
654
655
 
655
656
  @property
656
657
  @pulumi.getter(name="createdAt")
657
- def created_at(self) -> str:
658
+ def created_at(self) -> builtins.str:
658
659
  """
659
660
  The date and time of the creation of the subnet
660
661
  """
@@ -662,7 +663,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
662
663
 
663
664
  @property
664
665
  @pulumi.getter
665
- def id(self) -> str:
666
+ def id(self) -> builtins.str:
666
667
  """
667
668
  The ID of the Private Network.
668
669
  """
@@ -670,7 +671,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
670
671
 
671
672
  @property
672
673
  @pulumi.getter(name="prefixLength")
673
- def prefix_length(self) -> int:
674
+ def prefix_length(self) -> builtins.int:
674
675
  """
675
676
  The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
676
677
  """
@@ -678,7 +679,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
678
679
 
679
680
  @property
680
681
  @pulumi.getter
681
- def subnet(self) -> str:
682
+ def subnet(self) -> builtins.str:
682
683
  """
683
684
  The subnet CIDR
684
685
  """
@@ -686,7 +687,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
686
687
 
687
688
  @property
688
689
  @pulumi.getter(name="subnetMask")
689
- def subnet_mask(self) -> str:
690
+ def subnet_mask(self) -> builtins.str:
690
691
  """
691
692
  The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
692
693
  """
@@ -694,7 +695,7 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
694
695
 
695
696
  @property
696
697
  @pulumi.getter(name="updatedAt")
697
- def updated_at(self) -> str:
698
+ def updated_at(self) -> builtins.str:
698
699
  """
699
700
  The date and time of the last update of the subnet
700
701
  """
@@ -704,32 +705,32 @@ class GetPrivateNetworkIpv6SubnetResult(dict):
704
705
  @pulumi.output_type
705
706
  class GetRoutesRouteResult(dict):
706
707
  def __init__(__self__, *,
707
- created_at: str,
708
- description: str,
709
- destination: str,
710
- id: str,
711
- nexthop_ip: str,
712
- nexthop_name: str,
713
- nexthop_private_network_id: str,
714
- nexthop_resource_id: str,
715
- nexthop_resource_type: str,
716
- region: str,
717
- tags: Sequence[str],
718
- vpc_id: str):
719
- """
720
- :param str created_at: The date on which the route was created (RFC 3339 format).
721
- :param str description: The description of the route.
722
- :param str destination: The destination IP or IP range of the route.
723
- :param str id: The ID of the route.
708
+ created_at: builtins.str,
709
+ description: builtins.str,
710
+ destination: builtins.str,
711
+ id: builtins.str,
712
+ nexthop_ip: builtins.str,
713
+ nexthop_name: builtins.str,
714
+ nexthop_private_network_id: builtins.str,
715
+ nexthop_resource_id: builtins.str,
716
+ nexthop_resource_type: builtins.str,
717
+ region: builtins.str,
718
+ tags: Sequence[builtins.str],
719
+ vpc_id: builtins.str):
720
+ """
721
+ :param builtins.str created_at: The date on which the route was created (RFC 3339 format).
722
+ :param builtins.str description: The description of the route.
723
+ :param builtins.str destination: The destination IP or IP range of the route.
724
+ :param builtins.str id: The ID of the route.
724
725
  > **Important:** route IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
725
- :param str nexthop_ip: The IP of the route's next hop.
726
- :param str nexthop_name: The name of the route's next hop.
727
- :param str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
728
- :param str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
729
- :param str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
730
- :param str region: `region`). The region in which the routes exist.
731
- :param Sequence[str] tags: List of tags to filter for. routes with these exact tags are listed.
732
- :param str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
726
+ :param builtins.str nexthop_ip: The IP of the route's next hop.
727
+ :param builtins.str nexthop_name: The name of the route's next hop.
728
+ :param builtins.str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
729
+ :param builtins.str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
730
+ :param builtins.str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
731
+ :param builtins.str region: `region`). The region in which the routes exist.
732
+ :param Sequence[builtins.str] tags: List of tags to filter for. routes with these exact tags are listed.
733
+ :param builtins.str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
733
734
  """
734
735
  pulumi.set(__self__, "created_at", created_at)
735
736
  pulumi.set(__self__, "description", description)
@@ -746,7 +747,7 @@ class GetRoutesRouteResult(dict):
746
747
 
747
748
  @property
748
749
  @pulumi.getter(name="createdAt")
749
- def created_at(self) -> str:
750
+ def created_at(self) -> builtins.str:
750
751
  """
751
752
  The date on which the route was created (RFC 3339 format).
752
753
  """
@@ -754,7 +755,7 @@ class GetRoutesRouteResult(dict):
754
755
 
755
756
  @property
756
757
  @pulumi.getter
757
- def description(self) -> str:
758
+ def description(self) -> builtins.str:
758
759
  """
759
760
  The description of the route.
760
761
  """
@@ -762,7 +763,7 @@ class GetRoutesRouteResult(dict):
762
763
 
763
764
  @property
764
765
  @pulumi.getter
765
- def destination(self) -> str:
766
+ def destination(self) -> builtins.str:
766
767
  """
767
768
  The destination IP or IP range of the route.
768
769
  """
@@ -770,7 +771,7 @@ class GetRoutesRouteResult(dict):
770
771
 
771
772
  @property
772
773
  @pulumi.getter
773
- def id(self) -> str:
774
+ def id(self) -> builtins.str:
774
775
  """
775
776
  The ID of the route.
776
777
  > **Important:** route IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
@@ -779,7 +780,7 @@ class GetRoutesRouteResult(dict):
779
780
 
780
781
  @property
781
782
  @pulumi.getter(name="nexthopIp")
782
- def nexthop_ip(self) -> str:
783
+ def nexthop_ip(self) -> builtins.str:
783
784
  """
784
785
  The IP of the route's next hop.
785
786
  """
@@ -787,7 +788,7 @@ class GetRoutesRouteResult(dict):
787
788
 
788
789
  @property
789
790
  @pulumi.getter(name="nexthopName")
790
- def nexthop_name(self) -> str:
791
+ def nexthop_name(self) -> builtins.str:
791
792
  """
792
793
  The name of the route's next hop.
793
794
  """
@@ -795,7 +796,7 @@ class GetRoutesRouteResult(dict):
795
796
 
796
797
  @property
797
798
  @pulumi.getter(name="nexthopPrivateNetworkId")
798
- def nexthop_private_network_id(self) -> str:
799
+ def nexthop_private_network_id(self) -> builtins.str:
799
800
  """
800
801
  The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
801
802
  """
@@ -803,7 +804,7 @@ class GetRoutesRouteResult(dict):
803
804
 
804
805
  @property
805
806
  @pulumi.getter(name="nexthopResourceId")
806
- def nexthop_resource_id(self) -> str:
807
+ def nexthop_resource_id(self) -> builtins.str:
807
808
  """
808
809
  The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
809
810
  """
@@ -811,7 +812,7 @@ class GetRoutesRouteResult(dict):
811
812
 
812
813
  @property
813
814
  @pulumi.getter(name="nexthopResourceType")
814
- def nexthop_resource_type(self) -> str:
815
+ def nexthop_resource_type(self) -> builtins.str:
815
816
  """
816
817
  The next hop resource type to filter for. routes with a similar next hop resource type are listed.
817
818
  """
@@ -819,7 +820,7 @@ class GetRoutesRouteResult(dict):
819
820
 
820
821
  @property
821
822
  @pulumi.getter
822
- def region(self) -> str:
823
+ def region(self) -> builtins.str:
823
824
  """
824
825
  `region`). The region in which the routes exist.
825
826
  """
@@ -827,7 +828,7 @@ class GetRoutesRouteResult(dict):
827
828
 
828
829
  @property
829
830
  @pulumi.getter
830
- def tags(self) -> Sequence[str]:
831
+ def tags(self) -> Sequence[builtins.str]:
831
832
  """
832
833
  List of tags to filter for. routes with these exact tags are listed.
833
834
  """
@@ -835,7 +836,7 @@ class GetRoutesRouteResult(dict):
835
836
 
836
837
  @property
837
838
  @pulumi.getter(name="vpcId")
838
- def vpc_id(self) -> str:
839
+ def vpc_id(self) -> builtins.str:
839
840
  """
840
841
  The VPC ID to filter for. routes with a similar VPC ID are listed.
841
842
  """
@@ -845,25 +846,25 @@ class GetRoutesRouteResult(dict):
845
846
  @pulumi.output_type
846
847
  class GetVpcsVpcResult(dict):
847
848
  def __init__(__self__, *,
848
- created_at: str,
849
- id: str,
850
- is_default: bool,
851
- name: str,
852
- organization_id: str,
853
- project_id: str,
854
- region: str,
855
- tags: Sequence[str],
856
- update_at: str):
857
- """
858
- :param str created_at: Date and time of VPC's creation (RFC 3339 format).
859
- :param str id: The associated VPC ID.
849
+ created_at: builtins.str,
850
+ id: builtins.str,
851
+ is_default: builtins.bool,
852
+ name: builtins.str,
853
+ organization_id: builtins.str,
854
+ project_id: builtins.str,
855
+ region: builtins.str,
856
+ tags: Sequence[builtins.str],
857
+ update_at: builtins.str):
858
+ """
859
+ :param builtins.str created_at: Date and time of VPC's creation (RFC 3339 format).
860
+ :param builtins.str id: The associated VPC ID.
860
861
  > **Important:** VPC IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
861
- :param bool is_default: Defines whether the VPC is the default one for its Project.
862
- :param str name: The VPC name to filter for. VPCs with a similar name are listed.
863
- :param str organization_id: The Organization ID the VPC is associated with.
864
- :param str project_id: The ID of the Project the VPC is associated with.
865
- :param str region: `region`). The region in which the VPCs exist.
866
- :param Sequence[str] tags: List of tags to filter for. VPCs with these exact tags are listed.
862
+ :param builtins.bool is_default: Defines whether the VPC is the default one for its Project.
863
+ :param builtins.str name: The VPC name to filter for. VPCs with a similar name are listed.
864
+ :param builtins.str organization_id: The Organization ID the VPC is associated with.
865
+ :param builtins.str project_id: The ID of the Project the VPC is associated with.
866
+ :param builtins.str region: `region`). The region in which the VPCs exist.
867
+ :param Sequence[builtins.str] tags: List of tags to filter for. VPCs with these exact tags are listed.
867
868
  """
868
869
  pulumi.set(__self__, "created_at", created_at)
869
870
  pulumi.set(__self__, "id", id)
@@ -877,7 +878,7 @@ class GetVpcsVpcResult(dict):
877
878
 
878
879
  @property
879
880
  @pulumi.getter(name="createdAt")
880
- def created_at(self) -> str:
881
+ def created_at(self) -> builtins.str:
881
882
  """
882
883
  Date and time of VPC's creation (RFC 3339 format).
883
884
  """
@@ -885,7 +886,7 @@ class GetVpcsVpcResult(dict):
885
886
 
886
887
  @property
887
888
  @pulumi.getter
888
- def id(self) -> str:
889
+ def id(self) -> builtins.str:
889
890
  """
890
891
  The associated VPC ID.
891
892
  > **Important:** VPC IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
@@ -894,7 +895,7 @@ class GetVpcsVpcResult(dict):
894
895
 
895
896
  @property
896
897
  @pulumi.getter(name="isDefault")
897
- def is_default(self) -> bool:
898
+ def is_default(self) -> builtins.bool:
898
899
  """
899
900
  Defines whether the VPC is the default one for its Project.
900
901
  """
@@ -902,7 +903,7 @@ class GetVpcsVpcResult(dict):
902
903
 
903
904
  @property
904
905
  @pulumi.getter
905
- def name(self) -> str:
906
+ def name(self) -> builtins.str:
906
907
  """
907
908
  The VPC name to filter for. VPCs with a similar name are listed.
908
909
  """
@@ -910,7 +911,7 @@ class GetVpcsVpcResult(dict):
910
911
 
911
912
  @property
912
913
  @pulumi.getter(name="organizationId")
913
- def organization_id(self) -> str:
914
+ def organization_id(self) -> builtins.str:
914
915
  """
915
916
  The Organization ID the VPC is associated with.
916
917
  """
@@ -918,7 +919,7 @@ class GetVpcsVpcResult(dict):
918
919
 
919
920
  @property
920
921
  @pulumi.getter(name="projectId")
921
- def project_id(self) -> str:
922
+ def project_id(self) -> builtins.str:
922
923
  """
923
924
  The ID of the Project the VPC is associated with.
924
925
  """
@@ -926,7 +927,7 @@ class GetVpcsVpcResult(dict):
926
927
 
927
928
  @property
928
929
  @pulumi.getter
929
- def region(self) -> str:
930
+ def region(self) -> builtins.str:
930
931
  """
931
932
  `region`). The region in which the VPCs exist.
932
933
  """
@@ -934,7 +935,7 @@ class GetVpcsVpcResult(dict):
934
935
 
935
936
  @property
936
937
  @pulumi.getter
937
- def tags(self) -> Sequence[str]:
938
+ def tags(self) -> Sequence[builtins.str]:
938
939
  """
939
940
  List of tags to filter for. VPCs with these exact tags are listed.
940
941
  """
@@ -942,7 +943,7 @@ class GetVpcsVpcResult(dict):
942
943
 
943
944
  @property
944
945
  @pulumi.getter(name="updateAt")
945
- def update_at(self) -> str:
946
+ def update_at(self) -> builtins.str:
946
947
  return pulumi.get(self, "update_at")
947
948
 
948
949