pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.31.0__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 +38 -1
  2. pulumiverse_scaleway/_inputs.py +2331 -2160
  3. pulumiverse_scaleway/_utilities.py +1 -1
  4. pulumiverse_scaleway/account/__init__.py +2 -1
  5. pulumiverse_scaleway/account/get_availability_zones.py +9 -8
  6. pulumiverse_scaleway/account/get_project.py +21 -20
  7. pulumiverse_scaleway/account/get_projects.py +28 -21
  8. pulumiverse_scaleway/account/get_ssh_key.py +24 -23
  9. pulumiverse_scaleway/account/outputs.py +20 -19
  10. pulumiverse_scaleway/account/project.py +59 -57
  11. pulumiverse_scaleway/account/ssh_key.py +87 -85
  12. pulumiverse_scaleway/account_project.py +59 -57
  13. pulumiverse_scaleway/account_ssh_key.py +87 -85
  14. pulumiverse_scaleway/apple_silicon_server.py +251 -155
  15. pulumiverse_scaleway/applesilicon/__init__.py +2 -1
  16. pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
  17. pulumiverse_scaleway/applesilicon/outputs.py +54 -21
  18. pulumiverse_scaleway/applesilicon/server.py +251 -155
  19. pulumiverse_scaleway/autoscaling/__init__.py +13 -0
  20. pulumiverse_scaleway/autoscaling/_inputs.py +559 -0
  21. pulumiverse_scaleway/autoscaling/instance_group.py +808 -0
  22. pulumiverse_scaleway/autoscaling/instance_policy.py +635 -0
  23. pulumiverse_scaleway/autoscaling/instance_template.py +879 -0
  24. pulumiverse_scaleway/autoscaling/outputs.py +439 -0
  25. pulumiverse_scaleway/baremetal_server.py +262 -260
  26. pulumiverse_scaleway/billing/__init__.py +2 -1
  27. pulumiverse_scaleway/billing/get_consumptions.py +10 -9
  28. pulumiverse_scaleway/billing/get_invoices.py +19 -18
  29. pulumiverse_scaleway/billing/outputs.py +73 -72
  30. pulumiverse_scaleway/block/__init__.py +2 -1
  31. pulumiverse_scaleway/block/_inputs.py +12 -11
  32. pulumiverse_scaleway/block/get_snapshot.py +29 -28
  33. pulumiverse_scaleway/block/get_volume.py +28 -27
  34. pulumiverse_scaleway/block/outputs.py +14 -13
  35. pulumiverse_scaleway/block/snapshot.py +73 -71
  36. pulumiverse_scaleway/block/volume.py +115 -113
  37. pulumiverse_scaleway/block_snapshot.py +73 -71
  38. pulumiverse_scaleway/block_volume.py +115 -113
  39. pulumiverse_scaleway/cockpit.py +38 -36
  40. pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
  41. pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
  42. pulumiverse_scaleway/cockpit_source.py +115 -113
  43. pulumiverse_scaleway/cockpit_token.py +66 -64
  44. pulumiverse_scaleway/config/__init__.py +2 -1
  45. pulumiverse_scaleway/config/__init__.pyi +2 -1
  46. pulumiverse_scaleway/config/vars.py +2 -1
  47. pulumiverse_scaleway/container.py +573 -343
  48. pulumiverse_scaleway/container_cron.py +80 -78
  49. pulumiverse_scaleway/container_domain.py +52 -50
  50. pulumiverse_scaleway/container_namespace.py +211 -140
  51. pulumiverse_scaleway/container_token.py +80 -78
  52. pulumiverse_scaleway/container_trigger.py +59 -57
  53. pulumiverse_scaleway/containers/__init__.py +2 -1
  54. pulumiverse_scaleway/containers/_inputs.py +72 -71
  55. pulumiverse_scaleway/containers/container.py +573 -343
  56. pulumiverse_scaleway/containers/cron.py +80 -78
  57. pulumiverse_scaleway/containers/domain.py +52 -50
  58. pulumiverse_scaleway/containers/get_container.py +87 -42
  59. pulumiverse_scaleway/containers/get_namespace.py +43 -31
  60. pulumiverse_scaleway/containers/namespace.py +211 -140
  61. pulumiverse_scaleway/containers/outputs.py +62 -61
  62. pulumiverse_scaleway/containers/token.py +80 -78
  63. pulumiverse_scaleway/containers/trigger.py +59 -57
  64. pulumiverse_scaleway/database.py +66 -64
  65. pulumiverse_scaleway/database_acl.py +31 -29
  66. pulumiverse_scaleway/database_backup.py +101 -99
  67. pulumiverse_scaleway/database_instance.py +297 -295
  68. pulumiverse_scaleway/database_privilege.py +73 -71
  69. pulumiverse_scaleway/database_read_replica.py +45 -43
  70. pulumiverse_scaleway/database_user.py +73 -71
  71. pulumiverse_scaleway/databases/__init__.py +2 -1
  72. pulumiverse_scaleway/databases/_inputs.py +191 -190
  73. pulumiverse_scaleway/databases/acl.py +31 -29
  74. pulumiverse_scaleway/databases/database.py +66 -64
  75. pulumiverse_scaleway/databases/database_backup.py +101 -99
  76. pulumiverse_scaleway/databases/get_acl.py +13 -12
  77. pulumiverse_scaleway/databases/get_database.py +19 -18
  78. pulumiverse_scaleway/databases/get_database_backup.py +34 -33
  79. pulumiverse_scaleway/databases/get_instance.py +43 -42
  80. pulumiverse_scaleway/databases/get_privilege.py +24 -23
  81. pulumiverse_scaleway/databases/instance.py +297 -295
  82. pulumiverse_scaleway/databases/outputs.py +188 -187
  83. pulumiverse_scaleway/databases/privilege.py +73 -71
  84. pulumiverse_scaleway/databases/read_replica.py +45 -43
  85. pulumiverse_scaleway/databases/serverless_database.py +80 -78
  86. pulumiverse_scaleway/databases/snapshot.py +101 -99
  87. pulumiverse_scaleway/databases/user.py +73 -71
  88. pulumiverse_scaleway/domain/__init__.py +2 -1
  89. pulumiverse_scaleway/domain/_inputs.py +531 -530
  90. pulumiverse_scaleway/domain/get_record.py +38 -37
  91. pulumiverse_scaleway/domain/get_zone.py +24 -23
  92. pulumiverse_scaleway/domain/outputs.py +358 -357
  93. pulumiverse_scaleway/domain/record.py +129 -127
  94. pulumiverse_scaleway/domain/registration.py +94 -92
  95. pulumiverse_scaleway/domain/zone.py +87 -85
  96. pulumiverse_scaleway/domain_record.py +129 -127
  97. pulumiverse_scaleway/domain_zone.py +87 -85
  98. pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
  99. pulumiverse_scaleway/edge_services_cache_stage.py +162 -113
  100. pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
  101. pulumiverse_scaleway/edge_services_head_stage.py +31 -29
  102. pulumiverse_scaleway/edge_services_pipeline.py +66 -64
  103. pulumiverse_scaleway/edge_services_plan.py +31 -29
  104. pulumiverse_scaleway/edge_services_route_stage.py +59 -57
  105. pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
  106. pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
  107. pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
  108. pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
  109. pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
  110. pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
  111. pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
  112. pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
  113. pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
  114. pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
  115. pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
  116. pulumiverse_scaleway/elasticmetal/ip.py +139 -137
  117. pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
  118. pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
  119. pulumiverse_scaleway/elasticmetal/server.py +262 -260
  120. pulumiverse_scaleway/file_filesystem.py +552 -0
  121. pulumiverse_scaleway/flexible_ip.py +139 -137
  122. pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
  123. pulumiverse_scaleway/function.py +394 -284
  124. pulumiverse_scaleway/function_cron.py +80 -78
  125. pulumiverse_scaleway/function_domain.py +52 -50
  126. pulumiverse_scaleway/function_namespace.py +197 -126
  127. pulumiverse_scaleway/function_token.py +80 -78
  128. pulumiverse_scaleway/function_trigger.py +59 -57
  129. pulumiverse_scaleway/functions/__init__.py +2 -1
  130. pulumiverse_scaleway/functions/_inputs.py +42 -41
  131. pulumiverse_scaleway/functions/cron.py +80 -78
  132. pulumiverse_scaleway/functions/domain.py +52 -50
  133. pulumiverse_scaleway/functions/function.py +394 -284
  134. pulumiverse_scaleway/functions/get_function.py +69 -46
  135. pulumiverse_scaleway/functions/get_namespace.py +42 -30
  136. pulumiverse_scaleway/functions/namespace.py +197 -126
  137. pulumiverse_scaleway/functions/outputs.py +26 -25
  138. pulumiverse_scaleway/functions/token.py +80 -78
  139. pulumiverse_scaleway/functions/trigger.py +59 -57
  140. pulumiverse_scaleway/get_account_project.py +21 -20
  141. pulumiverse_scaleway/get_account_ssh_key.py +24 -23
  142. pulumiverse_scaleway/get_availability_zones.py +9 -8
  143. pulumiverse_scaleway/get_baremetal_offer.py +29 -28
  144. pulumiverse_scaleway/get_baremetal_option.py +19 -18
  145. pulumiverse_scaleway/get_baremetal_os.py +23 -22
  146. pulumiverse_scaleway/get_baremetal_server.py +39 -38
  147. pulumiverse_scaleway/get_billing_consumptions.py +10 -9
  148. pulumiverse_scaleway/get_billing_invoices.py +19 -18
  149. pulumiverse_scaleway/get_block_snapshot.py +29 -28
  150. pulumiverse_scaleway/get_block_volume.py +28 -27
  151. pulumiverse_scaleway/get_cockpit.py +10 -9
  152. pulumiverse_scaleway/get_cockpit_source.py +77 -33
  153. pulumiverse_scaleway/get_config.py +13 -12
  154. pulumiverse_scaleway/get_container.py +87 -42
  155. pulumiverse_scaleway/get_container_namespace.py +43 -31
  156. pulumiverse_scaleway/get_database.py +19 -18
  157. pulumiverse_scaleway/get_database_acl.py +13 -12
  158. pulumiverse_scaleway/get_database_backup.py +34 -33
  159. pulumiverse_scaleway/get_database_instance.py +43 -42
  160. pulumiverse_scaleway/get_database_privilege.py +24 -23
  161. pulumiverse_scaleway/get_domain_record.py +38 -37
  162. pulumiverse_scaleway/get_domain_zone.py +24 -23
  163. pulumiverse_scaleway/get_flexible_ip.py +56 -39
  164. pulumiverse_scaleway/get_flexible_ips.py +24 -23
  165. pulumiverse_scaleway/get_function.py +69 -46
  166. pulumiverse_scaleway/get_function_namespace.py +42 -30
  167. pulumiverse_scaleway/get_iam_api_key.py +17 -16
  168. pulumiverse_scaleway/get_iam_application.py +23 -22
  169. pulumiverse_scaleway/get_iam_group.py +25 -24
  170. pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
  171. pulumiverse_scaleway/get_iam_user.py +23 -22
  172. pulumiverse_scaleway/get_instance_image.py +42 -41
  173. pulumiverse_scaleway/get_instance_ip.py +20 -19
  174. pulumiverse_scaleway/get_instance_placement_group.py +28 -27
  175. pulumiverse_scaleway/get_instance_private_nic.py +31 -30
  176. pulumiverse_scaleway/get_instance_security_group.py +31 -30
  177. pulumiverse_scaleway/get_instance_server.py +59 -47
  178. pulumiverse_scaleway/get_instance_servers.py +24 -23
  179. pulumiverse_scaleway/get_instance_snapshot.py +29 -28
  180. pulumiverse_scaleway/get_instance_volume.py +30 -29
  181. pulumiverse_scaleway/get_iot_device.py +31 -30
  182. pulumiverse_scaleway/get_iot_hub.py +39 -38
  183. pulumiverse_scaleway/get_ipam_ip.py +51 -50
  184. pulumiverse_scaleway/get_ipam_ips.py +44 -43
  185. pulumiverse_scaleway/get_k8s_version.py +16 -15
  186. pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
  187. pulumiverse_scaleway/get_kubernetes_node_pool.py +59 -47
  188. pulumiverse_scaleway/get_lb_acls.py +22 -21
  189. pulumiverse_scaleway/get_lb_backend.py +43 -42
  190. pulumiverse_scaleway/get_lb_backends.py +22 -21
  191. pulumiverse_scaleway/get_lb_frontend.py +26 -25
  192. pulumiverse_scaleway/get_lb_frontends.py +22 -21
  193. pulumiverse_scaleway/get_lb_ips.py +29 -28
  194. pulumiverse_scaleway/get_lb_route.py +16 -15
  195. pulumiverse_scaleway/get_lb_routes.py +17 -16
  196. pulumiverse_scaleway/get_lbs.py +24 -23
  197. pulumiverse_scaleway/get_loadbalancer.py +36 -35
  198. pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
  199. pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
  200. pulumiverse_scaleway/get_marketplace_image.py +23 -22
  201. pulumiverse_scaleway/get_mnq_sns.py +14 -13
  202. pulumiverse_scaleway/get_mnq_sqs.py +14 -13
  203. pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
  204. pulumiverse_scaleway/get_object_bucket.py +22 -21
  205. pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
  206. pulumiverse_scaleway/get_redis_cluster.py +34 -33
  207. pulumiverse_scaleway/get_registry_image.py +37 -36
  208. pulumiverse_scaleway/get_registry_image_tag.py +33 -32
  209. pulumiverse_scaleway/get_registry_namespace.py +27 -26
  210. pulumiverse_scaleway/get_secret.py +41 -40
  211. pulumiverse_scaleway/get_secret_version.py +34 -33
  212. pulumiverse_scaleway/get_tem_domain.py +43 -42
  213. pulumiverse_scaleway/get_vpc.py +47 -35
  214. pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
  215. pulumiverse_scaleway/get_vpc_private_network.py +44 -32
  216. pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
  217. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
  218. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
  219. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
  220. pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
  221. pulumiverse_scaleway/get_vpc_routes.py +38 -37
  222. pulumiverse_scaleway/get_vpcs.py +24 -23
  223. pulumiverse_scaleway/get_web_host_offer.py +25 -24
  224. pulumiverse_scaleway/get_webhosting.py +36 -35
  225. pulumiverse_scaleway/hosting/__init__.py +2 -1
  226. pulumiverse_scaleway/hosting/_inputs.py +61 -60
  227. pulumiverse_scaleway/hosting/get_hosting.py +36 -35
  228. pulumiverse_scaleway/hosting/get_offer.py +25 -24
  229. pulumiverse_scaleway/hosting/hosting.py +164 -162
  230. pulumiverse_scaleway/hosting/outputs.py +139 -138
  231. pulumiverse_scaleway/iam/__init__.py +2 -1
  232. pulumiverse_scaleway/iam/_inputs.py +22 -21
  233. pulumiverse_scaleway/iam/api_key.py +115 -113
  234. pulumiverse_scaleway/iam/application.py +80 -78
  235. pulumiverse_scaleway/iam/get_api_key.py +17 -16
  236. pulumiverse_scaleway/iam/get_application.py +23 -22
  237. pulumiverse_scaleway/iam/get_group.py +25 -24
  238. pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
  239. pulumiverse_scaleway/iam/get_user.py +23 -22
  240. pulumiverse_scaleway/iam/group.py +115 -113
  241. pulumiverse_scaleway/iam/group_membership.py +45 -43
  242. pulumiverse_scaleway/iam/outputs.py +14 -13
  243. pulumiverse_scaleway/iam/policy.py +136 -134
  244. pulumiverse_scaleway/iam/ssh_key.py +87 -85
  245. pulumiverse_scaleway/iam/user.py +284 -273
  246. pulumiverse_scaleway/iam_api_key.py +115 -113
  247. pulumiverse_scaleway/iam_application.py +80 -78
  248. pulumiverse_scaleway/iam_group.py +115 -113
  249. pulumiverse_scaleway/iam_group_membership.py +45 -43
  250. pulumiverse_scaleway/iam_policy.py +136 -134
  251. pulumiverse_scaleway/iam_ssh_key.py +87 -85
  252. pulumiverse_scaleway/iam_user.py +284 -273
  253. pulumiverse_scaleway/inference/__init__.py +2 -1
  254. pulumiverse_scaleway/inference/_inputs.py +116 -61
  255. pulumiverse_scaleway/inference/deployment.py +225 -176
  256. pulumiverse_scaleway/inference/get_model.py +27 -26
  257. pulumiverse_scaleway/inference/model.py +129 -127
  258. pulumiverse_scaleway/inference/outputs.py +82 -49
  259. pulumiverse_scaleway/inference_deployment.py +225 -176
  260. pulumiverse_scaleway/instance/__init__.py +2 -1
  261. pulumiverse_scaleway/instance/_inputs.py +296 -295
  262. pulumiverse_scaleway/instance/get_image.py +42 -41
  263. pulumiverse_scaleway/instance/get_ip.py +20 -19
  264. pulumiverse_scaleway/instance/get_placement_group.py +28 -27
  265. pulumiverse_scaleway/instance/get_private_nic.py +31 -30
  266. pulumiverse_scaleway/instance/get_security_group.py +31 -30
  267. pulumiverse_scaleway/instance/get_server.py +59 -47
  268. pulumiverse_scaleway/instance/get_servers.py +24 -23
  269. pulumiverse_scaleway/instance/get_snapshot.py +29 -28
  270. pulumiverse_scaleway/instance/get_volume.py +30 -29
  271. pulumiverse_scaleway/instance/image.py +150 -148
  272. pulumiverse_scaleway/instance/ip.py +94 -92
  273. pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
  274. pulumiverse_scaleway/instance/outputs.py +349 -348
  275. pulumiverse_scaleway/instance/placement_group.py +101 -99
  276. pulumiverse_scaleway/instance/private_nic.py +94 -92
  277. pulumiverse_scaleway/instance/security_group.py +150 -148
  278. pulumiverse_scaleway/instance/security_group_rules.py +17 -15
  279. pulumiverse_scaleway/instance/server.py +393 -330
  280. pulumiverse_scaleway/instance/snapshot.py +108 -106
  281. pulumiverse_scaleway/instance/user_data.py +59 -57
  282. pulumiverse_scaleway/instance/volume.py +129 -127
  283. pulumiverse_scaleway/instance_image.py +150 -148
  284. pulumiverse_scaleway/instance_ip.py +94 -92
  285. pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
  286. pulumiverse_scaleway/instance_placement_group.py +101 -99
  287. pulumiverse_scaleway/instance_private_nic.py +94 -92
  288. pulumiverse_scaleway/instance_security_group.py +150 -148
  289. pulumiverse_scaleway/instance_security_group_rules.py +17 -15
  290. pulumiverse_scaleway/instance_server.py +393 -330
  291. pulumiverse_scaleway/instance_snapshot.py +108 -106
  292. pulumiverse_scaleway/instance_user_data.py +59 -57
  293. pulumiverse_scaleway/instance_volume.py +129 -127
  294. pulumiverse_scaleway/iot/__init__.py +2 -1
  295. pulumiverse_scaleway/iot/_inputs.py +98 -97
  296. pulumiverse_scaleway/iot/device.py +122 -120
  297. pulumiverse_scaleway/iot/get_device.py +31 -30
  298. pulumiverse_scaleway/iot/get_hub.py +39 -38
  299. pulumiverse_scaleway/iot/hub.py +206 -204
  300. pulumiverse_scaleway/iot/network.py +94 -92
  301. pulumiverse_scaleway/iot/outputs.py +78 -77
  302. pulumiverse_scaleway/iot/route.py +66 -64
  303. pulumiverse_scaleway/iot_device.py +122 -120
  304. pulumiverse_scaleway/iot_hub.py +206 -204
  305. pulumiverse_scaleway/iot_network.py +94 -92
  306. pulumiverse_scaleway/iot_route.py +66 -64
  307. pulumiverse_scaleway/ipam/__init__.py +2 -1
  308. pulumiverse_scaleway/ipam/_inputs.py +87 -86
  309. pulumiverse_scaleway/ipam/get_ip.py +51 -50
  310. pulumiverse_scaleway/ipam/get_ips.py +44 -43
  311. pulumiverse_scaleway/ipam/ip.py +94 -92
  312. pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
  313. pulumiverse_scaleway/ipam/outputs.py +90 -89
  314. pulumiverse_scaleway/ipam_ip.py +94 -92
  315. pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
  316. pulumiverse_scaleway/job/__init__.py +2 -1
  317. pulumiverse_scaleway/job/_inputs.py +38 -37
  318. pulumiverse_scaleway/job/definition.py +143 -141
  319. pulumiverse_scaleway/job/outputs.py +24 -23
  320. pulumiverse_scaleway/job_definition.py +143 -141
  321. pulumiverse_scaleway/kubernetes/__init__.py +2 -1
  322. pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
  323. pulumiverse_scaleway/kubernetes/acl.py +45 -43
  324. pulumiverse_scaleway/kubernetes/cluster.py +234 -232
  325. pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
  326. pulumiverse_scaleway/kubernetes/get_pool.py +59 -47
  327. pulumiverse_scaleway/kubernetes/get_version.py +16 -15
  328. pulumiverse_scaleway/kubernetes/outputs.py +217 -216
  329. pulumiverse_scaleway/kubernetes/pool.py +351 -288
  330. pulumiverse_scaleway/kubernetes_cluster.py +234 -232
  331. pulumiverse_scaleway/kubernetes_node_pool.py +351 -288
  332. pulumiverse_scaleway/loadbalancer.py +199 -197
  333. pulumiverse_scaleway/loadbalancer_acl.py +80 -78
  334. pulumiverse_scaleway/loadbalancer_backend.py +381 -379
  335. pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
  336. pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
  337. pulumiverse_scaleway/loadbalancer_ip.py +101 -99
  338. pulumiverse_scaleway/loadbalancer_route.py +101 -99
  339. pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
  340. pulumiverse_scaleway/loadbalancers/_inputs.py +263 -222
  341. pulumiverse_scaleway/loadbalancers/acl.py +80 -78
  342. pulumiverse_scaleway/loadbalancers/backend.py +381 -379
  343. pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
  344. pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
  345. pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
  346. pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
  347. pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
  348. pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
  349. pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
  350. pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
  351. pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
  352. pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
  353. pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
  354. pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
  355. pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
  356. pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
  357. pulumiverse_scaleway/loadbalancers/ip.py +101 -99
  358. pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
  359. pulumiverse_scaleway/loadbalancers/outputs.py +581 -530
  360. pulumiverse_scaleway/loadbalancers/route.py +101 -99
  361. pulumiverse_scaleway/mnq/__init__.py +2 -1
  362. pulumiverse_scaleway/mnq/_inputs.py +32 -31
  363. pulumiverse_scaleway/mnq/get_sns.py +14 -13
  364. pulumiverse_scaleway/mnq/get_sqs.py +14 -13
  365. pulumiverse_scaleway/mnq/nats_account.py +52 -50
  366. pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
  367. pulumiverse_scaleway/mnq/outputs.py +20 -19
  368. pulumiverse_scaleway/mnq/sns.py +38 -36
  369. pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
  370. pulumiverse_scaleway/mnq/sns_topic.py +143 -141
  371. pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
  372. pulumiverse_scaleway/mnq/sqs.py +38 -36
  373. pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
  374. pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
  375. pulumiverse_scaleway/mnq_nats_account.py +52 -50
  376. pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
  377. pulumiverse_scaleway/mnq_sns.py +38 -36
  378. pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
  379. pulumiverse_scaleway/mnq_sns_topic.py +143 -141
  380. pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
  381. pulumiverse_scaleway/mnq_sqs.py +38 -36
  382. pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
  383. pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
  384. pulumiverse_scaleway/mongo_db_instance.py +199 -197
  385. pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
  386. pulumiverse_scaleway/mongodb/__init__.py +2 -1
  387. pulumiverse_scaleway/mongodb/_inputs.py +53 -52
  388. pulumiverse_scaleway/mongodb/get_instance.py +35 -34
  389. pulumiverse_scaleway/mongodb/instance.py +199 -197
  390. pulumiverse_scaleway/mongodb/outputs.py +64 -63
  391. pulumiverse_scaleway/mongodb/snapshot.py +101 -99
  392. pulumiverse_scaleway/network/__init__.py +2 -1
  393. pulumiverse_scaleway/network/_inputs.py +140 -139
  394. pulumiverse_scaleway/network/acl.py +59 -57
  395. pulumiverse_scaleway/network/gateway_network.py +143 -141
  396. pulumiverse_scaleway/network/get_gateway_network.py +28 -27
  397. pulumiverse_scaleway/network/get_private_network.py +44 -32
  398. pulumiverse_scaleway/network/get_public_gateway.py +36 -35
  399. pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
  400. pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
  401. pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
  402. pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
  403. pulumiverse_scaleway/network/get_routes.py +38 -37
  404. pulumiverse_scaleway/network/get_vpc.py +47 -35
  405. pulumiverse_scaleway/network/get_vpcs.py +24 -23
  406. pulumiverse_scaleway/network/outputs.py +206 -205
  407. pulumiverse_scaleway/network/private_network.py +170 -121
  408. pulumiverse_scaleway/network/public_gateway.py +213 -211
  409. pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
  410. pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
  411. pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
  412. pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
  413. pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
  414. pulumiverse_scaleway/network/route.py +115 -113
  415. pulumiverse_scaleway/network/vpc.py +149 -100
  416. pulumiverse_scaleway/object/__init__.py +2 -1
  417. pulumiverse_scaleway/object/_inputs.py +157 -134
  418. pulumiverse_scaleway/object/bucket.py +115 -113
  419. pulumiverse_scaleway/object/bucket_acl.py +79 -75
  420. pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
  421. pulumiverse_scaleway/object/bucket_policy.py +59 -57
  422. pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
  423. pulumiverse_scaleway/object/get_bucket.py +22 -21
  424. pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
  425. pulumiverse_scaleway/object/item.py +232 -183
  426. pulumiverse_scaleway/object/outputs.py +133 -118
  427. pulumiverse_scaleway/object_bucket.py +115 -113
  428. pulumiverse_scaleway/object_bucket_acl.py +79 -75
  429. pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
  430. pulumiverse_scaleway/object_bucket_policy.py +59 -57
  431. pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
  432. pulumiverse_scaleway/object_item.py +232 -183
  433. pulumiverse_scaleway/observability/__init__.py +2 -1
  434. pulumiverse_scaleway/observability/_inputs.py +89 -88
  435. pulumiverse_scaleway/observability/alert_manager.py +52 -50
  436. pulumiverse_scaleway/observability/cockpit.py +38 -36
  437. pulumiverse_scaleway/observability/get_instance.py +10 -9
  438. pulumiverse_scaleway/observability/get_source.py +77 -33
  439. pulumiverse_scaleway/observability/grafana_user.py +59 -57
  440. pulumiverse_scaleway/observability/outputs.py +77 -76
  441. pulumiverse_scaleway/observability/source.py +115 -113
  442. pulumiverse_scaleway/observability/token.py +66 -64
  443. pulumiverse_scaleway/outputs.py +2870 -2741
  444. pulumiverse_scaleway/provider.py +87 -65
  445. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  446. pulumiverse_scaleway/rdb_snapshot.py +101 -99
  447. pulumiverse_scaleway/redis/__init__.py +2 -1
  448. pulumiverse_scaleway/redis/_inputs.py +63 -62
  449. pulumiverse_scaleway/redis/cluster.py +178 -176
  450. pulumiverse_scaleway/redis/get_cluster.py +34 -33
  451. pulumiverse_scaleway/redis/outputs.py +74 -73
  452. pulumiverse_scaleway/redis_cluster.py +178 -176
  453. pulumiverse_scaleway/registry/__init__.py +2 -1
  454. pulumiverse_scaleway/registry/get_image.py +37 -36
  455. pulumiverse_scaleway/registry/get_image_tag.py +33 -32
  456. pulumiverse_scaleway/registry/get_namespace.py +27 -26
  457. pulumiverse_scaleway/registry/namespace.py +87 -85
  458. pulumiverse_scaleway/registry_namespace.py +87 -85
  459. pulumiverse_scaleway/sdb_database.py +80 -78
  460. pulumiverse_scaleway/secret.py +143 -141
  461. pulumiverse_scaleway/secret_version.py +87 -85
  462. pulumiverse_scaleway/secrets/__init__.py +2 -1
  463. pulumiverse_scaleway/secrets/_inputs.py +53 -52
  464. pulumiverse_scaleway/secrets/get_secret.py +41 -40
  465. pulumiverse_scaleway/secrets/get_version.py +34 -33
  466. pulumiverse_scaleway/secrets/outputs.py +64 -63
  467. pulumiverse_scaleway/secrets/secret.py +143 -141
  468. pulumiverse_scaleway/secrets/version.py +87 -85
  469. pulumiverse_scaleway/tem/__init__.py +2 -1
  470. pulumiverse_scaleway/tem/_inputs.py +28 -27
  471. pulumiverse_scaleway/tem/blocked_list.py +87 -85
  472. pulumiverse_scaleway/tem/domain.py +199 -197
  473. pulumiverse_scaleway/tem/domain_validation.py +52 -50
  474. pulumiverse_scaleway/tem/get_domain.py +43 -42
  475. pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
  476. pulumiverse_scaleway/tem/outputs.py +34 -33
  477. pulumiverse_scaleway/tem/webhook.py +108 -106
  478. pulumiverse_scaleway/tem_domain.py +199 -197
  479. pulumiverse_scaleway/tem_domain_validation.py +52 -50
  480. pulumiverse_scaleway/tem_webhook.py +108 -106
  481. pulumiverse_scaleway/vpc.py +149 -100
  482. pulumiverse_scaleway/vpc_gateway_network.py +143 -141
  483. pulumiverse_scaleway/vpc_private_network.py +170 -121
  484. pulumiverse_scaleway/vpc_public_gateway.py +213 -211
  485. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
  486. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
  487. pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
  488. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
  489. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
  490. pulumiverse_scaleway/vpc_route.py +115 -113
  491. pulumiverse_scaleway/webhosting.py +164 -162
  492. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/METADATA +2 -2
  493. pulumiverse_scaleway-1.31.0.dist-info/RECORD +496 -0
  494. pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +0 -177
  495. pulumiverse_scaleway/get_cockpit_plan.py +0 -94
  496. pulumiverse_scaleway/observability/get_plan.py +0 -90
  497. pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
  498. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/WHEEL +0 -0
  499. {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -58,10 +59,10 @@ __all__ = [
58
59
  @pulumi.output_type
59
60
  class AclAction(dict):
60
61
  def __init__(__self__, *,
61
- type: str,
62
+ type: builtins.str,
62
63
  redirects: Optional[Sequence['outputs.AclActionRedirect']] = None):
63
64
  """
64
- :param str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
65
+ :param builtins.str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
65
66
  :param Sequence['AclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
66
67
  """
67
68
  pulumi.set(__self__, "type", type)
@@ -70,7 +71,7 @@ class AclAction(dict):
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def type(self) -> str:
74
+ def type(self) -> builtins.str:
74
75
  """
75
76
  The action type. Possible values are: `allow` or `deny` or `redirect`.
76
77
  """
@@ -88,13 +89,13 @@ class AclAction(dict):
88
89
  @pulumi.output_type
89
90
  class AclActionRedirect(dict):
90
91
  def __init__(__self__, *,
91
- code: Optional[int] = None,
92
- target: Optional[str] = None,
93
- type: Optional[str] = None):
92
+ code: Optional[builtins.int] = None,
93
+ target: Optional[builtins.str] = None,
94
+ type: Optional[builtins.str] = None):
94
95
  """
95
- :param int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
96
- :param str target: An URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
97
- :param str type: The redirect type. Possible values are: `location` or `scheme`.
96
+ :param builtins.int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
97
+ :param builtins.str target: An URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
98
+ :param builtins.str type: The redirect type. Possible values are: `location` or `scheme`.
98
99
  """
99
100
  if code is not None:
100
101
  pulumi.set(__self__, "code", code)
@@ -105,7 +106,7 @@ class AclActionRedirect(dict):
105
106
 
106
107
  @property
107
108
  @pulumi.getter
108
- def code(self) -> Optional[int]:
109
+ def code(self) -> Optional[builtins.int]:
109
110
  """
110
111
  The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
111
112
  """
@@ -113,7 +114,7 @@ class AclActionRedirect(dict):
113
114
 
114
115
  @property
115
116
  @pulumi.getter
116
- def target(self) -> Optional[str]:
117
+ def target(self) -> Optional[builtins.str]:
117
118
  """
118
119
  An URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
119
120
  """
@@ -121,7 +122,7 @@ class AclActionRedirect(dict):
121
122
 
122
123
  @property
123
124
  @pulumi.getter
124
- def type(self) -> Optional[str]:
125
+ def type(self) -> Optional[builtins.str]:
125
126
  """
126
127
  The redirect type. Possible values are: `location` or `scheme`.
127
128
  """
@@ -141,6 +142,8 @@ class AclMatch(dict):
141
142
  suggest = "http_filter_values"
142
143
  elif key == "ipSubnets":
143
144
  suggest = "ip_subnets"
145
+ elif key == "ipsEdgeServices":
146
+ suggest = "ips_edge_services"
144
147
 
145
148
  if suggest:
146
149
  pulumi.log.warn(f"Key '{key}' not found in AclMatch. Access the value via the '{suggest}' property getter instead.")
@@ -154,20 +157,22 @@ class AclMatch(dict):
154
157
  return super().get(key, default)
155
158
 
156
159
  def __init__(__self__, *,
157
- http_filter: Optional[str] = None,
158
- http_filter_option: Optional[str] = None,
159
- http_filter_values: Optional[Sequence[str]] = None,
160
- invert: Optional[bool] = None,
161
- ip_subnets: Optional[Sequence[str]] = None):
162
- """
163
- :param str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
160
+ http_filter: Optional[builtins.str] = None,
161
+ http_filter_option: Optional[builtins.str] = None,
162
+ http_filter_values: Optional[Sequence[builtins.str]] = None,
163
+ invert: Optional[builtins.bool] = None,
164
+ ip_subnets: Optional[Sequence[builtins.str]] = None,
165
+ ips_edge_services: Optional[builtins.bool] = None):
166
+ """
167
+ :param builtins.str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
164
168
  It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
165
169
  Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
166
- :param str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
167
- :param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter.
170
+ :param builtins.str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
171
+ :param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter.
168
172
  Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
169
- :param bool invert: If set to `true`, the condition will be of type "unless".
170
- :param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
173
+ :param builtins.bool invert: If set to `true`, the condition will be of type "unless".
174
+ :param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
175
+ :param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
171
176
  """
172
177
  if http_filter is not None:
173
178
  pulumi.set(__self__, "http_filter", http_filter)
@@ -179,10 +184,12 @@ class AclMatch(dict):
179
184
  pulumi.set(__self__, "invert", invert)
180
185
  if ip_subnets is not None:
181
186
  pulumi.set(__self__, "ip_subnets", ip_subnets)
187
+ if ips_edge_services is not None:
188
+ pulumi.set(__self__, "ips_edge_services", ips_edge_services)
182
189
 
183
190
  @property
184
191
  @pulumi.getter(name="httpFilter")
185
- def http_filter(self) -> Optional[str]:
192
+ def http_filter(self) -> Optional[builtins.str]:
186
193
  """
187
194
  The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
188
195
  It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
@@ -192,7 +199,7 @@ class AclMatch(dict):
192
199
 
193
200
  @property
194
201
  @pulumi.getter(name="httpFilterOption")
195
- def http_filter_option(self) -> Optional[str]:
202
+ def http_filter_option(self) -> Optional[builtins.str]:
196
203
  """
197
204
  If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
198
205
  """
@@ -200,7 +207,7 @@ class AclMatch(dict):
200
207
 
201
208
  @property
202
209
  @pulumi.getter(name="httpFilterValues")
203
- def http_filter_values(self) -> Optional[Sequence[str]]:
210
+ def http_filter_values(self) -> Optional[Sequence[builtins.str]]:
204
211
  """
205
212
  A list of possible values to match for the given HTTP filter.
206
213
  Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
@@ -209,7 +216,7 @@ class AclMatch(dict):
209
216
 
210
217
  @property
211
218
  @pulumi.getter
212
- def invert(self) -> Optional[bool]:
219
+ def invert(self) -> Optional[builtins.bool]:
213
220
  """
214
221
  If set to `true`, the condition will be of type "unless".
215
222
  """
@@ -217,12 +224,20 @@ class AclMatch(dict):
217
224
 
218
225
  @property
219
226
  @pulumi.getter(name="ipSubnets")
220
- def ip_subnets(self) -> Optional[Sequence[str]]:
227
+ def ip_subnets(self) -> Optional[Sequence[builtins.str]]:
221
228
  """
222
- A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
229
+ A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
223
230
  """
224
231
  return pulumi.get(self, "ip_subnets")
225
232
 
233
+ @property
234
+ @pulumi.getter(name="ipsEdgeServices")
235
+ def ips_edge_services(self) -> Optional[builtins.bool]:
236
+ """
237
+ Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
238
+ """
239
+ return pulumi.get(self, "ips_edge_services")
240
+
226
241
 
227
242
  @pulumi.output_type
228
243
  class BackendHealthCheckHttp(dict):
@@ -244,15 +259,15 @@ class BackendHealthCheckHttp(dict):
244
259
  return super().get(key, default)
245
260
 
246
261
  def __init__(__self__, *,
247
- uri: str,
248
- code: Optional[int] = None,
249
- host_header: Optional[str] = None,
250
- method: Optional[str] = None):
262
+ uri: builtins.str,
263
+ code: Optional[builtins.int] = None,
264
+ host_header: Optional[builtins.str] = None,
265
+ method: Optional[builtins.str] = None):
251
266
  """
252
- :param str uri: The HTTP endpoint URL to call for HC requests
253
- :param int code: The expected HTTP status code
254
- :param str host_header: The HTTP host header to use for HC requests
255
- :param str method: The HTTP method to use for HC requests
267
+ :param builtins.str uri: The HTTP endpoint URL to call for HC requests
268
+ :param builtins.int code: The expected HTTP status code
269
+ :param builtins.str host_header: The HTTP host header to use for HC requests
270
+ :param builtins.str method: The HTTP method to use for HC requests
256
271
  """
257
272
  pulumi.set(__self__, "uri", uri)
258
273
  if code is not None:
@@ -264,7 +279,7 @@ class BackendHealthCheckHttp(dict):
264
279
 
265
280
  @property
266
281
  @pulumi.getter
267
- def uri(self) -> str:
282
+ def uri(self) -> builtins.str:
268
283
  """
269
284
  The HTTP endpoint URL to call for HC requests
270
285
  """
@@ -272,7 +287,7 @@ class BackendHealthCheckHttp(dict):
272
287
 
273
288
  @property
274
289
  @pulumi.getter
275
- def code(self) -> Optional[int]:
290
+ def code(self) -> Optional[builtins.int]:
276
291
  """
277
292
  The expected HTTP status code
278
293
  """
@@ -280,7 +295,7 @@ class BackendHealthCheckHttp(dict):
280
295
 
281
296
  @property
282
297
  @pulumi.getter(name="hostHeader")
283
- def host_header(self) -> Optional[str]:
298
+ def host_header(self) -> Optional[builtins.str]:
284
299
  """
285
300
  The HTTP host header to use for HC requests
286
301
  """
@@ -288,7 +303,7 @@ class BackendHealthCheckHttp(dict):
288
303
 
289
304
  @property
290
305
  @pulumi.getter
291
- def method(self) -> Optional[str]:
306
+ def method(self) -> Optional[builtins.str]:
292
307
  """
293
308
  The HTTP method to use for HC requests
294
309
  """
@@ -315,17 +330,17 @@ class BackendHealthCheckHttps(dict):
315
330
  return super().get(key, default)
316
331
 
317
332
  def __init__(__self__, *,
318
- uri: str,
319
- code: Optional[int] = None,
320
- host_header: Optional[str] = None,
321
- method: Optional[str] = None,
322
- sni: Optional[str] = None):
323
- """
324
- :param str uri: The HTTPS endpoint URL to call for HC requests
325
- :param int code: The expected HTTP status code
326
- :param str host_header: The HTTP host header to use for HC requests
327
- :param str method: The HTTP method to use for HC requests
328
- :param str sni: The SNI to use for HC requests over SSL
333
+ uri: builtins.str,
334
+ code: Optional[builtins.int] = None,
335
+ host_header: Optional[builtins.str] = None,
336
+ method: Optional[builtins.str] = None,
337
+ sni: Optional[builtins.str] = None):
338
+ """
339
+ :param builtins.str uri: The HTTPS endpoint URL to call for HC requests
340
+ :param builtins.int code: The expected HTTP status code
341
+ :param builtins.str host_header: The HTTP host header to use for HC requests
342
+ :param builtins.str method: The HTTP method to use for HC requests
343
+ :param builtins.str sni: The SNI to use for HC requests over SSL
329
344
  """
330
345
  pulumi.set(__self__, "uri", uri)
331
346
  if code is not None:
@@ -339,7 +354,7 @@ class BackendHealthCheckHttps(dict):
339
354
 
340
355
  @property
341
356
  @pulumi.getter
342
- def uri(self) -> str:
357
+ def uri(self) -> builtins.str:
343
358
  """
344
359
  The HTTPS endpoint URL to call for HC requests
345
360
  """
@@ -347,7 +362,7 @@ class BackendHealthCheckHttps(dict):
347
362
 
348
363
  @property
349
364
  @pulumi.getter
350
- def code(self) -> Optional[int]:
365
+ def code(self) -> Optional[builtins.int]:
351
366
  """
352
367
  The expected HTTP status code
353
368
  """
@@ -355,7 +370,7 @@ class BackendHealthCheckHttps(dict):
355
370
 
356
371
  @property
357
372
  @pulumi.getter(name="hostHeader")
358
- def host_header(self) -> Optional[str]:
373
+ def host_header(self) -> Optional[builtins.str]:
359
374
  """
360
375
  The HTTP host header to use for HC requests
361
376
  """
@@ -363,7 +378,7 @@ class BackendHealthCheckHttps(dict):
363
378
 
364
379
  @property
365
380
  @pulumi.getter
366
- def method(self) -> Optional[str]:
381
+ def method(self) -> Optional[builtins.str]:
367
382
  """
368
383
  The HTTP method to use for HC requests
369
384
  """
@@ -371,7 +386,7 @@ class BackendHealthCheckHttps(dict):
371
386
 
372
387
  @property
373
388
  @pulumi.getter
374
- def sni(self) -> Optional[str]:
389
+ def sni(self) -> Optional[builtins.str]:
375
390
  """
376
391
  The SNI to use for HC requests over SSL
377
392
  """
@@ -404,15 +419,15 @@ class CertificateCustomCertificate(dict):
404
419
  return super().get(key, default)
405
420
 
406
421
  def __init__(__self__, *,
407
- certificate_chain: str):
422
+ certificate_chain: builtins.str):
408
423
  """
409
- :param str certificate_chain: The full PEM-formatted certificate chain
424
+ :param builtins.str certificate_chain: The full PEM-formatted certificate chain
410
425
  """
411
426
  pulumi.set(__self__, "certificate_chain", certificate_chain)
412
427
 
413
428
  @property
414
429
  @pulumi.getter(name="certificateChain")
415
- def certificate_chain(self) -> str:
430
+ def certificate_chain(self) -> builtins.str:
416
431
  """
417
432
  The full PEM-formatted certificate chain
418
433
  """
@@ -441,11 +456,11 @@ class CertificateLetsencrypt(dict):
441
456
  return super().get(key, default)
442
457
 
443
458
  def __init__(__self__, *,
444
- common_name: str,
445
- subject_alternative_names: Optional[Sequence[str]] = None):
459
+ common_name: builtins.str,
460
+ subject_alternative_names: Optional[Sequence[builtins.str]] = None):
446
461
  """
447
- :param str common_name: Main domain of the certificate
448
- :param Sequence[str] subject_alternative_names: The alternative domain names of the certificate
462
+ :param builtins.str common_name: Main domain of the certificate
463
+ :param Sequence[builtins.str] subject_alternative_names: The alternative domain names of the certificate
449
464
  """
450
465
  pulumi.set(__self__, "common_name", common_name)
451
466
  if subject_alternative_names is not None:
@@ -453,7 +468,7 @@ class CertificateLetsencrypt(dict):
453
468
 
454
469
  @property
455
470
  @pulumi.getter(name="commonName")
456
- def common_name(self) -> str:
471
+ def common_name(self) -> builtins.str:
457
472
  """
458
473
  Main domain of the certificate
459
474
  """
@@ -461,7 +476,7 @@ class CertificateLetsencrypt(dict):
461
476
 
462
477
  @property
463
478
  @pulumi.getter(name="subjectAlternativeNames")
464
- def subject_alternative_names(self) -> Optional[Sequence[str]]:
479
+ def subject_alternative_names(self) -> Optional[Sequence[builtins.str]]:
465
480
  """
466
481
  The alternative domain names of the certificate
467
482
  """
@@ -492,17 +507,17 @@ class FrontendAcl(dict):
492
507
  def __init__(__self__, *,
493
508
  action: 'outputs.FrontendAclAction',
494
509
  match: 'outputs.FrontendAclMatch',
495
- created_at: Optional[str] = None,
496
- description: Optional[str] = None,
497
- name: Optional[str] = None,
498
- updated_at: Optional[str] = None):
510
+ created_at: Optional[builtins.str] = None,
511
+ description: Optional[builtins.str] = None,
512
+ name: Optional[builtins.str] = None,
513
+ updated_at: Optional[builtins.str] = None):
499
514
  """
500
515
  :param 'FrontendAclActionArgs' action: Action to undertake when an ACL filter matches.
501
- :param 'FrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
502
- :param str created_at: IsDate and time of ACL's creation (RFC 3339 format)
503
- :param str description: Description of the ACL
504
- :param str name: The ACL name. If not provided it will be randomly generated.
505
- :param str updated_at: IsDate and time of ACL's update (RFC 3339 format)
516
+ :param 'FrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
517
+ :param builtins.str created_at: IsDate and time of ACL's creation (RFC 3339 format)
518
+ :param builtins.str description: Description of the ACL
519
+ :param builtins.str name: The ACL name. If not provided it will be randomly generated.
520
+ :param builtins.str updated_at: IsDate and time of ACL's update (RFC 3339 format)
506
521
  """
507
522
  pulumi.set(__self__, "action", action)
508
523
  pulumi.set(__self__, "match", match)
@@ -527,13 +542,13 @@ class FrontendAcl(dict):
527
542
  @pulumi.getter
528
543
  def match(self) -> 'outputs.FrontendAclMatch':
529
544
  """
530
- The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
545
+ The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
531
546
  """
532
547
  return pulumi.get(self, "match")
533
548
 
534
549
  @property
535
550
  @pulumi.getter(name="createdAt")
536
- def created_at(self) -> Optional[str]:
551
+ def created_at(self) -> Optional[builtins.str]:
537
552
  """
538
553
  IsDate and time of ACL's creation (RFC 3339 format)
539
554
  """
@@ -541,7 +556,7 @@ class FrontendAcl(dict):
541
556
 
542
557
  @property
543
558
  @pulumi.getter
544
- def description(self) -> Optional[str]:
559
+ def description(self) -> Optional[builtins.str]:
545
560
  """
546
561
  Description of the ACL
547
562
  """
@@ -549,7 +564,7 @@ class FrontendAcl(dict):
549
564
 
550
565
  @property
551
566
  @pulumi.getter
552
- def name(self) -> Optional[str]:
567
+ def name(self) -> Optional[builtins.str]:
553
568
  """
554
569
  The ACL name. If not provided it will be randomly generated.
555
570
  """
@@ -557,7 +572,7 @@ class FrontendAcl(dict):
557
572
 
558
573
  @property
559
574
  @pulumi.getter(name="updatedAt")
560
- def updated_at(self) -> Optional[str]:
575
+ def updated_at(self) -> Optional[builtins.str]:
561
576
  """
562
577
  IsDate and time of ACL's update (RFC 3339 format)
563
578
  """
@@ -567,10 +582,10 @@ class FrontendAcl(dict):
567
582
  @pulumi.output_type
568
583
  class FrontendAclAction(dict):
569
584
  def __init__(__self__, *,
570
- type: str,
585
+ type: builtins.str,
571
586
  redirects: Optional[Sequence['outputs.FrontendAclActionRedirect']] = None):
572
587
  """
573
- :param str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
588
+ :param builtins.str type: The action type. Possible values are: `allow` or `deny` or `redirect`.
574
589
  :param Sequence['FrontendAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
575
590
  """
576
591
  pulumi.set(__self__, "type", type)
@@ -579,7 +594,7 @@ class FrontendAclAction(dict):
579
594
 
580
595
  @property
581
596
  @pulumi.getter
582
- def type(self) -> str:
597
+ def type(self) -> builtins.str:
583
598
  """
584
599
  The action type. Possible values are: `allow` or `deny` or `redirect`.
585
600
  """
@@ -597,13 +612,13 @@ class FrontendAclAction(dict):
597
612
  @pulumi.output_type
598
613
  class FrontendAclActionRedirect(dict):
599
614
  def __init__(__self__, *,
600
- code: Optional[int] = None,
601
- target: Optional[str] = None,
602
- type: Optional[str] = None):
615
+ code: Optional[builtins.int] = None,
616
+ target: Optional[builtins.str] = None,
617
+ type: Optional[builtins.str] = None):
603
618
  """
604
- :param int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
605
- :param str target: A URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
606
- :param str type: The redirect type. Possible values are: `location` or `scheme`.
619
+ :param builtins.int code: The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
620
+ :param builtins.str target: A URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
621
+ :param builtins.str type: The redirect type. Possible values are: `location` or `scheme`.
607
622
  """
608
623
  if code is not None:
609
624
  pulumi.set(__self__, "code", code)
@@ -614,7 +629,7 @@ class FrontendAclActionRedirect(dict):
614
629
 
615
630
  @property
616
631
  @pulumi.getter
617
- def code(self) -> Optional[int]:
632
+ def code(self) -> Optional[builtins.int]:
618
633
  """
619
634
  The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`.
620
635
  """
@@ -622,7 +637,7 @@ class FrontendAclActionRedirect(dict):
622
637
 
623
638
  @property
624
639
  @pulumi.getter
625
- def target(self) -> Optional[str]:
640
+ def target(self) -> Optional[builtins.str]:
626
641
  """
627
642
  A URL can be used in case of a location redirect (e.g. `https://scaleway.com` will redirect to this same URL). A scheme name (e.g. `https`, `http`, `ftp`, `git`) will replace the request's original scheme.
628
643
  """
@@ -630,7 +645,7 @@ class FrontendAclActionRedirect(dict):
630
645
 
631
646
  @property
632
647
  @pulumi.getter
633
- def type(self) -> Optional[str]:
648
+ def type(self) -> Optional[builtins.str]:
634
649
  """
635
650
  The redirect type. Possible values are: `location` or `scheme`.
636
651
  """
@@ -650,6 +665,8 @@ class FrontendAclMatch(dict):
650
665
  suggest = "http_filter_values"
651
666
  elif key == "ipSubnets":
652
667
  suggest = "ip_subnets"
668
+ elif key == "ipsEdgeServices":
669
+ suggest = "ips_edge_services"
653
670
 
654
671
  if suggest:
655
672
  pulumi.log.warn(f"Key '{key}' not found in FrontendAclMatch. Access the value via the '{suggest}' property getter instead.")
@@ -663,20 +680,22 @@ class FrontendAclMatch(dict):
663
680
  return super().get(key, default)
664
681
 
665
682
  def __init__(__self__, *,
666
- http_filter: Optional[str] = None,
667
- http_filter_option: Optional[str] = None,
668
- http_filter_values: Optional[Sequence[str]] = None,
669
- invert: Optional[bool] = None,
670
- ip_subnets: Optional[Sequence[str]] = None):
671
- """
672
- :param str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
683
+ http_filter: Optional[builtins.str] = None,
684
+ http_filter_option: Optional[builtins.str] = None,
685
+ http_filter_values: Optional[Sequence[builtins.str]] = None,
686
+ invert: Optional[builtins.bool] = None,
687
+ ip_subnets: Optional[Sequence[builtins.str]] = None,
688
+ ips_edge_services: Optional[builtins.bool] = None):
689
+ """
690
+ :param builtins.str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
673
691
  It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
674
692
  Possible values are: `acl_http_filter_none`, `path_begin`, `path_end`, `http_header_match` or `regex`.
675
- :param str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
676
- :param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter.
693
+ :param builtins.str http_filter_option: If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
694
+ :param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter.
677
695
  Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
678
- :param bool invert: If set to `true`, the condition will be of type "unless".
679
- :param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
696
+ :param builtins.bool invert: If set to `true`, the condition will be of type "unless".
697
+ :param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
698
+ :param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
680
699
  """
681
700
  if http_filter is not None:
682
701
  pulumi.set(__self__, "http_filter", http_filter)
@@ -688,10 +707,12 @@ class FrontendAclMatch(dict):
688
707
  pulumi.set(__self__, "invert", invert)
689
708
  if ip_subnets is not None:
690
709
  pulumi.set(__self__, "ip_subnets", ip_subnets)
710
+ if ips_edge_services is not None:
711
+ pulumi.set(__self__, "ips_edge_services", ips_edge_services)
691
712
 
692
713
  @property
693
714
  @pulumi.getter(name="httpFilter")
694
- def http_filter(self) -> Optional[str]:
715
+ def http_filter(self) -> Optional[builtins.str]:
695
716
  """
696
717
  The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
697
718
  It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
@@ -701,7 +722,7 @@ class FrontendAclMatch(dict):
701
722
 
702
723
  @property
703
724
  @pulumi.getter(name="httpFilterOption")
704
- def http_filter_option(self) -> Optional[str]:
725
+ def http_filter_option(self) -> Optional[builtins.str]:
705
726
  """
706
727
  If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value.
707
728
  """
@@ -709,7 +730,7 @@ class FrontendAclMatch(dict):
709
730
 
710
731
  @property
711
732
  @pulumi.getter(name="httpFilterValues")
712
- def http_filter_values(self) -> Optional[Sequence[str]]:
733
+ def http_filter_values(self) -> Optional[Sequence[builtins.str]]:
713
734
  """
714
735
  A list of possible values to match for the given HTTP filter.
715
736
  Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
@@ -718,7 +739,7 @@ class FrontendAclMatch(dict):
718
739
 
719
740
  @property
720
741
  @pulumi.getter
721
- def invert(self) -> Optional[bool]:
742
+ def invert(self) -> Optional[builtins.bool]:
722
743
  """
723
744
  If set to `true`, the condition will be of type "unless".
724
745
  """
@@ -726,21 +747,29 @@ class FrontendAclMatch(dict):
726
747
 
727
748
  @property
728
749
  @pulumi.getter(name="ipSubnets")
729
- def ip_subnets(self) -> Optional[Sequence[str]]:
750
+ def ip_subnets(self) -> Optional[Sequence[builtins.str]]:
730
751
  """
731
- A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
752
+ A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
732
753
  """
733
754
  return pulumi.get(self, "ip_subnets")
734
755
 
756
+ @property
757
+ @pulumi.getter(name="ipsEdgeServices")
758
+ def ips_edge_services(self) -> Optional[builtins.bool]:
759
+ """
760
+ Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
761
+ """
762
+ return pulumi.get(self, "ips_edge_services")
763
+
735
764
 
736
765
  @pulumi.output_type
737
766
  class LoadBalancerPrivateIp(dict):
738
767
  def __init__(__self__, *,
739
- address: Optional[str] = None,
740
- id: Optional[str] = None):
768
+ address: Optional[builtins.str] = None,
769
+ id: Optional[builtins.str] = None):
741
770
  """
742
- :param str address: The private IP address.
743
- :param str id: The ID of the IP address resource.
771
+ :param builtins.str address: The private IP address.
772
+ :param builtins.str id: The ID of the IP address resource.
744
773
  """
745
774
  if address is not None:
746
775
  pulumi.set(__self__, "address", address)
@@ -749,7 +778,7 @@ class LoadBalancerPrivateIp(dict):
749
778
 
750
779
  @property
751
780
  @pulumi.getter
752
- def address(self) -> Optional[str]:
781
+ def address(self) -> Optional[builtins.str]:
753
782
  """
754
783
  The private IP address.
755
784
  """
@@ -757,7 +786,7 @@ class LoadBalancerPrivateIp(dict):
757
786
 
758
787
  @property
759
788
  @pulumi.getter
760
- def id(self) -> Optional[str]:
789
+ def id(self) -> Optional[builtins.str]:
761
790
  """
762
791
  The ID of the IP address resource.
763
792
  """
@@ -790,20 +819,20 @@ class LoadBalancerPrivateNetwork(dict):
790
819
  return super().get(key, default)
791
820
 
792
821
  def __init__(__self__, *,
793
- private_network_id: str,
794
- dhcp_config: Optional[bool] = None,
795
- ipam_ids: Optional[str] = None,
796
- static_config: Optional[str] = None,
797
- status: Optional[str] = None,
798
- zone: Optional[str] = None):
799
- """
800
- :param str private_network_id: The ID of the Private Network to attach to.
822
+ private_network_id: builtins.str,
823
+ dhcp_config: Optional[builtins.bool] = None,
824
+ ipam_ids: Optional[builtins.str] = None,
825
+ static_config: Optional[builtins.str] = None,
826
+ status: Optional[builtins.str] = None,
827
+ zone: Optional[builtins.str] = None):
828
+ """
829
+ :param builtins.str private_network_id: The ID of the Private Network to attach to.
801
830
  - > **Important:** Updates to `private_network` will recreate the attachment.
802
- :param bool dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
803
- :param str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
804
- :param str static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
805
- :param str status: The status of the private network connection.
806
- :param str zone: `zone`) The zone of the Load Balancer.
831
+ :param builtins.bool dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
832
+ :param builtins.str ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
833
+ :param builtins.str static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
834
+ :param builtins.str status: The status of the private network connection.
835
+ :param builtins.str zone: `zone`) The zone of the Load Balancer.
807
836
  """
808
837
  pulumi.set(__self__, "private_network_id", private_network_id)
809
838
  if dhcp_config is not None:
@@ -819,7 +848,7 @@ class LoadBalancerPrivateNetwork(dict):
819
848
 
820
849
  @property
821
850
  @pulumi.getter(name="privateNetworkId")
822
- def private_network_id(self) -> str:
851
+ def private_network_id(self) -> builtins.str:
823
852
  """
824
853
  The ID of the Private Network to attach to.
825
854
  - > **Important:** Updates to `private_network` will recreate the attachment.
@@ -829,7 +858,7 @@ class LoadBalancerPrivateNetwork(dict):
829
858
  @property
830
859
  @pulumi.getter(name="dhcpConfig")
831
860
  @_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
832
- def dhcp_config(self) -> Optional[bool]:
861
+ def dhcp_config(self) -> Optional[builtins.bool]:
833
862
  """
834
863
  Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
835
864
  """
@@ -837,7 +866,7 @@ class LoadBalancerPrivateNetwork(dict):
837
866
 
838
867
  @property
839
868
  @pulumi.getter(name="ipamIds")
840
- def ipam_ids(self) -> Optional[str]:
869
+ def ipam_ids(self) -> Optional[builtins.str]:
841
870
  """
842
871
  IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
843
872
  """
@@ -846,7 +875,7 @@ class LoadBalancerPrivateNetwork(dict):
846
875
  @property
847
876
  @pulumi.getter(name="staticConfig")
848
877
  @_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
849
- def static_config(self) -> Optional[str]:
878
+ def static_config(self) -> Optional[builtins.str]:
850
879
  """
851
880
  Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
852
881
  """
@@ -854,7 +883,7 @@ class LoadBalancerPrivateNetwork(dict):
854
883
 
855
884
  @property
856
885
  @pulumi.getter
857
- def status(self) -> Optional[str]:
886
+ def status(self) -> Optional[builtins.str]:
858
887
  """
859
888
  The status of the private network connection.
860
889
  """
@@ -862,7 +891,7 @@ class LoadBalancerPrivateNetwork(dict):
862
891
 
863
892
  @property
864
893
  @pulumi.getter
865
- def zone(self) -> Optional[str]:
894
+ def zone(self) -> Optional[builtins.str]:
866
895
  """
867
896
  `zone`) The zone of the Load Balancer.
868
897
  """
@@ -873,26 +902,26 @@ class LoadBalancerPrivateNetwork(dict):
873
902
  class GetAclsAclResult(dict):
874
903
  def __init__(__self__, *,
875
904
  actions: Sequence['outputs.GetAclsAclActionResult'],
876
- created_at: str,
877
- description: str,
878
- frontend_id: str,
879
- id: str,
880
- index: int,
905
+ created_at: builtins.str,
906
+ description: builtins.str,
907
+ frontend_id: builtins.str,
908
+ id: builtins.str,
909
+ index: builtins.int,
881
910
  matches: Sequence['outputs.GetAclsAclMatchResult'],
882
- name: str,
883
- update_at: str):
911
+ name: builtins.str,
912
+ update_at: builtins.str):
884
913
  """
885
914
  :param Sequence['GetAclsAclActionArgs'] actions: The action to be undertaken when an ACL filter matches.
886
- :param str created_at: The date on which the ACL was created (RFC 3339 format).
887
- :param str description: The description of the ACL resource.
888
- :param str frontend_id: The frontend ID this ACL is attached to. ACLs with a matching frontend ID are listed.
915
+ :param builtins.str created_at: The date on which the ACL was created (RFC 3339 format).
916
+ :param builtins.str description: The description of the ACL resource.
917
+ :param builtins.str frontend_id: The frontend ID this ACL is attached to. ACLs with a matching frontend ID are listed.
889
918
  > **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
890
- :param str id: The associated ACL ID.
919
+ :param builtins.str id: The associated ACL ID.
891
920
  > **Important:** LB ACLs' IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
892
- :param int index: The priority of this ACL in the ordered list.
921
+ :param builtins.int index: The priority of this ACL in the ordered list.
893
922
  :param Sequence['GetAclsAclMatchArgs'] matches: The ACL match rule.
894
- :param str name: The ACL name to filter for. ACLs with a matching name are listed.
895
- :param str update_at: The date on which the ACL was last updated (RFC 3339 format).
923
+ :param builtins.str name: The ACL name to filter for. ACLs with a matching name are listed.
924
+ :param builtins.str update_at: The date on which the ACL was last updated (RFC 3339 format).
896
925
  """
897
926
  pulumi.set(__self__, "actions", actions)
898
927
  pulumi.set(__self__, "created_at", created_at)
@@ -914,7 +943,7 @@ class GetAclsAclResult(dict):
914
943
 
915
944
  @property
916
945
  @pulumi.getter(name="createdAt")
917
- def created_at(self) -> str:
946
+ def created_at(self) -> builtins.str:
918
947
  """
919
948
  The date on which the ACL was created (RFC 3339 format).
920
949
  """
@@ -922,7 +951,7 @@ class GetAclsAclResult(dict):
922
951
 
923
952
  @property
924
953
  @pulumi.getter
925
- def description(self) -> str:
954
+ def description(self) -> builtins.str:
926
955
  """
927
956
  The description of the ACL resource.
928
957
  """
@@ -930,7 +959,7 @@ class GetAclsAclResult(dict):
930
959
 
931
960
  @property
932
961
  @pulumi.getter(name="frontendId")
933
- def frontend_id(self) -> str:
962
+ def frontend_id(self) -> builtins.str:
934
963
  """
935
964
  The frontend ID this ACL is attached to. ACLs with a matching frontend ID are listed.
936
965
  > **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
@@ -939,7 +968,7 @@ class GetAclsAclResult(dict):
939
968
 
940
969
  @property
941
970
  @pulumi.getter
942
- def id(self) -> str:
971
+ def id(self) -> builtins.str:
943
972
  """
944
973
  The associated ACL ID.
945
974
  > **Important:** LB ACLs' IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
@@ -948,7 +977,7 @@ class GetAclsAclResult(dict):
948
977
 
949
978
  @property
950
979
  @pulumi.getter
951
- def index(self) -> int:
980
+ def index(self) -> builtins.int:
952
981
  """
953
982
  The priority of this ACL in the ordered list.
954
983
  """
@@ -964,7 +993,7 @@ class GetAclsAclResult(dict):
964
993
 
965
994
  @property
966
995
  @pulumi.getter
967
- def name(self) -> str:
996
+ def name(self) -> builtins.str:
968
997
  """
969
998
  The ACL name to filter for. ACLs with a matching name are listed.
970
999
  """
@@ -972,7 +1001,7 @@ class GetAclsAclResult(dict):
972
1001
 
973
1002
  @property
974
1003
  @pulumi.getter(name="updateAt")
975
- def update_at(self) -> str:
1004
+ def update_at(self) -> builtins.str:
976
1005
  """
977
1006
  The date on which the ACL was last updated (RFC 3339 format).
978
1007
  """
@@ -983,10 +1012,10 @@ class GetAclsAclResult(dict):
983
1012
  class GetAclsAclActionResult(dict):
984
1013
  def __init__(__self__, *,
985
1014
  redirects: Sequence['outputs.GetAclsAclActionRedirectResult'],
986
- type: str):
1015
+ type: builtins.str):
987
1016
  """
988
1017
  :param Sequence['GetAclsAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action.
989
- :param str type: The redirect type.
1018
+ :param builtins.str type: The redirect type.
990
1019
  """
991
1020
  pulumi.set(__self__, "redirects", redirects)
992
1021
  pulumi.set(__self__, "type", type)
@@ -1001,7 +1030,7 @@ class GetAclsAclActionResult(dict):
1001
1030
 
1002
1031
  @property
1003
1032
  @pulumi.getter
1004
- def type(self) -> str:
1033
+ def type(self) -> builtins.str:
1005
1034
  """
1006
1035
  The redirect type.
1007
1036
  """
@@ -1011,13 +1040,13 @@ class GetAclsAclActionResult(dict):
1011
1040
  @pulumi.output_type
1012
1041
  class GetAclsAclActionRedirectResult(dict):
1013
1042
  def __init__(__self__, *,
1014
- code: int,
1015
- target: str,
1016
- type: str):
1043
+ code: builtins.int,
1044
+ target: builtins.str,
1045
+ type: builtins.str):
1017
1046
  """
1018
- :param int code: The HTTP redirect code to use.
1019
- :param str target: The URL used in case of a location redirect, or the scheme name that replaces the request's original scheme.
1020
- :param str type: The redirect type.
1047
+ :param builtins.int code: The HTTP redirect code to use.
1048
+ :param builtins.str target: The URL used in case of a location redirect, or the scheme name that replaces the request's original scheme.
1049
+ :param builtins.str type: The redirect type.
1021
1050
  """
1022
1051
  pulumi.set(__self__, "code", code)
1023
1052
  pulumi.set(__self__, "target", target)
@@ -1025,7 +1054,7 @@ class GetAclsAclActionRedirectResult(dict):
1025
1054
 
1026
1055
  @property
1027
1056
  @pulumi.getter
1028
- def code(self) -> int:
1057
+ def code(self) -> builtins.int:
1029
1058
  """
1030
1059
  The HTTP redirect code to use.
1031
1060
  """
@@ -1033,7 +1062,7 @@ class GetAclsAclActionRedirectResult(dict):
1033
1062
 
1034
1063
  @property
1035
1064
  @pulumi.getter
1036
- def target(self) -> str:
1065
+ def target(self) -> builtins.str:
1037
1066
  """
1038
1067
  The URL used in case of a location redirect, or the scheme name that replaces the request's original scheme.
1039
1068
  """
@@ -1041,7 +1070,7 @@ class GetAclsAclActionRedirectResult(dict):
1041
1070
 
1042
1071
  @property
1043
1072
  @pulumi.getter
1044
- def type(self) -> str:
1073
+ def type(self) -> builtins.str:
1045
1074
  """
1046
1075
  The redirect type.
1047
1076
  """
@@ -1051,27 +1080,30 @@ class GetAclsAclActionRedirectResult(dict):
1051
1080
  @pulumi.output_type
1052
1081
  class GetAclsAclMatchResult(dict):
1053
1082
  def __init__(__self__, *,
1054
- http_filter: str,
1055
- http_filter_option: str,
1056
- http_filter_values: Sequence[str],
1057
- invert: bool,
1058
- ip_subnets: Sequence[str]):
1059
- """
1060
- :param str http_filter: The HTTP filter to match.
1061
- :param str http_filter_option: A list of possible values for the HTTP filter based on the HTTP header.
1062
- :param Sequence[str] http_filter_values: The possible values to match for a given HTTP filter.
1063
- :param bool invert: The condition will be of type "unless" if invert is set to `true`
1064
- :param Sequence[str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
1083
+ http_filter: builtins.str,
1084
+ http_filter_option: builtins.str,
1085
+ http_filter_values: Sequence[builtins.str],
1086
+ invert: builtins.bool,
1087
+ ip_subnets: Sequence[builtins.str],
1088
+ ips_edge_services: builtins.bool):
1089
+ """
1090
+ :param builtins.str http_filter: The HTTP filter to match.
1091
+ :param builtins.str http_filter_option: A list of possible values for the HTTP filter based on the HTTP header.
1092
+ :param Sequence[builtins.str] http_filter_values: The possible values to match for a given HTTP filter.
1093
+ :param builtins.bool invert: The condition will be of type "unless" if invert is set to `true`
1094
+ :param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
1095
+ :param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched.
1065
1096
  """
1066
1097
  pulumi.set(__self__, "http_filter", http_filter)
1067
1098
  pulumi.set(__self__, "http_filter_option", http_filter_option)
1068
1099
  pulumi.set(__self__, "http_filter_values", http_filter_values)
1069
1100
  pulumi.set(__self__, "invert", invert)
1070
1101
  pulumi.set(__self__, "ip_subnets", ip_subnets)
1102
+ pulumi.set(__self__, "ips_edge_services", ips_edge_services)
1071
1103
 
1072
1104
  @property
1073
1105
  @pulumi.getter(name="httpFilter")
1074
- def http_filter(self) -> str:
1106
+ def http_filter(self) -> builtins.str:
1075
1107
  """
1076
1108
  The HTTP filter to match.
1077
1109
  """
@@ -1079,7 +1111,7 @@ class GetAclsAclMatchResult(dict):
1079
1111
 
1080
1112
  @property
1081
1113
  @pulumi.getter(name="httpFilterOption")
1082
- def http_filter_option(self) -> str:
1114
+ def http_filter_option(self) -> builtins.str:
1083
1115
  """
1084
1116
  A list of possible values for the HTTP filter based on the HTTP header.
1085
1117
  """
@@ -1087,7 +1119,7 @@ class GetAclsAclMatchResult(dict):
1087
1119
 
1088
1120
  @property
1089
1121
  @pulumi.getter(name="httpFilterValues")
1090
- def http_filter_values(self) -> Sequence[str]:
1122
+ def http_filter_values(self) -> Sequence[builtins.str]:
1091
1123
  """
1092
1124
  The possible values to match for a given HTTP filter.
1093
1125
  """
@@ -1095,7 +1127,7 @@ class GetAclsAclMatchResult(dict):
1095
1127
 
1096
1128
  @property
1097
1129
  @pulumi.getter
1098
- def invert(self) -> bool:
1130
+ def invert(self) -> builtins.bool:
1099
1131
  """
1100
1132
  The condition will be of type "unless" if invert is set to `true`
1101
1133
  """
@@ -1103,27 +1135,35 @@ class GetAclsAclMatchResult(dict):
1103
1135
 
1104
1136
  @property
1105
1137
  @pulumi.getter(name="ipSubnets")
1106
- def ip_subnets(self) -> Sequence[str]:
1138
+ def ip_subnets(self) -> Sequence[builtins.str]:
1107
1139
  """
1108
1140
  A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
1109
1141
  """
1110
1142
  return pulumi.get(self, "ip_subnets")
1111
1143
 
1144
+ @property
1145
+ @pulumi.getter(name="ipsEdgeServices")
1146
+ def ips_edge_services(self) -> builtins.bool:
1147
+ """
1148
+ Defines whether Edge Services IPs should be matched.
1149
+ """
1150
+ return pulumi.get(self, "ips_edge_services")
1151
+
1112
1152
 
1113
1153
  @pulumi.output_type
1114
1154
  class GetBackendHealthCheckHttpResult(dict):
1115
1155
  def __init__(__self__, *,
1116
- code: int,
1117
- host_header: str,
1118
- method: str,
1119
- sni: str,
1120
- uri: str):
1121
- """
1122
- :param int code: The expected HTTP status code
1123
- :param str host_header: The HTTP host header to use for HC requests
1124
- :param str method: The HTTP method to use for HC requests
1125
- :param str sni: The SNI to use for HC requests over SSL
1126
- :param str uri: The HTTPS endpoint URL to call for HC requests
1156
+ code: builtins.int,
1157
+ host_header: builtins.str,
1158
+ method: builtins.str,
1159
+ sni: builtins.str,
1160
+ uri: builtins.str):
1161
+ """
1162
+ :param builtins.int code: The expected HTTP status code
1163
+ :param builtins.str host_header: The HTTP host header to use for HC requests
1164
+ :param builtins.str method: The HTTP method to use for HC requests
1165
+ :param builtins.str sni: The SNI to use for HC requests over SSL
1166
+ :param builtins.str uri: The HTTPS endpoint URL to call for HC requests
1127
1167
  """
1128
1168
  pulumi.set(__self__, "code", code)
1129
1169
  pulumi.set(__self__, "host_header", host_header)
@@ -1133,7 +1173,7 @@ class GetBackendHealthCheckHttpResult(dict):
1133
1173
 
1134
1174
  @property
1135
1175
  @pulumi.getter
1136
- def code(self) -> int:
1176
+ def code(self) -> builtins.int:
1137
1177
  """
1138
1178
  The expected HTTP status code
1139
1179
  """
@@ -1141,7 +1181,7 @@ class GetBackendHealthCheckHttpResult(dict):
1141
1181
 
1142
1182
  @property
1143
1183
  @pulumi.getter(name="hostHeader")
1144
- def host_header(self) -> str:
1184
+ def host_header(self) -> builtins.str:
1145
1185
  """
1146
1186
  The HTTP host header to use for HC requests
1147
1187
  """
@@ -1149,7 +1189,7 @@ class GetBackendHealthCheckHttpResult(dict):
1149
1189
 
1150
1190
  @property
1151
1191
  @pulumi.getter
1152
- def method(self) -> str:
1192
+ def method(self) -> builtins.str:
1153
1193
  """
1154
1194
  The HTTP method to use for HC requests
1155
1195
  """
@@ -1157,7 +1197,7 @@ class GetBackendHealthCheckHttpResult(dict):
1157
1197
 
1158
1198
  @property
1159
1199
  @pulumi.getter
1160
- def sni(self) -> str:
1200
+ def sni(self) -> builtins.str:
1161
1201
  """
1162
1202
  The SNI to use for HC requests over SSL
1163
1203
  """
@@ -1165,7 +1205,7 @@ class GetBackendHealthCheckHttpResult(dict):
1165
1205
 
1166
1206
  @property
1167
1207
  @pulumi.getter
1168
- def uri(self) -> str:
1208
+ def uri(self) -> builtins.str:
1169
1209
  """
1170
1210
  The HTTPS endpoint URL to call for HC requests
1171
1211
  """
@@ -1181,59 +1221,59 @@ class GetBackendHealthCheckTcpResult(dict):
1181
1221
  @pulumi.output_type
1182
1222
  class GetBackendsBackendResult(dict):
1183
1223
  def __init__(__self__, *,
1184
- created_at: str,
1185
- failover_host: str,
1186
- forward_port: int,
1187
- forward_port_algorithm: str,
1188
- forward_protocol: str,
1189
- health_check_delay: str,
1224
+ created_at: builtins.str,
1225
+ failover_host: builtins.str,
1226
+ forward_port: builtins.int,
1227
+ forward_port_algorithm: builtins.str,
1228
+ forward_protocol: builtins.str,
1229
+ health_check_delay: builtins.str,
1190
1230
  health_check_http: Sequence['outputs.GetBackendsBackendHealthCheckHttpResult'],
1191
1231
  health_check_https: Sequence['outputs.GetBackendsBackendHealthCheckHttpResult'],
1192
- health_check_max_retries: int,
1193
- health_check_port: int,
1232
+ health_check_max_retries: builtins.int,
1233
+ health_check_port: builtins.int,
1194
1234
  health_check_tcps: Sequence['outputs.GetBackendsBackendHealthCheckTcpResult'],
1195
- health_check_timeout: str,
1196
- id: str,
1197
- ignore_ssl_server_verify: bool,
1198
- lb_id: str,
1199
- name: str,
1200
- on_marked_down_action: str,
1201
- proxy_protocol: str,
1202
- server_ips: Sequence[str],
1203
- ssl_bridging: bool,
1204
- sticky_sessions: str,
1205
- sticky_sessions_cookie_name: str,
1206
- timeout_connect: str,
1207
- timeout_server: str,
1208
- timeout_tunnel: str,
1209
- update_at: str):
1210
- """
1211
- :param str created_at: The date on which the backend was created (RFC 3339 format).
1212
- :param str failover_host: Scaleway S3 bucket website to be served if all backend servers are down.
1213
- :param int forward_port: User sessions will be forwarded to this backend server port.
1214
- :param str forward_port_algorithm: Load balancing algorithm.
1215
- :param str forward_protocol: Backend protocol.
1216
- :param str health_check_delay: Interval between two health check requests.
1235
+ health_check_timeout: builtins.str,
1236
+ id: builtins.str,
1237
+ ignore_ssl_server_verify: builtins.bool,
1238
+ lb_id: builtins.str,
1239
+ name: builtins.str,
1240
+ on_marked_down_action: builtins.str,
1241
+ proxy_protocol: builtins.str,
1242
+ server_ips: Sequence[builtins.str],
1243
+ ssl_bridging: builtins.bool,
1244
+ sticky_sessions: builtins.str,
1245
+ sticky_sessions_cookie_name: builtins.str,
1246
+ timeout_connect: builtins.str,
1247
+ timeout_server: builtins.str,
1248
+ timeout_tunnel: builtins.str,
1249
+ update_at: builtins.str):
1250
+ """
1251
+ :param builtins.str created_at: The date on which the backend was created (RFC 3339 format).
1252
+ :param builtins.str failover_host: Scaleway S3 bucket website to be served if all backend servers are down.
1253
+ :param builtins.int forward_port: User sessions will be forwarded to this backend server port.
1254
+ :param builtins.str forward_port_algorithm: Load balancing algorithm.
1255
+ :param builtins.str forward_protocol: Backend protocol.
1256
+ :param builtins.str health_check_delay: Interval between two health check requests.
1217
1257
  :param Sequence['GetBackendsBackendHealthCheckHttpArgs'] health_check_http: This block enables HTTP health checks.
1218
1258
  :param Sequence['GetBackendsBackendHealthCheckHttpArgs'] health_check_https: This block enables HTTPS health checks.
1219
- :param int health_check_max_retries: Number of allowed failed health check requests before the backend server is marked as down.
1220
- :param int health_check_port: Port the health check requests will be sent to.
1259
+ :param builtins.int health_check_max_retries: Number of allowed failed health check requests before the backend server is marked as down.
1260
+ :param builtins.int health_check_port: Port the health check requests will be sent to.
1221
1261
  :param Sequence['GetBackendsBackendHealthCheckTcpArgs'] health_check_tcps: This block enables TCP health checks.
1222
- :param str health_check_timeout: Timeout before a health check request is considered failed.
1223
- :param str id: The associated backend ID.
1224
- :param bool ignore_ssl_server_verify: Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection.
1225
- :param str lb_id: The Load Balancer ID this backend is attached to. Backends with a matching ID are listed.
1226
- :param str name: The backend name to filter for. Backends with a matching name are listed.
1227
- :param str on_marked_down_action: Modify what occurs when a backend server is marked down.
1228
- :param str proxy_protocol: The type of PROXY protocol.
1229
- :param Sequence[str] server_ips: List of backend server IP addresses.
1230
- :param bool ssl_bridging: Enables SSL between Load Balancer and backend servers.
1231
- :param str sticky_sessions: Enables cookie-based session persistence.
1232
- :param str sticky_sessions_cookie_name: Cookie name for sticky sessions.
1233
- :param str timeout_connect: Maximum initial server connection establishment time.
1234
- :param str timeout_server: Maximum server connection inactivity time.
1235
- :param str timeout_tunnel: Maximum tunnel inactivity time.
1236
- :param str update_at: The date on which the backend was last updated (RFC 3339 format).
1262
+ :param builtins.str health_check_timeout: Timeout before a health check request is considered failed.
1263
+ :param builtins.str id: The associated backend ID.
1264
+ :param builtins.bool ignore_ssl_server_verify: Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection.
1265
+ :param builtins.str lb_id: The Load Balancer ID this backend is attached to. Backends with a matching ID are listed.
1266
+ :param builtins.str name: The backend name to filter for. Backends with a matching name are listed.
1267
+ :param builtins.str on_marked_down_action: Modify what occurs when a backend server is marked down.
1268
+ :param builtins.str proxy_protocol: The type of PROXY protocol.
1269
+ :param Sequence[builtins.str] server_ips: List of backend server IP addresses.
1270
+ :param builtins.bool ssl_bridging: Enables SSL between Load Balancer and backend servers.
1271
+ :param builtins.str sticky_sessions: Enables cookie-based session persistence.
1272
+ :param builtins.str sticky_sessions_cookie_name: Cookie name for sticky sessions.
1273
+ :param builtins.str timeout_connect: Maximum initial server connection establishment time.
1274
+ :param builtins.str timeout_server: Maximum server connection inactivity time.
1275
+ :param builtins.str timeout_tunnel: Maximum tunnel inactivity time.
1276
+ :param builtins.str update_at: The date on which the backend was last updated (RFC 3339 format).
1237
1277
  """
1238
1278
  pulumi.set(__self__, "created_at", created_at)
1239
1279
  pulumi.set(__self__, "failover_host", failover_host)
@@ -1264,7 +1304,7 @@ class GetBackendsBackendResult(dict):
1264
1304
 
1265
1305
  @property
1266
1306
  @pulumi.getter(name="createdAt")
1267
- def created_at(self) -> str:
1307
+ def created_at(self) -> builtins.str:
1268
1308
  """
1269
1309
  The date on which the backend was created (RFC 3339 format).
1270
1310
  """
@@ -1272,7 +1312,7 @@ class GetBackendsBackendResult(dict):
1272
1312
 
1273
1313
  @property
1274
1314
  @pulumi.getter(name="failoverHost")
1275
- def failover_host(self) -> str:
1315
+ def failover_host(self) -> builtins.str:
1276
1316
  """
1277
1317
  Scaleway S3 bucket website to be served if all backend servers are down.
1278
1318
  """
@@ -1280,7 +1320,7 @@ class GetBackendsBackendResult(dict):
1280
1320
 
1281
1321
  @property
1282
1322
  @pulumi.getter(name="forwardPort")
1283
- def forward_port(self) -> int:
1323
+ def forward_port(self) -> builtins.int:
1284
1324
  """
1285
1325
  User sessions will be forwarded to this backend server port.
1286
1326
  """
@@ -1288,7 +1328,7 @@ class GetBackendsBackendResult(dict):
1288
1328
 
1289
1329
  @property
1290
1330
  @pulumi.getter(name="forwardPortAlgorithm")
1291
- def forward_port_algorithm(self) -> str:
1331
+ def forward_port_algorithm(self) -> builtins.str:
1292
1332
  """
1293
1333
  Load balancing algorithm.
1294
1334
  """
@@ -1296,7 +1336,7 @@ class GetBackendsBackendResult(dict):
1296
1336
 
1297
1337
  @property
1298
1338
  @pulumi.getter(name="forwardProtocol")
1299
- def forward_protocol(self) -> str:
1339
+ def forward_protocol(self) -> builtins.str:
1300
1340
  """
1301
1341
  Backend protocol.
1302
1342
  """
@@ -1304,7 +1344,7 @@ class GetBackendsBackendResult(dict):
1304
1344
 
1305
1345
  @property
1306
1346
  @pulumi.getter(name="healthCheckDelay")
1307
- def health_check_delay(self) -> str:
1347
+ def health_check_delay(self) -> builtins.str:
1308
1348
  """
1309
1349
  Interval between two health check requests.
1310
1350
  """
@@ -1328,7 +1368,7 @@ class GetBackendsBackendResult(dict):
1328
1368
 
1329
1369
  @property
1330
1370
  @pulumi.getter(name="healthCheckMaxRetries")
1331
- def health_check_max_retries(self) -> int:
1371
+ def health_check_max_retries(self) -> builtins.int:
1332
1372
  """
1333
1373
  Number of allowed failed health check requests before the backend server is marked as down.
1334
1374
  """
@@ -1336,7 +1376,7 @@ class GetBackendsBackendResult(dict):
1336
1376
 
1337
1377
  @property
1338
1378
  @pulumi.getter(name="healthCheckPort")
1339
- def health_check_port(self) -> int:
1379
+ def health_check_port(self) -> builtins.int:
1340
1380
  """
1341
1381
  Port the health check requests will be sent to.
1342
1382
  """
@@ -1352,7 +1392,7 @@ class GetBackendsBackendResult(dict):
1352
1392
 
1353
1393
  @property
1354
1394
  @pulumi.getter(name="healthCheckTimeout")
1355
- def health_check_timeout(self) -> str:
1395
+ def health_check_timeout(self) -> builtins.str:
1356
1396
  """
1357
1397
  Timeout before a health check request is considered failed.
1358
1398
  """
@@ -1360,7 +1400,7 @@ class GetBackendsBackendResult(dict):
1360
1400
 
1361
1401
  @property
1362
1402
  @pulumi.getter
1363
- def id(self) -> str:
1403
+ def id(self) -> builtins.str:
1364
1404
  """
1365
1405
  The associated backend ID.
1366
1406
  """
@@ -1368,7 +1408,7 @@ class GetBackendsBackendResult(dict):
1368
1408
 
1369
1409
  @property
1370
1410
  @pulumi.getter(name="ignoreSslServerVerify")
1371
- def ignore_ssl_server_verify(self) -> bool:
1411
+ def ignore_ssl_server_verify(self) -> builtins.bool:
1372
1412
  """
1373
1413
  Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection.
1374
1414
  """
@@ -1376,7 +1416,7 @@ class GetBackendsBackendResult(dict):
1376
1416
 
1377
1417
  @property
1378
1418
  @pulumi.getter(name="lbId")
1379
- def lb_id(self) -> str:
1419
+ def lb_id(self) -> builtins.str:
1380
1420
  """
1381
1421
  The Load Balancer ID this backend is attached to. Backends with a matching ID are listed.
1382
1422
  """
@@ -1384,7 +1424,7 @@ class GetBackendsBackendResult(dict):
1384
1424
 
1385
1425
  @property
1386
1426
  @pulumi.getter
1387
- def name(self) -> str:
1427
+ def name(self) -> builtins.str:
1388
1428
  """
1389
1429
  The backend name to filter for. Backends with a matching name are listed.
1390
1430
  """
@@ -1392,7 +1432,7 @@ class GetBackendsBackendResult(dict):
1392
1432
 
1393
1433
  @property
1394
1434
  @pulumi.getter(name="onMarkedDownAction")
1395
- def on_marked_down_action(self) -> str:
1435
+ def on_marked_down_action(self) -> builtins.str:
1396
1436
  """
1397
1437
  Modify what occurs when a backend server is marked down.
1398
1438
  """
@@ -1400,7 +1440,7 @@ class GetBackendsBackendResult(dict):
1400
1440
 
1401
1441
  @property
1402
1442
  @pulumi.getter(name="proxyProtocol")
1403
- def proxy_protocol(self) -> str:
1443
+ def proxy_protocol(self) -> builtins.str:
1404
1444
  """
1405
1445
  The type of PROXY protocol.
1406
1446
  """
@@ -1408,7 +1448,7 @@ class GetBackendsBackendResult(dict):
1408
1448
 
1409
1449
  @property
1410
1450
  @pulumi.getter(name="serverIps")
1411
- def server_ips(self) -> Sequence[str]:
1451
+ def server_ips(self) -> Sequence[builtins.str]:
1412
1452
  """
1413
1453
  List of backend server IP addresses.
1414
1454
  """
@@ -1416,7 +1456,7 @@ class GetBackendsBackendResult(dict):
1416
1456
 
1417
1457
  @property
1418
1458
  @pulumi.getter(name="sslBridging")
1419
- def ssl_bridging(self) -> bool:
1459
+ def ssl_bridging(self) -> builtins.bool:
1420
1460
  """
1421
1461
  Enables SSL between Load Balancer and backend servers.
1422
1462
  """
@@ -1424,7 +1464,7 @@ class GetBackendsBackendResult(dict):
1424
1464
 
1425
1465
  @property
1426
1466
  @pulumi.getter(name="stickySessions")
1427
- def sticky_sessions(self) -> str:
1467
+ def sticky_sessions(self) -> builtins.str:
1428
1468
  """
1429
1469
  Enables cookie-based session persistence.
1430
1470
  """
@@ -1432,7 +1472,7 @@ class GetBackendsBackendResult(dict):
1432
1472
 
1433
1473
  @property
1434
1474
  @pulumi.getter(name="stickySessionsCookieName")
1435
- def sticky_sessions_cookie_name(self) -> str:
1475
+ def sticky_sessions_cookie_name(self) -> builtins.str:
1436
1476
  """
1437
1477
  Cookie name for sticky sessions.
1438
1478
  """
@@ -1440,7 +1480,7 @@ class GetBackendsBackendResult(dict):
1440
1480
 
1441
1481
  @property
1442
1482
  @pulumi.getter(name="timeoutConnect")
1443
- def timeout_connect(self) -> str:
1483
+ def timeout_connect(self) -> builtins.str:
1444
1484
  """
1445
1485
  Maximum initial server connection establishment time.
1446
1486
  """
@@ -1448,7 +1488,7 @@ class GetBackendsBackendResult(dict):
1448
1488
 
1449
1489
  @property
1450
1490
  @pulumi.getter(name="timeoutServer")
1451
- def timeout_server(self) -> str:
1491
+ def timeout_server(self) -> builtins.str:
1452
1492
  """
1453
1493
  Maximum server connection inactivity time.
1454
1494
  """
@@ -1456,7 +1496,7 @@ class GetBackendsBackendResult(dict):
1456
1496
 
1457
1497
  @property
1458
1498
  @pulumi.getter(name="timeoutTunnel")
1459
- def timeout_tunnel(self) -> str:
1499
+ def timeout_tunnel(self) -> builtins.str:
1460
1500
  """
1461
1501
  Maximum tunnel inactivity time.
1462
1502
  """
@@ -1464,7 +1504,7 @@ class GetBackendsBackendResult(dict):
1464
1504
 
1465
1505
  @property
1466
1506
  @pulumi.getter(name="updateAt")
1467
- def update_at(self) -> str:
1507
+ def update_at(self) -> builtins.str:
1468
1508
  """
1469
1509
  The date on which the backend was last updated (RFC 3339 format).
1470
1510
  """
@@ -1474,17 +1514,17 @@ class GetBackendsBackendResult(dict):
1474
1514
  @pulumi.output_type
1475
1515
  class GetBackendsBackendHealthCheckHttpResult(dict):
1476
1516
  def __init__(__self__, *,
1477
- code: int,
1478
- host_header: str,
1479
- method: str,
1480
- sni: str,
1481
- uri: str):
1482
- """
1483
- :param int code: The expected HTTP status code.
1484
- :param str host_header: The HTTP host header to use for health check requests.
1485
- :param str method: The HTTP method to use for health check requests.
1486
- :param str sni: The SNI to use for HC requests over SSL.
1487
- :param str uri: The path of health check requests.
1517
+ code: builtins.int,
1518
+ host_header: builtins.str,
1519
+ method: builtins.str,
1520
+ sni: builtins.str,
1521
+ uri: builtins.str):
1522
+ """
1523
+ :param builtins.int code: The expected HTTP status code.
1524
+ :param builtins.str host_header: The HTTP host header to use for health check requests.
1525
+ :param builtins.str method: The HTTP method to use for health check requests.
1526
+ :param builtins.str sni: The SNI to use for HC requests over SSL.
1527
+ :param builtins.str uri: The path of health check requests.
1488
1528
  """
1489
1529
  pulumi.set(__self__, "code", code)
1490
1530
  pulumi.set(__self__, "host_header", host_header)
@@ -1494,7 +1534,7 @@ class GetBackendsBackendHealthCheckHttpResult(dict):
1494
1534
 
1495
1535
  @property
1496
1536
  @pulumi.getter
1497
- def code(self) -> int:
1537
+ def code(self) -> builtins.int:
1498
1538
  """
1499
1539
  The expected HTTP status code.
1500
1540
  """
@@ -1502,7 +1542,7 @@ class GetBackendsBackendHealthCheckHttpResult(dict):
1502
1542
 
1503
1543
  @property
1504
1544
  @pulumi.getter(name="hostHeader")
1505
- def host_header(self) -> str:
1545
+ def host_header(self) -> builtins.str:
1506
1546
  """
1507
1547
  The HTTP host header to use for health check requests.
1508
1548
  """
@@ -1510,7 +1550,7 @@ class GetBackendsBackendHealthCheckHttpResult(dict):
1510
1550
 
1511
1551
  @property
1512
1552
  @pulumi.getter
1513
- def method(self) -> str:
1553
+ def method(self) -> builtins.str:
1514
1554
  """
1515
1555
  The HTTP method to use for health check requests.
1516
1556
  """
@@ -1518,7 +1558,7 @@ class GetBackendsBackendHealthCheckHttpResult(dict):
1518
1558
 
1519
1559
  @property
1520
1560
  @pulumi.getter
1521
- def sni(self) -> str:
1561
+ def sni(self) -> builtins.str:
1522
1562
  """
1523
1563
  The SNI to use for HC requests over SSL.
1524
1564
  """
@@ -1526,7 +1566,7 @@ class GetBackendsBackendHealthCheckHttpResult(dict):
1526
1566
 
1527
1567
  @property
1528
1568
  @pulumi.getter
1529
- def uri(self) -> str:
1569
+ def uri(self) -> builtins.str:
1530
1570
  """
1531
1571
  The path of health check requests.
1532
1572
  """
@@ -1542,15 +1582,15 @@ class GetBackendsBackendHealthCheckTcpResult(dict):
1542
1582
  @pulumi.output_type
1543
1583
  class GetCertificateCustomCertificateResult(dict):
1544
1584
  def __init__(__self__, *,
1545
- certificate_chain: str):
1585
+ certificate_chain: builtins.str):
1546
1586
  """
1547
- :param str certificate_chain: The full PEM-formatted certificate chain
1587
+ :param builtins.str certificate_chain: The full PEM-formatted certificate chain
1548
1588
  """
1549
1589
  pulumi.set(__self__, "certificate_chain", certificate_chain)
1550
1590
 
1551
1591
  @property
1552
1592
  @pulumi.getter(name="certificateChain")
1553
- def certificate_chain(self) -> str:
1593
+ def certificate_chain(self) -> builtins.str:
1554
1594
  """
1555
1595
  The full PEM-formatted certificate chain
1556
1596
  """
@@ -1560,18 +1600,18 @@ class GetCertificateCustomCertificateResult(dict):
1560
1600
  @pulumi.output_type
1561
1601
  class GetCertificateLetsencryptResult(dict):
1562
1602
  def __init__(__self__, *,
1563
- common_name: str,
1564
- subject_alternative_names: Sequence[str]):
1603
+ common_name: builtins.str,
1604
+ subject_alternative_names: Sequence[builtins.str]):
1565
1605
  """
1566
- :param str common_name: The main domain name of the certificate
1567
- :param Sequence[str] subject_alternative_names: The alternative domain names of the certificate
1606
+ :param builtins.str common_name: The main domain name of the certificate
1607
+ :param Sequence[builtins.str] subject_alternative_names: The alternative domain names of the certificate
1568
1608
  """
1569
1609
  pulumi.set(__self__, "common_name", common_name)
1570
1610
  pulumi.set(__self__, "subject_alternative_names", subject_alternative_names)
1571
1611
 
1572
1612
  @property
1573
1613
  @pulumi.getter(name="commonName")
1574
- def common_name(self) -> str:
1614
+ def common_name(self) -> builtins.str:
1575
1615
  """
1576
1616
  The main domain name of the certificate
1577
1617
  """
@@ -1579,7 +1619,7 @@ class GetCertificateLetsencryptResult(dict):
1579
1619
 
1580
1620
  @property
1581
1621
  @pulumi.getter(name="subjectAlternativeNames")
1582
- def subject_alternative_names(self) -> Sequence[str]:
1622
+ def subject_alternative_names(self) -> Sequence[builtins.str]:
1583
1623
  """
1584
1624
  The alternative domain names of the certificate
1585
1625
  """
@@ -1590,19 +1630,19 @@ class GetCertificateLetsencryptResult(dict):
1590
1630
  class GetFrontendAclResult(dict):
1591
1631
  def __init__(__self__, *,
1592
1632
  actions: Sequence['outputs.GetFrontendAclActionResult'],
1593
- created_at: str,
1594
- description: str,
1633
+ created_at: builtins.str,
1634
+ description: builtins.str,
1595
1635
  matches: Sequence['outputs.GetFrontendAclMatchResult'],
1596
- name: str,
1597
- updated_at: str):
1636
+ name: builtins.str,
1637
+ updated_at: builtins.str):
1598
1638
  """
1599
1639
  :param Sequence['GetFrontendAclActionArgs'] actions: Action to undertake when an ACL filter matches
1600
- :param str created_at: IsDate and time of ACL's creation (RFC 3339 format)
1601
- :param str description: Description of the ACL
1640
+ :param builtins.str created_at: IsDate and time of ACL's creation (RFC 3339 format)
1641
+ :param builtins.str description: Description of the ACL
1602
1642
  :param Sequence['GetFrontendAclMatchArgs'] matches: The ACL match rule
1603
- :param str name: The name of the frontend.
1643
+ :param builtins.str name: The name of the frontend.
1604
1644
  - When using the `name` you should specify the `lb-id`
1605
- :param str updated_at: IsDate and time of ACL's update (RFC 3339 format)
1645
+ :param builtins.str updated_at: IsDate and time of ACL's update (RFC 3339 format)
1606
1646
  """
1607
1647
  pulumi.set(__self__, "actions", actions)
1608
1648
  pulumi.set(__self__, "created_at", created_at)
@@ -1621,7 +1661,7 @@ class GetFrontendAclResult(dict):
1621
1661
 
1622
1662
  @property
1623
1663
  @pulumi.getter(name="createdAt")
1624
- def created_at(self) -> str:
1664
+ def created_at(self) -> builtins.str:
1625
1665
  """
1626
1666
  IsDate and time of ACL's creation (RFC 3339 format)
1627
1667
  """
@@ -1629,7 +1669,7 @@ class GetFrontendAclResult(dict):
1629
1669
 
1630
1670
  @property
1631
1671
  @pulumi.getter
1632
- def description(self) -> str:
1672
+ def description(self) -> builtins.str:
1633
1673
  """
1634
1674
  Description of the ACL
1635
1675
  """
@@ -1645,7 +1685,7 @@ class GetFrontendAclResult(dict):
1645
1685
 
1646
1686
  @property
1647
1687
  @pulumi.getter
1648
- def name(self) -> str:
1688
+ def name(self) -> builtins.str:
1649
1689
  """
1650
1690
  The name of the frontend.
1651
1691
  - When using the `name` you should specify the `lb-id`
@@ -1654,7 +1694,7 @@ class GetFrontendAclResult(dict):
1654
1694
 
1655
1695
  @property
1656
1696
  @pulumi.getter(name="updatedAt")
1657
- def updated_at(self) -> str:
1697
+ def updated_at(self) -> builtins.str:
1658
1698
  """
1659
1699
  IsDate and time of ACL's update (RFC 3339 format)
1660
1700
  """
@@ -1665,10 +1705,10 @@ class GetFrontendAclResult(dict):
1665
1705
  class GetFrontendAclActionResult(dict):
1666
1706
  def __init__(__self__, *,
1667
1707
  redirects: Sequence['outputs.GetFrontendAclActionRedirectResult'],
1668
- type: str):
1708
+ type: builtins.str):
1669
1709
  """
1670
1710
  :param Sequence['GetFrontendAclActionRedirectArgs'] redirects: Redirect parameters when using an ACL with `redirect` action
1671
- :param str type: The action type
1711
+ :param builtins.str type: The action type
1672
1712
  """
1673
1713
  pulumi.set(__self__, "redirects", redirects)
1674
1714
  pulumi.set(__self__, "type", type)
@@ -1683,7 +1723,7 @@ class GetFrontendAclActionResult(dict):
1683
1723
 
1684
1724
  @property
1685
1725
  @pulumi.getter
1686
- def type(self) -> str:
1726
+ def type(self) -> builtins.str:
1687
1727
  """
1688
1728
  The action type
1689
1729
  """
@@ -1693,13 +1733,13 @@ class GetFrontendAclActionResult(dict):
1693
1733
  @pulumi.output_type
1694
1734
  class GetFrontendAclActionRedirectResult(dict):
1695
1735
  def __init__(__self__, *,
1696
- code: int,
1697
- target: str,
1698
- type: str):
1736
+ code: builtins.int,
1737
+ target: builtins.str,
1738
+ type: builtins.str):
1699
1739
  """
1700
- :param int code: The HTTP redirect code to use
1701
- :param str target: An URL can be used in case of a location redirect
1702
- :param str type: The redirect type
1740
+ :param builtins.int code: The HTTP redirect code to use
1741
+ :param builtins.str target: An URL can be used in case of a location redirect
1742
+ :param builtins.str type: The redirect type
1703
1743
  """
1704
1744
  pulumi.set(__self__, "code", code)
1705
1745
  pulumi.set(__self__, "target", target)
@@ -1707,7 +1747,7 @@ class GetFrontendAclActionRedirectResult(dict):
1707
1747
 
1708
1748
  @property
1709
1749
  @pulumi.getter
1710
- def code(self) -> int:
1750
+ def code(self) -> builtins.int:
1711
1751
  """
1712
1752
  The HTTP redirect code to use
1713
1753
  """
@@ -1715,7 +1755,7 @@ class GetFrontendAclActionRedirectResult(dict):
1715
1755
 
1716
1756
  @property
1717
1757
  @pulumi.getter
1718
- def target(self) -> str:
1758
+ def target(self) -> builtins.str:
1719
1759
  """
1720
1760
  An URL can be used in case of a location redirect
1721
1761
  """
@@ -1723,7 +1763,7 @@ class GetFrontendAclActionRedirectResult(dict):
1723
1763
 
1724
1764
  @property
1725
1765
  @pulumi.getter
1726
- def type(self) -> str:
1766
+ def type(self) -> builtins.str:
1727
1767
  """
1728
1768
  The redirect type
1729
1769
  """
@@ -1733,27 +1773,30 @@ class GetFrontendAclActionRedirectResult(dict):
1733
1773
  @pulumi.output_type
1734
1774
  class GetFrontendAclMatchResult(dict):
1735
1775
  def __init__(__self__, *,
1736
- http_filter: str,
1737
- http_filter_option: str,
1738
- http_filter_values: Sequence[str],
1739
- invert: bool,
1740
- ip_subnets: Sequence[str]):
1741
- """
1742
- :param str http_filter: The HTTP filter to match
1743
- :param str http_filter_option: You can use this field with http_header_match acl type to set the header name to filter
1744
- :param Sequence[str] http_filter_values: A list of possible values to match for the given HTTP filter
1745
- :param bool invert: If set to true, the condition will be of type "unless"
1746
- :param Sequence[str] ip_subnets: A list of IPs or CIDR v4/v6 addresses of the client of the session to match
1776
+ http_filter: builtins.str,
1777
+ http_filter_option: builtins.str,
1778
+ http_filter_values: Sequence[builtins.str],
1779
+ invert: builtins.bool,
1780
+ ip_subnets: Sequence[builtins.str],
1781
+ ips_edge_services: builtins.bool):
1782
+ """
1783
+ :param builtins.str http_filter: The HTTP filter to match
1784
+ :param builtins.str http_filter_option: You can use this field with http_header_match acl type to set the header name to filter
1785
+ :param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter
1786
+ :param builtins.bool invert: If set to true, the condition will be of type "unless"
1787
+ :param Sequence[builtins.str] ip_subnets: A list of IPs or CIDR v4/v6 addresses of the client of the session to match
1788
+ :param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched
1747
1789
  """
1748
1790
  pulumi.set(__self__, "http_filter", http_filter)
1749
1791
  pulumi.set(__self__, "http_filter_option", http_filter_option)
1750
1792
  pulumi.set(__self__, "http_filter_values", http_filter_values)
1751
1793
  pulumi.set(__self__, "invert", invert)
1752
1794
  pulumi.set(__self__, "ip_subnets", ip_subnets)
1795
+ pulumi.set(__self__, "ips_edge_services", ips_edge_services)
1753
1796
 
1754
1797
  @property
1755
1798
  @pulumi.getter(name="httpFilter")
1756
- def http_filter(self) -> str:
1799
+ def http_filter(self) -> builtins.str:
1757
1800
  """
1758
1801
  The HTTP filter to match
1759
1802
  """
@@ -1761,7 +1804,7 @@ class GetFrontendAclMatchResult(dict):
1761
1804
 
1762
1805
  @property
1763
1806
  @pulumi.getter(name="httpFilterOption")
1764
- def http_filter_option(self) -> str:
1807
+ def http_filter_option(self) -> builtins.str:
1765
1808
  """
1766
1809
  You can use this field with http_header_match acl type to set the header name to filter
1767
1810
  """
@@ -1769,7 +1812,7 @@ class GetFrontendAclMatchResult(dict):
1769
1812
 
1770
1813
  @property
1771
1814
  @pulumi.getter(name="httpFilterValues")
1772
- def http_filter_values(self) -> Sequence[str]:
1815
+ def http_filter_values(self) -> Sequence[builtins.str]:
1773
1816
  """
1774
1817
  A list of possible values to match for the given HTTP filter
1775
1818
  """
@@ -1777,7 +1820,7 @@ class GetFrontendAclMatchResult(dict):
1777
1820
 
1778
1821
  @property
1779
1822
  @pulumi.getter
1780
- def invert(self) -> bool:
1823
+ def invert(self) -> builtins.bool:
1781
1824
  """
1782
1825
  If set to true, the condition will be of type "unless"
1783
1826
  """
@@ -1785,39 +1828,47 @@ class GetFrontendAclMatchResult(dict):
1785
1828
 
1786
1829
  @property
1787
1830
  @pulumi.getter(name="ipSubnets")
1788
- def ip_subnets(self) -> Sequence[str]:
1831
+ def ip_subnets(self) -> Sequence[builtins.str]:
1789
1832
  """
1790
1833
  A list of IPs or CIDR v4/v6 addresses of the client of the session to match
1791
1834
  """
1792
1835
  return pulumi.get(self, "ip_subnets")
1793
1836
 
1837
+ @property
1838
+ @pulumi.getter(name="ipsEdgeServices")
1839
+ def ips_edge_services(self) -> builtins.bool:
1840
+ """
1841
+ Defines whether Edge Services IPs should be matched
1842
+ """
1843
+ return pulumi.get(self, "ips_edge_services")
1844
+
1794
1845
 
1795
1846
  @pulumi.output_type
1796
1847
  class GetFrontendsFrontendResult(dict):
1797
1848
  def __init__(__self__, *,
1798
- backend_id: str,
1799
- certificate_ids: Sequence[str],
1800
- created_at: str,
1801
- enable_http3: bool,
1802
- id: str,
1803
- inbound_port: int,
1804
- lb_id: str,
1805
- name: str,
1806
- timeout_client: str,
1807
- update_at: str):
1808
- """
1809
- :param str backend_id: The Load Balancer backend ID this frontend is attached to.
1849
+ backend_id: builtins.str,
1850
+ certificate_ids: Sequence[builtins.str],
1851
+ created_at: builtins.str,
1852
+ enable_http3: builtins.bool,
1853
+ id: builtins.str,
1854
+ inbound_port: builtins.int,
1855
+ lb_id: builtins.str,
1856
+ name: builtins.str,
1857
+ timeout_client: builtins.str,
1858
+ update_at: builtins.str):
1859
+ """
1860
+ :param builtins.str backend_id: The Load Balancer backend ID this frontend is attached to.
1810
1861
  > **Important:** Load Balancer backend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
1811
- :param Sequence[str] certificate_ids: List of certificate IDs that are used by the frontend.
1812
- :param str created_at: The date on which the frontend was created (RFC 3339 format).
1813
- :param bool enable_http3: Whether HTTP/3 protocol is activated.
1814
- :param str id: The ID of the associated frontend.
1862
+ :param Sequence[builtins.str] certificate_ids: List of certificate IDs that are used by the frontend.
1863
+ :param builtins.str created_at: The date on which the frontend was created (RFC 3339 format).
1864
+ :param builtins.bool enable_http3: Whether HTTP/3 protocol is activated.
1865
+ :param builtins.str id: The ID of the associated frontend.
1815
1866
  > **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
1816
- :param int inbound_port: TCP port the frontend listens to.
1817
- :param str lb_id: The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
1818
- :param str name: The frontend name to filter for. Frontends with a matching name are listed.
1819
- :param str timeout_client: Maximum inactivity time on the client side.
1820
- :param str update_at: The date aont which the frontend was last updated (RFC 3339 format).
1867
+ :param builtins.int inbound_port: TCP port the frontend listens to.
1868
+ :param builtins.str lb_id: The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
1869
+ :param builtins.str name: The frontend name to filter for. Frontends with a matching name are listed.
1870
+ :param builtins.str timeout_client: Maximum inactivity time on the client side.
1871
+ :param builtins.str update_at: The date aont which the frontend was last updated (RFC 3339 format).
1821
1872
  """
1822
1873
  pulumi.set(__self__, "backend_id", backend_id)
1823
1874
  pulumi.set(__self__, "certificate_ids", certificate_ids)
@@ -1832,7 +1883,7 @@ class GetFrontendsFrontendResult(dict):
1832
1883
 
1833
1884
  @property
1834
1885
  @pulumi.getter(name="backendId")
1835
- def backend_id(self) -> str:
1886
+ def backend_id(self) -> builtins.str:
1836
1887
  """
1837
1888
  The Load Balancer backend ID this frontend is attached to.
1838
1889
  > **Important:** Load Balancer backend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
@@ -1841,7 +1892,7 @@ class GetFrontendsFrontendResult(dict):
1841
1892
 
1842
1893
  @property
1843
1894
  @pulumi.getter(name="certificateIds")
1844
- def certificate_ids(self) -> Sequence[str]:
1895
+ def certificate_ids(self) -> Sequence[builtins.str]:
1845
1896
  """
1846
1897
  List of certificate IDs that are used by the frontend.
1847
1898
  """
@@ -1849,7 +1900,7 @@ class GetFrontendsFrontendResult(dict):
1849
1900
 
1850
1901
  @property
1851
1902
  @pulumi.getter(name="createdAt")
1852
- def created_at(self) -> str:
1903
+ def created_at(self) -> builtins.str:
1853
1904
  """
1854
1905
  The date on which the frontend was created (RFC 3339 format).
1855
1906
  """
@@ -1857,7 +1908,7 @@ class GetFrontendsFrontendResult(dict):
1857
1908
 
1858
1909
  @property
1859
1910
  @pulumi.getter(name="enableHttp3")
1860
- def enable_http3(self) -> bool:
1911
+ def enable_http3(self) -> builtins.bool:
1861
1912
  """
1862
1913
  Whether HTTP/3 protocol is activated.
1863
1914
  """
@@ -1865,7 +1916,7 @@ class GetFrontendsFrontendResult(dict):
1865
1916
 
1866
1917
  @property
1867
1918
  @pulumi.getter
1868
- def id(self) -> str:
1919
+ def id(self) -> builtins.str:
1869
1920
  """
1870
1921
  The ID of the associated frontend.
1871
1922
  > **Important:** LB frontend IDs are zoned, which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111`
@@ -1874,7 +1925,7 @@ class GetFrontendsFrontendResult(dict):
1874
1925
 
1875
1926
  @property
1876
1927
  @pulumi.getter(name="inboundPort")
1877
- def inbound_port(self) -> int:
1928
+ def inbound_port(self) -> builtins.int:
1878
1929
  """
1879
1930
  TCP port the frontend listens to.
1880
1931
  """
@@ -1882,7 +1933,7 @@ class GetFrontendsFrontendResult(dict):
1882
1933
 
1883
1934
  @property
1884
1935
  @pulumi.getter(name="lbId")
1885
- def lb_id(self) -> str:
1936
+ def lb_id(self) -> builtins.str:
1886
1937
  """
1887
1938
  The Load Balancer ID this frontend is attached to. Frontends with a matching ID are listed.
1888
1939
  """
@@ -1890,7 +1941,7 @@ class GetFrontendsFrontendResult(dict):
1890
1941
 
1891
1942
  @property
1892
1943
  @pulumi.getter
1893
- def name(self) -> str:
1944
+ def name(self) -> builtins.str:
1894
1945
  """
1895
1946
  The frontend name to filter for. Frontends with a matching name are listed.
1896
1947
  """
@@ -1898,7 +1949,7 @@ class GetFrontendsFrontendResult(dict):
1898
1949
 
1899
1950
  @property
1900
1951
  @pulumi.getter(name="timeoutClient")
1901
- def timeout_client(self) -> str:
1952
+ def timeout_client(self) -> builtins.str:
1902
1953
  """
1903
1954
  Maximum inactivity time on the client side.
1904
1955
  """
@@ -1906,7 +1957,7 @@ class GetFrontendsFrontendResult(dict):
1906
1957
 
1907
1958
  @property
1908
1959
  @pulumi.getter(name="updateAt")
1909
- def update_at(self) -> str:
1960
+ def update_at(self) -> builtins.str:
1910
1961
  """
1911
1962
  The date aont which the frontend was last updated (RFC 3339 format).
1912
1963
  """
@@ -1916,23 +1967,23 @@ class GetFrontendsFrontendResult(dict):
1916
1967
  @pulumi.output_type
1917
1968
  class GetIpsIpResult(dict):
1918
1969
  def __init__(__self__, *,
1919
- id: str,
1920
- ip_address: str,
1921
- lb_id: str,
1922
- organization_id: str,
1923
- project_id: str,
1924
- reverse: str,
1925
- tags: Sequence[str],
1926
- zone: str):
1927
- """
1928
- :param str id: The ID of the associated IP.
1929
- :param str ip_address: The IP address
1930
- :param str lb_id: The ID of the associated Load BalancerD, if any
1931
- :param str organization_id: The ID of the Organization the Load Balancer is associated with.
1932
- :param str project_id: The ID of the Project the Load Balancer is associated with.
1933
- :param str reverse: The reverse domain associated with this IP.
1934
- :param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
1935
- :param str zone: `zone`) The zone in which the IPs exist.
1970
+ id: builtins.str,
1971
+ ip_address: builtins.str,
1972
+ lb_id: builtins.str,
1973
+ organization_id: builtins.str,
1974
+ project_id: builtins.str,
1975
+ reverse: builtins.str,
1976
+ tags: Sequence[builtins.str],
1977
+ zone: builtins.str):
1978
+ """
1979
+ :param builtins.str id: The ID of the associated IP.
1980
+ :param builtins.str ip_address: The IP address
1981
+ :param builtins.str lb_id: The ID of the associated Load BalancerD, if any
1982
+ :param builtins.str organization_id: The ID of the Organization the Load Balancer is associated with.
1983
+ :param builtins.str project_id: The ID of the Project the Load Balancer is associated with.
1984
+ :param builtins.str reverse: The reverse domain associated with this IP.
1985
+ :param Sequence[builtins.str] tags: List of tags used as filter. IPs with these exact tags are listed.
1986
+ :param builtins.str zone: `zone`) The zone in which the IPs exist.
1936
1987
  """
1937
1988
  pulumi.set(__self__, "id", id)
1938
1989
  pulumi.set(__self__, "ip_address", ip_address)
@@ -1945,7 +1996,7 @@ class GetIpsIpResult(dict):
1945
1996
 
1946
1997
  @property
1947
1998
  @pulumi.getter
1948
- def id(self) -> str:
1999
+ def id(self) -> builtins.str:
1949
2000
  """
1950
2001
  The ID of the associated IP.
1951
2002
  """
@@ -1953,7 +2004,7 @@ class GetIpsIpResult(dict):
1953
2004
 
1954
2005
  @property
1955
2006
  @pulumi.getter(name="ipAddress")
1956
- def ip_address(self) -> str:
2007
+ def ip_address(self) -> builtins.str:
1957
2008
  """
1958
2009
  The IP address
1959
2010
  """
@@ -1961,7 +2012,7 @@ class GetIpsIpResult(dict):
1961
2012
 
1962
2013
  @property
1963
2014
  @pulumi.getter(name="lbId")
1964
- def lb_id(self) -> str:
2015
+ def lb_id(self) -> builtins.str:
1965
2016
  """
1966
2017
  The ID of the associated Load BalancerD, if any
1967
2018
  """
@@ -1969,7 +2020,7 @@ class GetIpsIpResult(dict):
1969
2020
 
1970
2021
  @property
1971
2022
  @pulumi.getter(name="organizationId")
1972
- def organization_id(self) -> str:
2023
+ def organization_id(self) -> builtins.str:
1973
2024
  """
1974
2025
  The ID of the Organization the Load Balancer is associated with.
1975
2026
  """
@@ -1977,7 +2028,7 @@ class GetIpsIpResult(dict):
1977
2028
 
1978
2029
  @property
1979
2030
  @pulumi.getter(name="projectId")
1980
- def project_id(self) -> str:
2031
+ def project_id(self) -> builtins.str:
1981
2032
  """
1982
2033
  The ID of the Project the Load Balancer is associated with.
1983
2034
  """
@@ -1985,7 +2036,7 @@ class GetIpsIpResult(dict):
1985
2036
 
1986
2037
  @property
1987
2038
  @pulumi.getter
1988
- def reverse(self) -> str:
2039
+ def reverse(self) -> builtins.str:
1989
2040
  """
1990
2041
  The reverse domain associated with this IP.
1991
2042
  """
@@ -1993,7 +2044,7 @@ class GetIpsIpResult(dict):
1993
2044
 
1994
2045
  @property
1995
2046
  @pulumi.getter
1996
- def tags(self) -> Sequence[str]:
2047
+ def tags(self) -> Sequence[builtins.str]:
1997
2048
  """
1998
2049
  List of tags used as filter. IPs with these exact tags are listed.
1999
2050
  """
@@ -2001,7 +2052,7 @@ class GetIpsIpResult(dict):
2001
2052
 
2002
2053
  @property
2003
2054
  @pulumi.getter
2004
- def zone(self) -> str:
2055
+ def zone(self) -> builtins.str:
2005
2056
  """
2006
2057
  `zone`) The zone in which the IPs exist.
2007
2058
  """
@@ -2011,18 +2062,18 @@ class GetIpsIpResult(dict):
2011
2062
  @pulumi.output_type
2012
2063
  class GetLoadBalancerPrivateIpResult(dict):
2013
2064
  def __init__(__self__, *,
2014
- address: str,
2015
- id: str):
2065
+ address: builtins.str,
2066
+ id: builtins.str):
2016
2067
  """
2017
- :param str address: The private IP address
2018
- :param str id: The ID of the Load Balancer.
2068
+ :param builtins.str address: The private IP address
2069
+ :param builtins.str id: The ID of the Load Balancer.
2019
2070
  """
2020
2071
  pulumi.set(__self__, "address", address)
2021
2072
  pulumi.set(__self__, "id", id)
2022
2073
 
2023
2074
  @property
2024
2075
  @pulumi.getter
2025
- def address(self) -> str:
2076
+ def address(self) -> builtins.str:
2026
2077
  """
2027
2078
  The private IP address
2028
2079
  """
@@ -2030,7 +2081,7 @@ class GetLoadBalancerPrivateIpResult(dict):
2030
2081
 
2031
2082
  @property
2032
2083
  @pulumi.getter
2033
- def id(self) -> str:
2084
+ def id(self) -> builtins.str:
2034
2085
  """
2035
2086
  The ID of the Load Balancer.
2036
2087
  """
@@ -2040,19 +2091,19 @@ class GetLoadBalancerPrivateIpResult(dict):
2040
2091
  @pulumi.output_type
2041
2092
  class GetLoadBalancerPrivateNetworkResult(dict):
2042
2093
  def __init__(__self__, *,
2043
- dhcp_config: bool,
2044
- ipam_ids: Sequence[str],
2045
- private_network_id: str,
2046
- static_configs: Sequence[str],
2047
- status: str,
2048
- zone: str):
2049
- """
2050
- :param bool dhcp_config: Set to true if you want to let DHCP assign IP addresses
2051
- :param Sequence[str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network
2052
- :param str private_network_id: The Private Network ID
2053
- :param Sequence[str] static_configs: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
2054
- :param str status: The status of private network connection
2055
- :param str zone: (Defaults to provider `zone`) The zone in which the Load Balancer exists.
2094
+ dhcp_config: builtins.bool,
2095
+ ipam_ids: Sequence[builtins.str],
2096
+ private_network_id: builtins.str,
2097
+ static_configs: Sequence[builtins.str],
2098
+ status: builtins.str,
2099
+ zone: builtins.str):
2100
+ """
2101
+ :param builtins.bool dhcp_config: Set to true if you want to let DHCP assign IP addresses
2102
+ :param Sequence[builtins.str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network
2103
+ :param builtins.str private_network_id: The Private Network ID
2104
+ :param Sequence[builtins.str] static_configs: Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
2105
+ :param builtins.str status: The status of private network connection
2106
+ :param builtins.str zone: (Defaults to provider `zone`) The zone in which the Load Balancer exists.
2056
2107
  """
2057
2108
  pulumi.set(__self__, "dhcp_config", dhcp_config)
2058
2109
  pulumi.set(__self__, "ipam_ids", ipam_ids)
@@ -2063,7 +2114,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2063
2114
 
2064
2115
  @property
2065
2116
  @pulumi.getter(name="dhcpConfig")
2066
- def dhcp_config(self) -> bool:
2117
+ def dhcp_config(self) -> builtins.bool:
2067
2118
  """
2068
2119
  Set to true if you want to let DHCP assign IP addresses
2069
2120
  """
@@ -2071,7 +2122,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2071
2122
 
2072
2123
  @property
2073
2124
  @pulumi.getter(name="ipamIds")
2074
- def ipam_ids(self) -> Sequence[str]:
2125
+ def ipam_ids(self) -> Sequence[builtins.str]:
2075
2126
  """
2076
2127
  IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network
2077
2128
  """
@@ -2079,7 +2130,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2079
2130
 
2080
2131
  @property
2081
2132
  @pulumi.getter(name="privateNetworkId")
2082
- def private_network_id(self) -> str:
2133
+ def private_network_id(self) -> builtins.str:
2083
2134
  """
2084
2135
  The Private Network ID
2085
2136
  """
@@ -2087,7 +2138,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2087
2138
 
2088
2139
  @property
2089
2140
  @pulumi.getter(name="staticConfigs")
2090
- def static_configs(self) -> Sequence[str]:
2141
+ def static_configs(self) -> Sequence[builtins.str]:
2091
2142
  """
2092
2143
  Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
2093
2144
  """
@@ -2095,7 +2146,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2095
2146
 
2096
2147
  @property
2097
2148
  @pulumi.getter
2098
- def status(self) -> str:
2149
+ def status(self) -> builtins.str:
2099
2150
  """
2100
2151
  The status of private network connection
2101
2152
  """
@@ -2103,7 +2154,7 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2103
2154
 
2104
2155
  @property
2105
2156
  @pulumi.getter
2106
- def zone(self) -> str:
2157
+ def zone(self) -> builtins.str:
2107
2158
  """
2108
2159
  (Defaults to provider `zone`) The zone in which the Load Balancer exists.
2109
2160
  """
@@ -2113,45 +2164,45 @@ class GetLoadBalancerPrivateNetworkResult(dict):
2113
2164
  @pulumi.output_type
2114
2165
  class GetLoadBalancersLbResult(dict):
2115
2166
  def __init__(__self__, *,
2116
- backend_count: int,
2117
- created_at: str,
2118
- description: str,
2119
- frontend_count: int,
2120
- id: str,
2167
+ backend_count: builtins.int,
2168
+ created_at: builtins.str,
2169
+ description: builtins.str,
2170
+ frontend_count: builtins.int,
2171
+ id: builtins.str,
2121
2172
  instances: Sequence['outputs.GetLoadBalancersLbInstanceResult'],
2122
2173
  ips: Sequence['outputs.GetLoadBalancersLbIpResult'],
2123
- name: str,
2124
- organization_id: str,
2125
- private_network_count: int,
2126
- project_id: str,
2127
- route_count: int,
2128
- ssl_compatibility_level: str,
2129
- status: str,
2130
- subscriber: str,
2131
- tags: Sequence[str],
2132
- type: str,
2133
- updated_at: str,
2134
- zone: str):
2135
- """
2136
- :param int backend_count: Number of backends the Load Balancer has.
2137
- :param str created_at: Date on which the Load Balancer was created.
2138
- :param str description: The description of the Load Balancer.
2139
- :param int frontend_count: Number of frontends the Load Balancer has.
2140
- :param str id: The ID of the Load Balancer.
2174
+ name: builtins.str,
2175
+ organization_id: builtins.str,
2176
+ private_network_count: builtins.int,
2177
+ project_id: builtins.str,
2178
+ route_count: builtins.int,
2179
+ ssl_compatibility_level: builtins.str,
2180
+ status: builtins.str,
2181
+ subscriber: builtins.str,
2182
+ tags: Sequence[builtins.str],
2183
+ type: builtins.str,
2184
+ updated_at: builtins.str,
2185
+ zone: builtins.str):
2186
+ """
2187
+ :param builtins.int backend_count: Number of backends the Load Balancer has.
2188
+ :param builtins.str created_at: Date on which the Load Balancer was created.
2189
+ :param builtins.str description: The description of the Load Balancer.
2190
+ :param builtins.int frontend_count: Number of frontends the Load Balancer has.
2191
+ :param builtins.str id: The ID of the Load Balancer.
2141
2192
  :param Sequence['GetLoadBalancersLbInstanceArgs'] instances: List of underlying Instances.
2142
2193
  :param Sequence['GetLoadBalancersLbIpArgs'] ips: List of IPs attached to the Load Balancer.
2143
- :param str name: The Load Balancer name to filter for. Load Balancers with a matching name are listed.
2144
- :param str organization_id: The ID of the Organization the Load Balancer is associated with.
2145
- :param int private_network_count: Number of Private Networks attached to the Load balancer.
2146
- :param str project_id: The ID of the Project the Load Balancer is associated with.
2147
- :param int route_count: Number of routes the Load balancer has.
2148
- :param str ssl_compatibility_level: Determines the minimal SSL version which needs to be supported on the client side.
2149
- :param str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2150
- :param str subscriber: The subscriber information.
2151
- :param Sequence[str] tags: List of tags to filter for. Load Balancers with these exact tags are listed.
2152
- :param str type: The offer type of the Load Balancer.
2153
- :param str updated_at: Date on which the Load Balancer was updated.
2154
- :param str zone: `zone`) The zone in which the Load Balancers exist.
2194
+ :param builtins.str name: The Load Balancer name to filter for. Load Balancers with a matching name are listed.
2195
+ :param builtins.str organization_id: The ID of the Organization the Load Balancer is associated with.
2196
+ :param builtins.int private_network_count: Number of Private Networks attached to the Load balancer.
2197
+ :param builtins.str project_id: The ID of the Project the Load Balancer is associated with.
2198
+ :param builtins.int route_count: Number of routes the Load balancer has.
2199
+ :param builtins.str ssl_compatibility_level: Determines the minimal SSL version which needs to be supported on the client side.
2200
+ :param builtins.str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2201
+ :param builtins.str subscriber: The subscriber information.
2202
+ :param Sequence[builtins.str] tags: List of tags to filter for. Load Balancers with these exact tags are listed.
2203
+ :param builtins.str type: The offer type of the Load Balancer.
2204
+ :param builtins.str updated_at: Date on which the Load Balancer was updated.
2205
+ :param builtins.str zone: `zone`) The zone in which the Load Balancers exist.
2155
2206
  """
2156
2207
  pulumi.set(__self__, "backend_count", backend_count)
2157
2208
  pulumi.set(__self__, "created_at", created_at)
@@ -2175,7 +2226,7 @@ class GetLoadBalancersLbResult(dict):
2175
2226
 
2176
2227
  @property
2177
2228
  @pulumi.getter(name="backendCount")
2178
- def backend_count(self) -> int:
2229
+ def backend_count(self) -> builtins.int:
2179
2230
  """
2180
2231
  Number of backends the Load Balancer has.
2181
2232
  """
@@ -2183,7 +2234,7 @@ class GetLoadBalancersLbResult(dict):
2183
2234
 
2184
2235
  @property
2185
2236
  @pulumi.getter(name="createdAt")
2186
- def created_at(self) -> str:
2237
+ def created_at(self) -> builtins.str:
2187
2238
  """
2188
2239
  Date on which the Load Balancer was created.
2189
2240
  """
@@ -2191,7 +2242,7 @@ class GetLoadBalancersLbResult(dict):
2191
2242
 
2192
2243
  @property
2193
2244
  @pulumi.getter
2194
- def description(self) -> str:
2245
+ def description(self) -> builtins.str:
2195
2246
  """
2196
2247
  The description of the Load Balancer.
2197
2248
  """
@@ -2199,7 +2250,7 @@ class GetLoadBalancersLbResult(dict):
2199
2250
 
2200
2251
  @property
2201
2252
  @pulumi.getter(name="frontendCount")
2202
- def frontend_count(self) -> int:
2253
+ def frontend_count(self) -> builtins.int:
2203
2254
  """
2204
2255
  Number of frontends the Load Balancer has.
2205
2256
  """
@@ -2207,7 +2258,7 @@ class GetLoadBalancersLbResult(dict):
2207
2258
 
2208
2259
  @property
2209
2260
  @pulumi.getter
2210
- def id(self) -> str:
2261
+ def id(self) -> builtins.str:
2211
2262
  """
2212
2263
  The ID of the Load Balancer.
2213
2264
  """
@@ -2231,7 +2282,7 @@ class GetLoadBalancersLbResult(dict):
2231
2282
 
2232
2283
  @property
2233
2284
  @pulumi.getter
2234
- def name(self) -> str:
2285
+ def name(self) -> builtins.str:
2235
2286
  """
2236
2287
  The Load Balancer name to filter for. Load Balancers with a matching name are listed.
2237
2288
  """
@@ -2239,7 +2290,7 @@ class GetLoadBalancersLbResult(dict):
2239
2290
 
2240
2291
  @property
2241
2292
  @pulumi.getter(name="organizationId")
2242
- def organization_id(self) -> str:
2293
+ def organization_id(self) -> builtins.str:
2243
2294
  """
2244
2295
  The ID of the Organization the Load Balancer is associated with.
2245
2296
  """
@@ -2247,7 +2298,7 @@ class GetLoadBalancersLbResult(dict):
2247
2298
 
2248
2299
  @property
2249
2300
  @pulumi.getter(name="privateNetworkCount")
2250
- def private_network_count(self) -> int:
2301
+ def private_network_count(self) -> builtins.int:
2251
2302
  """
2252
2303
  Number of Private Networks attached to the Load balancer.
2253
2304
  """
@@ -2255,7 +2306,7 @@ class GetLoadBalancersLbResult(dict):
2255
2306
 
2256
2307
  @property
2257
2308
  @pulumi.getter(name="projectId")
2258
- def project_id(self) -> str:
2309
+ def project_id(self) -> builtins.str:
2259
2310
  """
2260
2311
  The ID of the Project the Load Balancer is associated with.
2261
2312
  """
@@ -2263,7 +2314,7 @@ class GetLoadBalancersLbResult(dict):
2263
2314
 
2264
2315
  @property
2265
2316
  @pulumi.getter(name="routeCount")
2266
- def route_count(self) -> int:
2317
+ def route_count(self) -> builtins.int:
2267
2318
  """
2268
2319
  Number of routes the Load balancer has.
2269
2320
  """
@@ -2271,7 +2322,7 @@ class GetLoadBalancersLbResult(dict):
2271
2322
 
2272
2323
  @property
2273
2324
  @pulumi.getter(name="sslCompatibilityLevel")
2274
- def ssl_compatibility_level(self) -> str:
2325
+ def ssl_compatibility_level(self) -> builtins.str:
2275
2326
  """
2276
2327
  Determines the minimal SSL version which needs to be supported on the client side.
2277
2328
  """
@@ -2279,7 +2330,7 @@ class GetLoadBalancersLbResult(dict):
2279
2330
 
2280
2331
  @property
2281
2332
  @pulumi.getter
2282
- def status(self) -> str:
2333
+ def status(self) -> builtins.str:
2283
2334
  """
2284
2335
  The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2285
2336
  """
@@ -2287,7 +2338,7 @@ class GetLoadBalancersLbResult(dict):
2287
2338
 
2288
2339
  @property
2289
2340
  @pulumi.getter
2290
- def subscriber(self) -> str:
2341
+ def subscriber(self) -> builtins.str:
2291
2342
  """
2292
2343
  The subscriber information.
2293
2344
  """
@@ -2295,7 +2346,7 @@ class GetLoadBalancersLbResult(dict):
2295
2346
 
2296
2347
  @property
2297
2348
  @pulumi.getter
2298
- def tags(self) -> Sequence[str]:
2349
+ def tags(self) -> Sequence[builtins.str]:
2299
2350
  """
2300
2351
  List of tags to filter for. Load Balancers with these exact tags are listed.
2301
2352
  """
@@ -2303,7 +2354,7 @@ class GetLoadBalancersLbResult(dict):
2303
2354
 
2304
2355
  @property
2305
2356
  @pulumi.getter
2306
- def type(self) -> str:
2357
+ def type(self) -> builtins.str:
2307
2358
  """
2308
2359
  The offer type of the Load Balancer.
2309
2360
  """
@@ -2311,7 +2362,7 @@ class GetLoadBalancersLbResult(dict):
2311
2362
 
2312
2363
  @property
2313
2364
  @pulumi.getter(name="updatedAt")
2314
- def updated_at(self) -> str:
2365
+ def updated_at(self) -> builtins.str:
2315
2366
  """
2316
2367
  Date on which the Load Balancer was updated.
2317
2368
  """
@@ -2319,7 +2370,7 @@ class GetLoadBalancersLbResult(dict):
2319
2370
 
2320
2371
  @property
2321
2372
  @pulumi.getter
2322
- def zone(self) -> str:
2373
+ def zone(self) -> builtins.str:
2323
2374
  """
2324
2375
  `zone`) The zone in which the Load Balancers exist.
2325
2376
  """
@@ -2329,18 +2380,18 @@ class GetLoadBalancersLbResult(dict):
2329
2380
  @pulumi.output_type
2330
2381
  class GetLoadBalancersLbInstanceResult(dict):
2331
2382
  def __init__(__self__, *,
2332
- created_at: str,
2333
- id: str,
2334
- ip_address: str,
2335
- status: str,
2336
- updated_at: str,
2337
- zone: str):
2338
- """
2339
- :param str created_at: Date on which the Load Balancer was created.
2340
- :param str id: The ID of the Load Balancer.
2341
- :param str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2342
- :param str updated_at: Date on which the Load Balancer was updated.
2343
- :param str zone: `zone`) The zone in which the Load Balancers exist.
2383
+ created_at: builtins.str,
2384
+ id: builtins.str,
2385
+ ip_address: builtins.str,
2386
+ status: builtins.str,
2387
+ updated_at: builtins.str,
2388
+ zone: builtins.str):
2389
+ """
2390
+ :param builtins.str created_at: Date on which the Load Balancer was created.
2391
+ :param builtins.str id: The ID of the Load Balancer.
2392
+ :param builtins.str status: The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2393
+ :param builtins.str updated_at: Date on which the Load Balancer was updated.
2394
+ :param builtins.str zone: `zone`) The zone in which the Load Balancers exist.
2344
2395
  """
2345
2396
  pulumi.set(__self__, "created_at", created_at)
2346
2397
  pulumi.set(__self__, "id", id)
@@ -2351,7 +2402,7 @@ class GetLoadBalancersLbInstanceResult(dict):
2351
2402
 
2352
2403
  @property
2353
2404
  @pulumi.getter(name="createdAt")
2354
- def created_at(self) -> str:
2405
+ def created_at(self) -> builtins.str:
2355
2406
  """
2356
2407
  Date on which the Load Balancer was created.
2357
2408
  """
@@ -2359,7 +2410,7 @@ class GetLoadBalancersLbInstanceResult(dict):
2359
2410
 
2360
2411
  @property
2361
2412
  @pulumi.getter
2362
- def id(self) -> str:
2413
+ def id(self) -> builtins.str:
2363
2414
  """
2364
2415
  The ID of the Load Balancer.
2365
2416
  """
@@ -2367,12 +2418,12 @@ class GetLoadBalancersLbInstanceResult(dict):
2367
2418
 
2368
2419
  @property
2369
2420
  @pulumi.getter(name="ipAddress")
2370
- def ip_address(self) -> str:
2421
+ def ip_address(self) -> builtins.str:
2371
2422
  return pulumi.get(self, "ip_address")
2372
2423
 
2373
2424
  @property
2374
2425
  @pulumi.getter
2375
- def status(self) -> str:
2426
+ def status(self) -> builtins.str:
2376
2427
  """
2377
2428
  The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
2378
2429
  """
@@ -2380,7 +2431,7 @@ class GetLoadBalancersLbInstanceResult(dict):
2380
2431
 
2381
2432
  @property
2382
2433
  @pulumi.getter(name="updatedAt")
2383
- def updated_at(self) -> str:
2434
+ def updated_at(self) -> builtins.str:
2384
2435
  """
2385
2436
  Date on which the Load Balancer was updated.
2386
2437
  """
@@ -2388,7 +2439,7 @@ class GetLoadBalancersLbInstanceResult(dict):
2388
2439
 
2389
2440
  @property
2390
2441
  @pulumi.getter
2391
- def zone(self) -> str:
2442
+ def zone(self) -> builtins.str:
2392
2443
  """
2393
2444
  `zone`) The zone in which the Load Balancers exist.
2394
2445
  """
@@ -2398,18 +2449,18 @@ class GetLoadBalancersLbInstanceResult(dict):
2398
2449
  @pulumi.output_type
2399
2450
  class GetLoadBalancersLbIpResult(dict):
2400
2451
  def __init__(__self__, *,
2401
- id: str,
2402
- ip_address: str,
2403
- lb_id: str,
2404
- organization_id: str,
2405
- project_id: str,
2406
- reverse: str,
2407
- zone: str):
2408
- """
2409
- :param str id: The ID of the Load Balancer.
2410
- :param str organization_id: The ID of the Organization the Load Balancer is associated with.
2411
- :param str project_id: The ID of the Project the Load Balancer is associated with.
2412
- :param str zone: `zone`) The zone in which the Load Balancers exist.
2452
+ id: builtins.str,
2453
+ ip_address: builtins.str,
2454
+ lb_id: builtins.str,
2455
+ organization_id: builtins.str,
2456
+ project_id: builtins.str,
2457
+ reverse: builtins.str,
2458
+ zone: builtins.str):
2459
+ """
2460
+ :param builtins.str id: The ID of the Load Balancer.
2461
+ :param builtins.str organization_id: The ID of the Organization the Load Balancer is associated with.
2462
+ :param builtins.str project_id: The ID of the Project the Load Balancer is associated with.
2463
+ :param builtins.str zone: `zone`) The zone in which the Load Balancers exist.
2413
2464
  """
2414
2465
  pulumi.set(__self__, "id", id)
2415
2466
  pulumi.set(__self__, "ip_address", ip_address)
@@ -2421,7 +2472,7 @@ class GetLoadBalancersLbIpResult(dict):
2421
2472
 
2422
2473
  @property
2423
2474
  @pulumi.getter
2424
- def id(self) -> str:
2475
+ def id(self) -> builtins.str:
2425
2476
  """
2426
2477
  The ID of the Load Balancer.
2427
2478
  """
@@ -2429,17 +2480,17 @@ class GetLoadBalancersLbIpResult(dict):
2429
2480
 
2430
2481
  @property
2431
2482
  @pulumi.getter(name="ipAddress")
2432
- def ip_address(self) -> str:
2483
+ def ip_address(self) -> builtins.str:
2433
2484
  return pulumi.get(self, "ip_address")
2434
2485
 
2435
2486
  @property
2436
2487
  @pulumi.getter(name="lbId")
2437
- def lb_id(self) -> str:
2488
+ def lb_id(self) -> builtins.str:
2438
2489
  return pulumi.get(self, "lb_id")
2439
2490
 
2440
2491
  @property
2441
2492
  @pulumi.getter(name="organizationId")
2442
- def organization_id(self) -> str:
2493
+ def organization_id(self) -> builtins.str:
2443
2494
  """
2444
2495
  The ID of the Organization the Load Balancer is associated with.
2445
2496
  """
@@ -2447,7 +2498,7 @@ class GetLoadBalancersLbIpResult(dict):
2447
2498
 
2448
2499
  @property
2449
2500
  @pulumi.getter(name="projectId")
2450
- def project_id(self) -> str:
2501
+ def project_id(self) -> builtins.str:
2451
2502
  """
2452
2503
  The ID of the Project the Load Balancer is associated with.
2453
2504
  """
@@ -2455,12 +2506,12 @@ class GetLoadBalancersLbIpResult(dict):
2455
2506
 
2456
2507
  @property
2457
2508
  @pulumi.getter
2458
- def reverse(self) -> str:
2509
+ def reverse(self) -> builtins.str:
2459
2510
  return pulumi.get(self, "reverse")
2460
2511
 
2461
2512
  @property
2462
2513
  @pulumi.getter
2463
- def zone(self) -> str:
2514
+ def zone(self) -> builtins.str:
2464
2515
  """
2465
2516
  `zone`) The zone in which the Load Balancers exist.
2466
2517
  """
@@ -2470,23 +2521,23 @@ class GetLoadBalancersLbIpResult(dict):
2470
2521
  @pulumi.output_type
2471
2522
  class GetRoutesRouteResult(dict):
2472
2523
  def __init__(__self__, *,
2473
- backend_id: str,
2474
- created_at: str,
2475
- frontend_id: str,
2476
- id: str,
2477
- match_host_header: str,
2478
- match_sni: str,
2479
- match_subdomains: bool,
2480
- update_at: str):
2481
- """
2482
- :param str backend_id: The backend ID to redirect to
2483
- :param str created_at: The date on which the route was created (RFC 3339 format).
2484
- :param str frontend_id: The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
2485
- :param str id: The associated route ID.
2486
- :param str match_host_header: Specifies the host of the server to which the request is being sent.
2487
- :param str match_sni: Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
2488
- :param bool match_subdomains: If true, all subdomains will match.
2489
- :param str update_at: The date on which the route was last updated (RFC 3339 format).
2524
+ backend_id: builtins.str,
2525
+ created_at: builtins.str,
2526
+ frontend_id: builtins.str,
2527
+ id: builtins.str,
2528
+ match_host_header: builtins.str,
2529
+ match_sni: builtins.str,
2530
+ match_subdomains: builtins.bool,
2531
+ update_at: builtins.str):
2532
+ """
2533
+ :param builtins.str backend_id: The backend ID to redirect to
2534
+ :param builtins.str created_at: The date on which the route was created (RFC 3339 format).
2535
+ :param builtins.str frontend_id: The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
2536
+ :param builtins.str id: The associated route ID.
2537
+ :param builtins.str match_host_header: Specifies the host of the server to which the request is being sent.
2538
+ :param builtins.str match_sni: Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
2539
+ :param builtins.bool match_subdomains: If true, all subdomains will match.
2540
+ :param builtins.str update_at: The date on which the route was last updated (RFC 3339 format).
2490
2541
  """
2491
2542
  pulumi.set(__self__, "backend_id", backend_id)
2492
2543
  pulumi.set(__self__, "created_at", created_at)
@@ -2499,7 +2550,7 @@ class GetRoutesRouteResult(dict):
2499
2550
 
2500
2551
  @property
2501
2552
  @pulumi.getter(name="backendId")
2502
- def backend_id(self) -> str:
2553
+ def backend_id(self) -> builtins.str:
2503
2554
  """
2504
2555
  The backend ID to redirect to
2505
2556
  """
@@ -2507,7 +2558,7 @@ class GetRoutesRouteResult(dict):
2507
2558
 
2508
2559
  @property
2509
2560
  @pulumi.getter(name="createdAt")
2510
- def created_at(self) -> str:
2561
+ def created_at(self) -> builtins.str:
2511
2562
  """
2512
2563
  The date on which the route was created (RFC 3339 format).
2513
2564
  """
@@ -2515,7 +2566,7 @@ class GetRoutesRouteResult(dict):
2515
2566
 
2516
2567
  @property
2517
2568
  @pulumi.getter(name="frontendId")
2518
- def frontend_id(self) -> str:
2569
+ def frontend_id(self) -> builtins.str:
2519
2570
  """
2520
2571
  The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
2521
2572
  """
@@ -2523,7 +2574,7 @@ class GetRoutesRouteResult(dict):
2523
2574
 
2524
2575
  @property
2525
2576
  @pulumi.getter
2526
- def id(self) -> str:
2577
+ def id(self) -> builtins.str:
2527
2578
  """
2528
2579
  The associated route ID.
2529
2580
  """
@@ -2531,7 +2582,7 @@ class GetRoutesRouteResult(dict):
2531
2582
 
2532
2583
  @property
2533
2584
  @pulumi.getter(name="matchHostHeader")
2534
- def match_host_header(self) -> str:
2585
+ def match_host_header(self) -> builtins.str:
2535
2586
  """
2536
2587
  Specifies the host of the server to which the request is being sent.
2537
2588
  """
@@ -2539,7 +2590,7 @@ class GetRoutesRouteResult(dict):
2539
2590
 
2540
2591
  @property
2541
2592
  @pulumi.getter(name="matchSni")
2542
- def match_sni(self) -> str:
2593
+ def match_sni(self) -> builtins.str:
2543
2594
  """
2544
2595
  Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
2545
2596
  """
@@ -2547,7 +2598,7 @@ class GetRoutesRouteResult(dict):
2547
2598
 
2548
2599
  @property
2549
2600
  @pulumi.getter(name="matchSubdomains")
2550
- def match_subdomains(self) -> bool:
2601
+ def match_subdomains(self) -> builtins.bool:
2551
2602
  """
2552
2603
  If true, all subdomains will match.
2553
2604
  """
@@ -2555,7 +2606,7 @@ class GetRoutesRouteResult(dict):
2555
2606
 
2556
2607
  @property
2557
2608
  @pulumi.getter(name="updateAt")
2558
- def update_at(self) -> str:
2609
+ def update_at(self) -> builtins.str:
2559
2610
  """
2560
2611
  The date on which the route was last updated (RFC 3339 format).
2561
2612
  """