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

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