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
@@ -20,27 +19,27 @@ __all__ = ['LoadbalancerRouteArgs', 'LoadbalancerRoute']
20
19
  @pulumi.input_type
21
20
  class LoadbalancerRouteArgs:
22
21
  def __init__(__self__, *,
23
- backend_id: pulumi.Input[builtins.str],
24
- frontend_id: pulumi.Input[builtins.str],
25
- match_host_header: Optional[pulumi.Input[builtins.str]] = None,
26
- match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
27
- match_sni: Optional[pulumi.Input[builtins.str]] = None,
28
- match_subdomains: Optional[pulumi.Input[builtins.bool]] = None):
22
+ backend_id: pulumi.Input[_builtins.str],
23
+ frontend_id: pulumi.Input[_builtins.str],
24
+ match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
25
+ match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
26
+ match_sni: Optional[pulumi.Input[_builtins.str]] = None,
27
+ match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None):
29
28
  """
30
29
  The set of arguments for constructing a LoadbalancerRoute resource.
31
- :param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
32
- :param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
33
- :param pulumi.Input[builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
30
+ :param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
31
+ :param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
32
+ :param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
34
33
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
35
34
 
36
35
  > **Important:** This field should be set for routes on HTTP Load Balancers.
37
- :param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
36
+ :param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
38
37
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
39
- :param pulumi.Input[builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
38
+ :param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
40
39
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
41
40
 
42
41
  > **Important:** This field should be set for routes on TCP Load Balancers.
43
- :param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
42
+ :param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
44
43
  """
45
44
  pulumi.set(__self__, "backend_id", backend_id)
46
45
  pulumi.set(__self__, "frontend_id", frontend_id)
@@ -53,33 +52,33 @@ class LoadbalancerRouteArgs:
53
52
  if match_subdomains is not None:
54
53
  pulumi.set(__self__, "match_subdomains", match_subdomains)
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter(name="backendId")
58
- def backend_id(self) -> pulumi.Input[builtins.str]:
57
+ def backend_id(self) -> pulumi.Input[_builtins.str]:
59
58
  """
60
59
  The ID of the backend the route is associated with.
61
60
  """
62
61
  return pulumi.get(self, "backend_id")
63
62
 
64
63
  @backend_id.setter
65
- def backend_id(self, value: pulumi.Input[builtins.str]):
64
+ def backend_id(self, value: pulumi.Input[_builtins.str]):
66
65
  pulumi.set(self, "backend_id", value)
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter(name="frontendId")
70
- def frontend_id(self) -> pulumi.Input[builtins.str]:
69
+ def frontend_id(self) -> pulumi.Input[_builtins.str]:
71
70
  """
72
71
  The ID of the frontend the route is associated with.
73
72
  """
74
73
  return pulumi.get(self, "frontend_id")
75
74
 
76
75
  @frontend_id.setter
77
- def frontend_id(self, value: pulumi.Input[builtins.str]):
76
+ def frontend_id(self, value: pulumi.Input[_builtins.str]):
78
77
  pulumi.set(self, "frontend_id", value)
79
78
 
80
- @property
79
+ @_builtins.property
81
80
  @pulumi.getter(name="matchHostHeader")
82
- def match_host_header(self) -> Optional[pulumi.Input[builtins.str]]:
81
+ def match_host_header(self) -> Optional[pulumi.Input[_builtins.str]]:
83
82
  """
84
83
  The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
85
84
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -89,12 +88,12 @@ class LoadbalancerRouteArgs:
89
88
  return pulumi.get(self, "match_host_header")
90
89
 
91
90
  @match_host_header.setter
92
- def match_host_header(self, value: Optional[pulumi.Input[builtins.str]]):
91
+ def match_host_header(self, value: Optional[pulumi.Input[_builtins.str]]):
93
92
  pulumi.set(self, "match_host_header", value)
94
93
 
95
- @property
94
+ @_builtins.property
96
95
  @pulumi.getter(name="matchPathBegin")
97
- def match_path_begin(self) -> Optional[pulumi.Input[builtins.str]]:
96
+ def match_path_begin(self) -> Optional[pulumi.Input[_builtins.str]]:
98
97
  """
99
98
  The value to match in the URL beginning path from an incoming request.
100
99
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -102,12 +101,12 @@ class LoadbalancerRouteArgs:
102
101
  return pulumi.get(self, "match_path_begin")
103
102
 
104
103
  @match_path_begin.setter
105
- def match_path_begin(self, value: Optional[pulumi.Input[builtins.str]]):
104
+ def match_path_begin(self, value: Optional[pulumi.Input[_builtins.str]]):
106
105
  pulumi.set(self, "match_path_begin", value)
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  @pulumi.getter(name="matchSni")
110
- def match_sni(self) -> Optional[pulumi.Input[builtins.str]]:
109
+ def match_sni(self) -> Optional[pulumi.Input[_builtins.str]]:
111
110
  """
112
111
  The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
113
112
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -117,50 +116,50 @@ class LoadbalancerRouteArgs:
117
116
  return pulumi.get(self, "match_sni")
118
117
 
119
118
  @match_sni.setter
120
- def match_sni(self, value: Optional[pulumi.Input[builtins.str]]):
119
+ def match_sni(self, value: Optional[pulumi.Input[_builtins.str]]):
121
120
  pulumi.set(self, "match_sni", value)
122
121
 
123
- @property
122
+ @_builtins.property
124
123
  @pulumi.getter(name="matchSubdomains")
125
- def match_subdomains(self) -> Optional[pulumi.Input[builtins.bool]]:
124
+ def match_subdomains(self) -> Optional[pulumi.Input[_builtins.bool]]:
126
125
  """
127
126
  If true, all subdomains will match.
128
127
  """
129
128
  return pulumi.get(self, "match_subdomains")
130
129
 
131
130
  @match_subdomains.setter
132
- def match_subdomains(self, value: Optional[pulumi.Input[builtins.bool]]):
131
+ def match_subdomains(self, value: Optional[pulumi.Input[_builtins.bool]]):
133
132
  pulumi.set(self, "match_subdomains", value)
134
133
 
135
134
 
136
135
  @pulumi.input_type
137
136
  class _LoadbalancerRouteState:
138
137
  def __init__(__self__, *,
139
- backend_id: Optional[pulumi.Input[builtins.str]] = None,
140
- created_at: Optional[pulumi.Input[builtins.str]] = None,
141
- frontend_id: Optional[pulumi.Input[builtins.str]] = None,
142
- match_host_header: Optional[pulumi.Input[builtins.str]] = None,
143
- match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
144
- match_sni: Optional[pulumi.Input[builtins.str]] = None,
145
- match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
146
- updated_at: Optional[pulumi.Input[builtins.str]] = None):
138
+ backend_id: Optional[pulumi.Input[_builtins.str]] = None,
139
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
140
+ frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
141
+ match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
142
+ match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
143
+ match_sni: Optional[pulumi.Input[_builtins.str]] = None,
144
+ match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
145
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None):
147
146
  """
148
147
  Input properties used for looking up and filtering LoadbalancerRoute resources.
149
- :param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
150
- :param pulumi.Input[builtins.str] created_at: The date on which the route was created.
151
- :param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
152
- :param pulumi.Input[builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
148
+ :param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
149
+ :param pulumi.Input[_builtins.str] created_at: The date on which the route was created.
150
+ :param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
151
+ :param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
153
152
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
154
153
 
155
154
  > **Important:** This field should be set for routes on HTTP Load Balancers.
156
- :param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
155
+ :param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
157
156
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
158
- :param pulumi.Input[builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
157
+ :param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
159
158
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
160
159
 
161
160
  > **Important:** This field should be set for routes on TCP Load Balancers.
162
- :param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
163
- :param pulumi.Input[builtins.str] updated_at: The date on which the route was last updated.
161
+ :param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
162
+ :param pulumi.Input[_builtins.str] updated_at: The date on which the route was last updated.
164
163
  """
165
164
  if backend_id is not None:
166
165
  pulumi.set(__self__, "backend_id", backend_id)
@@ -179,45 +178,45 @@ class _LoadbalancerRouteState:
179
178
  if updated_at is not None:
180
179
  pulumi.set(__self__, "updated_at", updated_at)
181
180
 
182
- @property
181
+ @_builtins.property
183
182
  @pulumi.getter(name="backendId")
184
- def backend_id(self) -> Optional[pulumi.Input[builtins.str]]:
183
+ def backend_id(self) -> Optional[pulumi.Input[_builtins.str]]:
185
184
  """
186
185
  The ID of the backend the route is associated with.
187
186
  """
188
187
  return pulumi.get(self, "backend_id")
189
188
 
190
189
  @backend_id.setter
191
- def backend_id(self, value: Optional[pulumi.Input[builtins.str]]):
190
+ def backend_id(self, value: Optional[pulumi.Input[_builtins.str]]):
192
191
  pulumi.set(self, "backend_id", value)
193
192
 
194
- @property
193
+ @_builtins.property
195
194
  @pulumi.getter(name="createdAt")
196
- def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
195
+ def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
197
196
  """
198
197
  The date on which the route was created.
199
198
  """
200
199
  return pulumi.get(self, "created_at")
201
200
 
202
201
  @created_at.setter
203
- def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
202
+ def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
204
203
  pulumi.set(self, "created_at", value)
205
204
 
206
- @property
205
+ @_builtins.property
207
206
  @pulumi.getter(name="frontendId")
208
- def frontend_id(self) -> Optional[pulumi.Input[builtins.str]]:
207
+ def frontend_id(self) -> Optional[pulumi.Input[_builtins.str]]:
209
208
  """
210
209
  The ID of the frontend the route is associated with.
211
210
  """
212
211
  return pulumi.get(self, "frontend_id")
213
212
 
214
213
  @frontend_id.setter
215
- def frontend_id(self, value: Optional[pulumi.Input[builtins.str]]):
214
+ def frontend_id(self, value: Optional[pulumi.Input[_builtins.str]]):
216
215
  pulumi.set(self, "frontend_id", value)
217
216
 
218
- @property
217
+ @_builtins.property
219
218
  @pulumi.getter(name="matchHostHeader")
220
- def match_host_header(self) -> Optional[pulumi.Input[builtins.str]]:
219
+ def match_host_header(self) -> Optional[pulumi.Input[_builtins.str]]:
221
220
  """
222
221
  The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
223
222
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -227,12 +226,12 @@ class _LoadbalancerRouteState:
227
226
  return pulumi.get(self, "match_host_header")
228
227
 
229
228
  @match_host_header.setter
230
- def match_host_header(self, value: Optional[pulumi.Input[builtins.str]]):
229
+ def match_host_header(self, value: Optional[pulumi.Input[_builtins.str]]):
231
230
  pulumi.set(self, "match_host_header", value)
232
231
 
233
- @property
232
+ @_builtins.property
234
233
  @pulumi.getter(name="matchPathBegin")
235
- def match_path_begin(self) -> Optional[pulumi.Input[builtins.str]]:
234
+ def match_path_begin(self) -> Optional[pulumi.Input[_builtins.str]]:
236
235
  """
237
236
  The value to match in the URL beginning path from an incoming request.
238
237
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -240,12 +239,12 @@ class _LoadbalancerRouteState:
240
239
  return pulumi.get(self, "match_path_begin")
241
240
 
242
241
  @match_path_begin.setter
243
- def match_path_begin(self, value: Optional[pulumi.Input[builtins.str]]):
242
+ def match_path_begin(self, value: Optional[pulumi.Input[_builtins.str]]):
244
243
  pulumi.set(self, "match_path_begin", value)
245
244
 
246
- @property
245
+ @_builtins.property
247
246
  @pulumi.getter(name="matchSni")
248
- def match_sni(self) -> Optional[pulumi.Input[builtins.str]]:
247
+ def match_sni(self) -> Optional[pulumi.Input[_builtins.str]]:
249
248
  """
250
249
  The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
251
250
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -255,31 +254,31 @@ class _LoadbalancerRouteState:
255
254
  return pulumi.get(self, "match_sni")
256
255
 
257
256
  @match_sni.setter
258
- def match_sni(self, value: Optional[pulumi.Input[builtins.str]]):
257
+ def match_sni(self, value: Optional[pulumi.Input[_builtins.str]]):
259
258
  pulumi.set(self, "match_sni", value)
260
259
 
261
- @property
260
+ @_builtins.property
262
261
  @pulumi.getter(name="matchSubdomains")
263
- def match_subdomains(self) -> Optional[pulumi.Input[builtins.bool]]:
262
+ def match_subdomains(self) -> Optional[pulumi.Input[_builtins.bool]]:
264
263
  """
265
264
  If true, all subdomains will match.
266
265
  """
267
266
  return pulumi.get(self, "match_subdomains")
268
267
 
269
268
  @match_subdomains.setter
270
- def match_subdomains(self, value: Optional[pulumi.Input[builtins.bool]]):
269
+ def match_subdomains(self, value: Optional[pulumi.Input[_builtins.bool]]):
271
270
  pulumi.set(self, "match_subdomains", value)
272
271
 
273
- @property
272
+ @_builtins.property
274
273
  @pulumi.getter(name="updatedAt")
275
- def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
274
+ def updated_at(self) -> Optional[pulumi.Input[_builtins.str]]:
276
275
  """
277
276
  The date on which the route was last updated.
278
277
  """
279
278
  return pulumi.get(self, "updated_at")
280
279
 
281
280
  @updated_at.setter
282
- def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
281
+ def updated_at(self, value: Optional[pulumi.Input[_builtins.str]]):
283
282
  pulumi.set(self, "updated_at", value)
284
283
 
285
284
 
@@ -294,12 +293,12 @@ class LoadbalancerRoute(pulumi.CustomResource):
294
293
  def __init__(__self__,
295
294
  resource_name: str,
296
295
  opts: Optional[pulumi.ResourceOptions] = None,
297
- backend_id: Optional[pulumi.Input[builtins.str]] = None,
298
- frontend_id: Optional[pulumi.Input[builtins.str]] = None,
299
- match_host_header: Optional[pulumi.Input[builtins.str]] = None,
300
- match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
301
- match_sni: Optional[pulumi.Input[builtins.str]] = None,
302
- match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
296
+ backend_id: Optional[pulumi.Input[_builtins.str]] = None,
297
+ frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
298
+ match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
299
+ match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
300
+ match_sni: Optional[pulumi.Input[_builtins.str]] = None,
301
+ match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
303
302
  __props__=None):
304
303
  """
305
304
  Creates and manages Scaleway Load Balancer routes.
@@ -407,19 +406,19 @@ class LoadbalancerRoute(pulumi.CustomResource):
407
406
 
408
407
  :param str resource_name: The name of the resource.
409
408
  :param pulumi.ResourceOptions opts: Options for the resource.
410
- :param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
411
- :param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
412
- :param pulumi.Input[builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
409
+ :param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
410
+ :param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
411
+ :param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
413
412
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
414
413
 
415
414
  > **Important:** This field should be set for routes on HTTP Load Balancers.
416
- :param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
415
+ :param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
417
416
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
418
- :param pulumi.Input[builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
417
+ :param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
419
418
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
420
419
 
421
420
  > **Important:** This field should be set for routes on TCP Load Balancers.
422
- :param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
421
+ :param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
423
422
  """
424
423
  ...
425
424
  @overload
@@ -546,12 +545,12 @@ class LoadbalancerRoute(pulumi.CustomResource):
546
545
  def _internal_init(__self__,
547
546
  resource_name: str,
548
547
  opts: Optional[pulumi.ResourceOptions] = None,
549
- backend_id: Optional[pulumi.Input[builtins.str]] = None,
550
- frontend_id: Optional[pulumi.Input[builtins.str]] = None,
551
- match_host_header: Optional[pulumi.Input[builtins.str]] = None,
552
- match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
553
- match_sni: Optional[pulumi.Input[builtins.str]] = None,
554
- match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
548
+ backend_id: Optional[pulumi.Input[_builtins.str]] = None,
549
+ frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
550
+ match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
551
+ match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
552
+ match_sni: Optional[pulumi.Input[_builtins.str]] = None,
553
+ match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
555
554
  __props__=None):
556
555
  pulumi.log.warn("""LoadbalancerRoute is deprecated: scaleway.index/loadbalancerroute.LoadbalancerRoute has been deprecated in favor of scaleway.loadbalancers/route.Route""")
557
556
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -584,14 +583,14 @@ class LoadbalancerRoute(pulumi.CustomResource):
584
583
  def get(resource_name: str,
585
584
  id: pulumi.Input[str],
586
585
  opts: Optional[pulumi.ResourceOptions] = None,
587
- backend_id: Optional[pulumi.Input[builtins.str]] = None,
588
- created_at: Optional[pulumi.Input[builtins.str]] = None,
589
- frontend_id: Optional[pulumi.Input[builtins.str]] = None,
590
- match_host_header: Optional[pulumi.Input[builtins.str]] = None,
591
- match_path_begin: Optional[pulumi.Input[builtins.str]] = None,
592
- match_sni: Optional[pulumi.Input[builtins.str]] = None,
593
- match_subdomains: Optional[pulumi.Input[builtins.bool]] = None,
594
- updated_at: Optional[pulumi.Input[builtins.str]] = None) -> 'LoadbalancerRoute':
586
+ backend_id: Optional[pulumi.Input[_builtins.str]] = None,
587
+ created_at: Optional[pulumi.Input[_builtins.str]] = None,
588
+ frontend_id: Optional[pulumi.Input[_builtins.str]] = None,
589
+ match_host_header: Optional[pulumi.Input[_builtins.str]] = None,
590
+ match_path_begin: Optional[pulumi.Input[_builtins.str]] = None,
591
+ match_sni: Optional[pulumi.Input[_builtins.str]] = None,
592
+ match_subdomains: Optional[pulumi.Input[_builtins.bool]] = None,
593
+ updated_at: Optional[pulumi.Input[_builtins.str]] = None) -> 'LoadbalancerRoute':
595
594
  """
596
595
  Get an existing LoadbalancerRoute resource's state with the given name, id, and optional extra
597
596
  properties used to qualify the lookup.
@@ -599,21 +598,21 @@ class LoadbalancerRoute(pulumi.CustomResource):
599
598
  :param str resource_name: The unique name of the resulting resource.
600
599
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
601
600
  :param pulumi.ResourceOptions opts: Options for the resource.
602
- :param pulumi.Input[builtins.str] backend_id: The ID of the backend the route is associated with.
603
- :param pulumi.Input[builtins.str] created_at: The date on which the route was created.
604
- :param pulumi.Input[builtins.str] frontend_id: The ID of the frontend the route is associated with.
605
- :param pulumi.Input[builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
601
+ :param pulumi.Input[_builtins.str] backend_id: The ID of the backend the route is associated with.
602
+ :param pulumi.Input[_builtins.str] created_at: The date on which the route was created.
603
+ :param pulumi.Input[_builtins.str] frontend_id: The ID of the frontend the route is associated with.
604
+ :param pulumi.Input[_builtins.str] match_host_header: The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
606
605
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
607
606
 
608
607
  > **Important:** This field should be set for routes on HTTP Load Balancers.
609
- :param pulumi.Input[builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
608
+ :param pulumi.Input[_builtins.str] match_path_begin: The value to match in the URL beginning path from an incoming request.
610
609
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
611
- :param pulumi.Input[builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
610
+ :param pulumi.Input[_builtins.str] match_sni: The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
612
611
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
613
612
 
614
613
  > **Important:** This field should be set for routes on TCP Load Balancers.
615
- :param pulumi.Input[builtins.bool] match_subdomains: If true, all subdomains will match.
616
- :param pulumi.Input[builtins.str] updated_at: The date on which the route was last updated.
614
+ :param pulumi.Input[_builtins.bool] match_subdomains: If true, all subdomains will match.
615
+ :param pulumi.Input[_builtins.str] updated_at: The date on which the route was last updated.
617
616
  """
618
617
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
619
618
 
@@ -629,33 +628,33 @@ class LoadbalancerRoute(pulumi.CustomResource):
629
628
  __props__.__dict__["updated_at"] = updated_at
630
629
  return LoadbalancerRoute(resource_name, opts=opts, __props__=__props__)
631
630
 
632
- @property
631
+ @_builtins.property
633
632
  @pulumi.getter(name="backendId")
634
- def backend_id(self) -> pulumi.Output[builtins.str]:
633
+ def backend_id(self) -> pulumi.Output[_builtins.str]:
635
634
  """
636
635
  The ID of the backend the route is associated with.
637
636
  """
638
637
  return pulumi.get(self, "backend_id")
639
638
 
640
- @property
639
+ @_builtins.property
641
640
  @pulumi.getter(name="createdAt")
642
- def created_at(self) -> pulumi.Output[builtins.str]:
641
+ def created_at(self) -> pulumi.Output[_builtins.str]:
643
642
  """
644
643
  The date on which the route was created.
645
644
  """
646
645
  return pulumi.get(self, "created_at")
647
646
 
648
- @property
647
+ @_builtins.property
649
648
  @pulumi.getter(name="frontendId")
650
- def frontend_id(self) -> pulumi.Output[builtins.str]:
649
+ def frontend_id(self) -> pulumi.Output[_builtins.str]:
651
650
  """
652
651
  The ID of the frontend the route is associated with.
653
652
  """
654
653
  return pulumi.get(self, "frontend_id")
655
654
 
656
- @property
655
+ @_builtins.property
657
656
  @pulumi.getter(name="matchHostHeader")
658
- def match_host_header(self) -> pulumi.Output[Optional[builtins.str]]:
657
+ def match_host_header(self) -> pulumi.Output[Optional[_builtins.str]]:
659
658
  """
660
659
  The HTTP host header to match. Value to match in the HTTP Host request header from an incoming connection.
661
660
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -664,18 +663,18 @@ class LoadbalancerRoute(pulumi.CustomResource):
664
663
  """
665
664
  return pulumi.get(self, "match_host_header")
666
665
 
667
- @property
666
+ @_builtins.property
668
667
  @pulumi.getter(name="matchPathBegin")
669
- def match_path_begin(self) -> pulumi.Output[Optional[builtins.str]]:
668
+ def match_path_begin(self) -> pulumi.Output[Optional[_builtins.str]]:
670
669
  """
671
670
  The value to match in the URL beginning path from an incoming request.
672
671
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
673
672
  """
674
673
  return pulumi.get(self, "match_path_begin")
675
674
 
676
- @property
675
+ @_builtins.property
677
676
  @pulumi.getter(name="matchSni")
678
- def match_sni(self) -> pulumi.Output[Optional[builtins.str]]:
677
+ def match_sni(self) -> pulumi.Output[Optional[_builtins.str]]:
679
678
  """
680
679
  The Server Name Indication (SNI) value to match. Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer.
681
680
  Only one of `match_sni`, `match_host_header` and `match_path_begin` should be specified.
@@ -684,17 +683,17 @@ class LoadbalancerRoute(pulumi.CustomResource):
684
683
  """
685
684
  return pulumi.get(self, "match_sni")
686
685
 
687
- @property
686
+ @_builtins.property
688
687
  @pulumi.getter(name="matchSubdomains")
689
- def match_subdomains(self) -> pulumi.Output[Optional[builtins.bool]]:
688
+ def match_subdomains(self) -> pulumi.Output[Optional[_builtins.bool]]:
690
689
  """
691
690
  If true, all subdomains will match.
692
691
  """
693
692
  return pulumi.get(self, "match_subdomains")
694
693
 
695
- @property
694
+ @_builtins.property
696
695
  @pulumi.getter(name="updatedAt")
697
- def updated_at(self) -> pulumi.Output[builtins.str]:
696
+ def updated_at(self) -> pulumi.Output[_builtins.str]:
698
697
  """
699
698
  The date on which the route was last updated.
700
699
  """
@@ -2,7 +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
5
+ import builtins as _builtins
6
6
  from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members: