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

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