pulumiverse-scaleway 1.23.0a1736837529__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.

Potentially problematic release.


This version of pulumiverse-scaleway might be problematic. Click here for more details.

Files changed (205) hide show
  1. pulumiverse_scaleway/__init__.py +1065 -0
  2. pulumiverse_scaleway/_inputs.py +8688 -0
  3. pulumiverse_scaleway/_utilities.py +327 -0
  4. pulumiverse_scaleway/account_project.py +316 -0
  5. pulumiverse_scaleway/account_ssh_key.py +454 -0
  6. pulumiverse_scaleway/apple_silicon_server.py +564 -0
  7. pulumiverse_scaleway/baremetal_server.py +1579 -0
  8. pulumiverse_scaleway/block_snapshot.py +401 -0
  9. pulumiverse_scaleway/block_volume.py +527 -0
  10. pulumiverse_scaleway/cockpit.py +314 -0
  11. pulumiverse_scaleway/cockpit_alert_manager.py +401 -0
  12. pulumiverse_scaleway/cockpit_grafana_user.py +362 -0
  13. pulumiverse_scaleway/cockpit_source.py +567 -0
  14. pulumiverse_scaleway/cockpit_token.py +479 -0
  15. pulumiverse_scaleway/config/__init__.py +8 -0
  16. pulumiverse_scaleway/config/__init__.pyi +56 -0
  17. pulumiverse_scaleway/config/vars.py +78 -0
  18. pulumiverse_scaleway/container.py +1373 -0
  19. pulumiverse_scaleway/container_cron.py +458 -0
  20. pulumiverse_scaleway/container_domain.py +406 -0
  21. pulumiverse_scaleway/container_namespace.py +636 -0
  22. pulumiverse_scaleway/container_token.py +452 -0
  23. pulumiverse_scaleway/container_trigger.py +480 -0
  24. pulumiverse_scaleway/database.py +407 -0
  25. pulumiverse_scaleway/database_acl.py +332 -0
  26. pulumiverse_scaleway/database_backup.py +574 -0
  27. pulumiverse_scaleway/database_instance.py +1641 -0
  28. pulumiverse_scaleway/database_privilege.py +422 -0
  29. pulumiverse_scaleway/database_read_replica.py +528 -0
  30. pulumiverse_scaleway/database_user.py +446 -0
  31. pulumiverse_scaleway/domain_record.py +1116 -0
  32. pulumiverse_scaleway/domain_zone.py +430 -0
  33. pulumiverse_scaleway/flexible_ip.py +702 -0
  34. pulumiverse_scaleway/flexible_ip_mac_address.py +510 -0
  35. pulumiverse_scaleway/function.py +1103 -0
  36. pulumiverse_scaleway/function_cron.py +462 -0
  37. pulumiverse_scaleway/function_domain.py +370 -0
  38. pulumiverse_scaleway/function_namespace.py +580 -0
  39. pulumiverse_scaleway/function_token.py +460 -0
  40. pulumiverse_scaleway/function_trigger.py +480 -0
  41. pulumiverse_scaleway/get_account_project.py +170 -0
  42. pulumiverse_scaleway/get_account_ssh_key.py +205 -0
  43. pulumiverse_scaleway/get_availability_zones.py +139 -0
  44. pulumiverse_scaleway/get_baremetal_offer.py +245 -0
  45. pulumiverse_scaleway/get_baremetal_option.py +168 -0
  46. pulumiverse_scaleway/get_baremetal_os.py +174 -0
  47. pulumiverse_scaleway/get_baremetal_server.py +422 -0
  48. pulumiverse_scaleway/get_billing_consumptions.py +134 -0
  49. pulumiverse_scaleway/get_billing_invoices.py +154 -0
  50. pulumiverse_scaleway/get_block_snapshot.py +174 -0
  51. pulumiverse_scaleway/get_block_volume.py +188 -0
  52. pulumiverse_scaleway/get_cockpit.py +204 -0
  53. pulumiverse_scaleway/get_cockpit_plan.py +125 -0
  54. pulumiverse_scaleway/get_cockpit_source.py +262 -0
  55. pulumiverse_scaleway/get_config.py +180 -0
  56. pulumiverse_scaleway/get_container.py +522 -0
  57. pulumiverse_scaleway/get_container_namespace.py +283 -0
  58. pulumiverse_scaleway/get_database.py +187 -0
  59. pulumiverse_scaleway/get_database_acl.py +143 -0
  60. pulumiverse_scaleway/get_database_backup.py +253 -0
  61. pulumiverse_scaleway/get_database_instance.py +404 -0
  62. pulumiverse_scaleway/get_database_privilege.py +181 -0
  63. pulumiverse_scaleway/get_domain_record.py +340 -0
  64. pulumiverse_scaleway/get_domain_zone.py +201 -0
  65. pulumiverse_scaleway/get_flexible_ip.py +247 -0
  66. pulumiverse_scaleway/get_flexible_ips.py +240 -0
  67. pulumiverse_scaleway/get_function.py +365 -0
  68. pulumiverse_scaleway/get_function_namespace.py +238 -0
  69. pulumiverse_scaleway/get_iam_api_key.py +210 -0
  70. pulumiverse_scaleway/get_iam_application.py +210 -0
  71. pulumiverse_scaleway/get_iam_group.py +236 -0
  72. pulumiverse_scaleway/get_iam_ssh_key.py +212 -0
  73. pulumiverse_scaleway/get_iam_user.py +177 -0
  74. pulumiverse_scaleway/get_instance_image.py +305 -0
  75. pulumiverse_scaleway/get_instance_ip.py +204 -0
  76. pulumiverse_scaleway/get_instance_placement_group.py +212 -0
  77. pulumiverse_scaleway/get_instance_private_nic.py +226 -0
  78. pulumiverse_scaleway/get_instance_security_group.py +268 -0
  79. pulumiverse_scaleway/get_instance_server.py +502 -0
  80. pulumiverse_scaleway/get_instance_servers.py +187 -0
  81. pulumiverse_scaleway/get_instance_snapshot.py +248 -0
  82. pulumiverse_scaleway/get_instance_volume.py +215 -0
  83. pulumiverse_scaleway/get_iot_device.py +257 -0
  84. pulumiverse_scaleway/get_iot_hub.py +322 -0
  85. pulumiverse_scaleway/get_ipam_ip.py +419 -0
  86. pulumiverse_scaleway/get_ipam_ips.py +358 -0
  87. pulumiverse_scaleway/get_k8s_version.py +196 -0
  88. pulumiverse_scaleway/get_kubernetes_cluster.py +417 -0
  89. pulumiverse_scaleway/get_kubernetes_node_pool.py +436 -0
  90. pulumiverse_scaleway/get_lb_acls.py +198 -0
  91. pulumiverse_scaleway/get_lb_backend.py +486 -0
  92. pulumiverse_scaleway/get_lb_backends.py +196 -0
  93. pulumiverse_scaleway/get_lb_frontend.py +274 -0
  94. pulumiverse_scaleway/get_lb_frontends.py +196 -0
  95. pulumiverse_scaleway/get_lb_ips.py +198 -0
  96. pulumiverse_scaleway/get_lb_route.py +217 -0
  97. pulumiverse_scaleway/get_lb_routes.py +179 -0
  98. pulumiverse_scaleway/get_lbs.py +187 -0
  99. pulumiverse_scaleway/get_loadbalancer.py +339 -0
  100. pulumiverse_scaleway/get_loadbalancer_certificate.py +230 -0
  101. pulumiverse_scaleway/get_loadbalancer_ip.py +228 -0
  102. pulumiverse_scaleway/get_marketplace_image.py +147 -0
  103. pulumiverse_scaleway/get_mnq_sns.py +150 -0
  104. pulumiverse_scaleway/get_mnq_sqs.py +150 -0
  105. pulumiverse_scaleway/get_mongo_db_instance.py +324 -0
  106. pulumiverse_scaleway/get_object_bucket.py +290 -0
  107. pulumiverse_scaleway/get_object_bucket_policy.py +163 -0
  108. pulumiverse_scaleway/get_redis_cluster.py +347 -0
  109. pulumiverse_scaleway/get_registry_image.py +239 -0
  110. pulumiverse_scaleway/get_registry_image_tag.py +229 -0
  111. pulumiverse_scaleway/get_registry_namespace.py +199 -0
  112. pulumiverse_scaleway/get_secret.py +338 -0
  113. pulumiverse_scaleway/get_secret_version.py +340 -0
  114. pulumiverse_scaleway/get_tem_domain.py +378 -0
  115. pulumiverse_scaleway/get_vpc.py +246 -0
  116. pulumiverse_scaleway/get_vpc_gateway_network.py +287 -0
  117. pulumiverse_scaleway/get_vpc_private_network.py +282 -0
  118. pulumiverse_scaleway/get_vpc_public_gateway.py +304 -0
  119. pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +305 -0
  120. pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +382 -0
  121. pulumiverse_scaleway/get_vpc_public_gateway_ip.py +199 -0
  122. pulumiverse_scaleway/get_vpc_public_pat_rule.py +313 -0
  123. pulumiverse_scaleway/get_vpc_routes.py +208 -0
  124. pulumiverse_scaleway/get_vpcs.py +174 -0
  125. pulumiverse_scaleway/get_web_host_offer.py +192 -0
  126. pulumiverse_scaleway/get_webhosting.py +332 -0
  127. pulumiverse_scaleway/iam_api_key.py +620 -0
  128. pulumiverse_scaleway/iam_application.py +417 -0
  129. pulumiverse_scaleway/iam_group.py +566 -0
  130. pulumiverse_scaleway/iam_group_membership.py +323 -0
  131. pulumiverse_scaleway/iam_policy.py +773 -0
  132. pulumiverse_scaleway/iam_ssh_key.py +455 -0
  133. pulumiverse_scaleway/iam_user.py +513 -0
  134. pulumiverse_scaleway/inference_deployment.py +822 -0
  135. pulumiverse_scaleway/instance_image.py +750 -0
  136. pulumiverse_scaleway/instance_ip.py +483 -0
  137. pulumiverse_scaleway/instance_ip_reverse_dns.py +308 -0
  138. pulumiverse_scaleway/instance_placement_group.py +479 -0
  139. pulumiverse_scaleway/instance_private_nic.py +555 -0
  140. pulumiverse_scaleway/instance_security_group.py +720 -0
  141. pulumiverse_scaleway/instance_security_group_rules.py +439 -0
  142. pulumiverse_scaleway/instance_server.py +2006 -0
  143. pulumiverse_scaleway/instance_snapshot.py +669 -0
  144. pulumiverse_scaleway/instance_user_data.py +435 -0
  145. pulumiverse_scaleway/instance_volume.py +535 -0
  146. pulumiverse_scaleway/iot_device.py +750 -0
  147. pulumiverse_scaleway/iot_hub.py +896 -0
  148. pulumiverse_scaleway/iot_network.py +472 -0
  149. pulumiverse_scaleway/iot_route.py +660 -0
  150. pulumiverse_scaleway/ipam_ip.py +757 -0
  151. pulumiverse_scaleway/ipam_ip_reverse_dns.py +318 -0
  152. pulumiverse_scaleway/job_definition.py +692 -0
  153. pulumiverse_scaleway/kubernetes_cluster.py +1538 -0
  154. pulumiverse_scaleway/kubernetes_node_pool.py +1255 -0
  155. pulumiverse_scaleway/loadbalancer.py +1061 -0
  156. pulumiverse_scaleway/loadbalancer_acl.py +520 -0
  157. pulumiverse_scaleway/loadbalancer_backend.py +1588 -0
  158. pulumiverse_scaleway/loadbalancer_certificate.py +460 -0
  159. pulumiverse_scaleway/loadbalancer_frontend.py +829 -0
  160. pulumiverse_scaleway/loadbalancer_ip.py +514 -0
  161. pulumiverse_scaleway/loadbalancer_route.py +523 -0
  162. pulumiverse_scaleway/mnq_nats_account.py +334 -0
  163. pulumiverse_scaleway/mnq_nats_credentials.py +330 -0
  164. pulumiverse_scaleway/mnq_sns.py +306 -0
  165. pulumiverse_scaleway/mnq_sns_credentials.py +413 -0
  166. pulumiverse_scaleway/mnq_sns_topic.py +659 -0
  167. pulumiverse_scaleway/mnq_sns_topic_subscription.py +699 -0
  168. pulumiverse_scaleway/mnq_sqs.py +304 -0
  169. pulumiverse_scaleway/mnq_sqs_credentials.py +413 -0
  170. pulumiverse_scaleway/mnq_sqs_queue.py +800 -0
  171. pulumiverse_scaleway/mongo_db_instance.py +907 -0
  172. pulumiverse_scaleway/mongo_db_snapshot.py +521 -0
  173. pulumiverse_scaleway/object_bucket.py +874 -0
  174. pulumiverse_scaleway/object_bucket_acl.py +596 -0
  175. pulumiverse_scaleway/object_bucket_lock_configuration.py +395 -0
  176. pulumiverse_scaleway/object_bucket_policy.py +673 -0
  177. pulumiverse_scaleway/object_bucket_website_configuration.py +534 -0
  178. pulumiverse_scaleway/object_item.py +776 -0
  179. pulumiverse_scaleway/outputs.py +11808 -0
  180. pulumiverse_scaleway/provider.py +327 -0
  181. pulumiverse_scaleway/pulumi-plugin.json +6 -0
  182. pulumiverse_scaleway/py.typed +0 -0
  183. pulumiverse_scaleway/redis_cluster.py +1201 -0
  184. pulumiverse_scaleway/registry_namespace.py +458 -0
  185. pulumiverse_scaleway/sdb_database.py +432 -0
  186. pulumiverse_scaleway/secret.py +663 -0
  187. pulumiverse_scaleway/secret_version.py +487 -0
  188. pulumiverse_scaleway/tem_domain.py +1030 -0
  189. pulumiverse_scaleway/tem_domain_validation.py +303 -0
  190. pulumiverse_scaleway/tem_webhook.py +640 -0
  191. pulumiverse_scaleway/vpc.py +536 -0
  192. pulumiverse_scaleway/vpc_gateway_network.py +866 -0
  193. pulumiverse_scaleway/vpc_private_network.py +734 -0
  194. pulumiverse_scaleway/vpc_public_gateway.py +789 -0
  195. pulumiverse_scaleway/vpc_public_gateway_dhcp.py +933 -0
  196. pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +514 -0
  197. pulumiverse_scaleway/vpc_public_gateway_ip.py +457 -0
  198. pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +306 -0
  199. pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +591 -0
  200. pulumiverse_scaleway/vpc_route.py +577 -0
  201. pulumiverse_scaleway/webhosting.py +805 -0
  202. pulumiverse_scaleway-1.23.0a1736837529.dist-info/METADATA +77 -0
  203. pulumiverse_scaleway-1.23.0a1736837529.dist-info/RECORD +205 -0
  204. pulumiverse_scaleway-1.23.0a1736837529.dist-info/WHEEL +5 -0
  205. pulumiverse_scaleway-1.23.0a1736837529.dist-info/top_level.txt +1 -0
@@ -0,0 +1,829 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['LoadbalancerFrontendArgs', 'LoadbalancerFrontend']
20
+
21
+ @pulumi.input_type
22
+ class LoadbalancerFrontendArgs:
23
+ def __init__(__self__, *,
24
+ backend_id: pulumi.Input[str],
25
+ inbound_port: pulumi.Input[int],
26
+ lb_id: pulumi.Input[str],
27
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]] = None,
28
+ certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
29
+ enable_http3: Optional[pulumi.Input[bool]] = None,
30
+ external_acls: Optional[pulumi.Input[bool]] = None,
31
+ name: Optional[pulumi.Input[str]] = None,
32
+ timeout_client: Optional[pulumi.Input[str]] = None):
33
+ """
34
+ The set of arguments for constructing a LoadbalancerFrontend resource.
35
+ :param pulumi.Input[str] backend_id: The ID of the Load Balancer backend this frontend is attached to.
36
+
37
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
38
+ :param pulumi.Input[int] inbound_port: TCP port to listen to on the front side.
39
+ :param pulumi.Input[str] lb_id: The ID of the Load Balancer this frontend is attached to.
40
+ :param pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]] acls: A list of ACL rules to apply to the Load Balancer frontend. Defined below.
41
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: List of certificate IDs that should be used by the frontend.
42
+
43
+ > **Important:** Certificates are not allowed on port 80.
44
+ :param pulumi.Input[bool] enable_http3: Activates HTTP/3 protocol.
45
+ :param pulumi.Input[bool] external_acls: A boolean to specify whether to use lb_acl.
46
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
47
+ :param pulumi.Input[str] name: The ACL name. If not provided it will be randomly generated.
48
+ :param pulumi.Input[str] timeout_client: Maximum inactivity time on the client side. (e.g. `1s`)
49
+ """
50
+ pulumi.set(__self__, "backend_id", backend_id)
51
+ pulumi.set(__self__, "inbound_port", inbound_port)
52
+ pulumi.set(__self__, "lb_id", lb_id)
53
+ if acls is not None:
54
+ pulumi.set(__self__, "acls", acls)
55
+ if certificate_ids is not None:
56
+ pulumi.set(__self__, "certificate_ids", certificate_ids)
57
+ if enable_http3 is not None:
58
+ pulumi.set(__self__, "enable_http3", enable_http3)
59
+ if external_acls is not None:
60
+ pulumi.set(__self__, "external_acls", external_acls)
61
+ if name is not None:
62
+ pulumi.set(__self__, "name", name)
63
+ if timeout_client is not None:
64
+ pulumi.set(__self__, "timeout_client", timeout_client)
65
+
66
+ @property
67
+ @pulumi.getter(name="backendId")
68
+ def backend_id(self) -> pulumi.Input[str]:
69
+ """
70
+ The ID of the Load Balancer backend this frontend is attached to.
71
+
72
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
73
+ """
74
+ return pulumi.get(self, "backend_id")
75
+
76
+ @backend_id.setter
77
+ def backend_id(self, value: pulumi.Input[str]):
78
+ pulumi.set(self, "backend_id", value)
79
+
80
+ @property
81
+ @pulumi.getter(name="inboundPort")
82
+ def inbound_port(self) -> pulumi.Input[int]:
83
+ """
84
+ TCP port to listen to on the front side.
85
+ """
86
+ return pulumi.get(self, "inbound_port")
87
+
88
+ @inbound_port.setter
89
+ def inbound_port(self, value: pulumi.Input[int]):
90
+ pulumi.set(self, "inbound_port", value)
91
+
92
+ @property
93
+ @pulumi.getter(name="lbId")
94
+ def lb_id(self) -> pulumi.Input[str]:
95
+ """
96
+ The ID of the Load Balancer this frontend is attached to.
97
+ """
98
+ return pulumi.get(self, "lb_id")
99
+
100
+ @lb_id.setter
101
+ def lb_id(self, value: pulumi.Input[str]):
102
+ pulumi.set(self, "lb_id", value)
103
+
104
+ @property
105
+ @pulumi.getter
106
+ def acls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]]:
107
+ """
108
+ A list of ACL rules to apply to the Load Balancer frontend. Defined below.
109
+ """
110
+ return pulumi.get(self, "acls")
111
+
112
+ @acls.setter
113
+ def acls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]]):
114
+ pulumi.set(self, "acls", value)
115
+
116
+ @property
117
+ @pulumi.getter(name="certificateIds")
118
+ def certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
119
+ """
120
+ List of certificate IDs that should be used by the frontend.
121
+
122
+ > **Important:** Certificates are not allowed on port 80.
123
+ """
124
+ return pulumi.get(self, "certificate_ids")
125
+
126
+ @certificate_ids.setter
127
+ def certificate_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
128
+ pulumi.set(self, "certificate_ids", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="enableHttp3")
132
+ def enable_http3(self) -> Optional[pulumi.Input[bool]]:
133
+ """
134
+ Activates HTTP/3 protocol.
135
+ """
136
+ return pulumi.get(self, "enable_http3")
137
+
138
+ @enable_http3.setter
139
+ def enable_http3(self, value: Optional[pulumi.Input[bool]]):
140
+ pulumi.set(self, "enable_http3", value)
141
+
142
+ @property
143
+ @pulumi.getter(name="externalAcls")
144
+ def external_acls(self) -> Optional[pulumi.Input[bool]]:
145
+ """
146
+ A boolean to specify whether to use lb_acl.
147
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
148
+ """
149
+ return pulumi.get(self, "external_acls")
150
+
151
+ @external_acls.setter
152
+ def external_acls(self, value: Optional[pulumi.Input[bool]]):
153
+ pulumi.set(self, "external_acls", value)
154
+
155
+ @property
156
+ @pulumi.getter
157
+ def name(self) -> Optional[pulumi.Input[str]]:
158
+ """
159
+ The ACL name. If not provided it will be randomly generated.
160
+ """
161
+ return pulumi.get(self, "name")
162
+
163
+ @name.setter
164
+ def name(self, value: Optional[pulumi.Input[str]]):
165
+ pulumi.set(self, "name", value)
166
+
167
+ @property
168
+ @pulumi.getter(name="timeoutClient")
169
+ def timeout_client(self) -> Optional[pulumi.Input[str]]:
170
+ """
171
+ Maximum inactivity time on the client side. (e.g. `1s`)
172
+ """
173
+ return pulumi.get(self, "timeout_client")
174
+
175
+ @timeout_client.setter
176
+ def timeout_client(self, value: Optional[pulumi.Input[str]]):
177
+ pulumi.set(self, "timeout_client", value)
178
+
179
+
180
+ @pulumi.input_type
181
+ class _LoadbalancerFrontendState:
182
+ def __init__(__self__, *,
183
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]] = None,
184
+ backend_id: Optional[pulumi.Input[str]] = None,
185
+ certificate_id: Optional[pulumi.Input[str]] = None,
186
+ certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
187
+ enable_http3: Optional[pulumi.Input[bool]] = None,
188
+ external_acls: Optional[pulumi.Input[bool]] = None,
189
+ inbound_port: Optional[pulumi.Input[int]] = None,
190
+ lb_id: Optional[pulumi.Input[str]] = None,
191
+ name: Optional[pulumi.Input[str]] = None,
192
+ timeout_client: Optional[pulumi.Input[str]] = None):
193
+ """
194
+ Input properties used for looking up and filtering LoadbalancerFrontend resources.
195
+ :param pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]] acls: A list of ACL rules to apply to the Load Balancer frontend. Defined below.
196
+ :param pulumi.Input[str] backend_id: The ID of the Load Balancer backend this frontend is attached to.
197
+
198
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
199
+ :param pulumi.Input[str] certificate_id: (Deprecated, use `certificate_ids` instead) First certificate ID used by the frontend.
200
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: List of certificate IDs that should be used by the frontend.
201
+
202
+ > **Important:** Certificates are not allowed on port 80.
203
+ :param pulumi.Input[bool] enable_http3: Activates HTTP/3 protocol.
204
+ :param pulumi.Input[bool] external_acls: A boolean to specify whether to use lb_acl.
205
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
206
+ :param pulumi.Input[int] inbound_port: TCP port to listen to on the front side.
207
+ :param pulumi.Input[str] lb_id: The ID of the Load Balancer this frontend is attached to.
208
+ :param pulumi.Input[str] name: The ACL name. If not provided it will be randomly generated.
209
+ :param pulumi.Input[str] timeout_client: Maximum inactivity time on the client side. (e.g. `1s`)
210
+ """
211
+ if acls is not None:
212
+ pulumi.set(__self__, "acls", acls)
213
+ if backend_id is not None:
214
+ pulumi.set(__self__, "backend_id", backend_id)
215
+ if certificate_id is not None:
216
+ warnings.warn("""Please use certificate_ids""", DeprecationWarning)
217
+ pulumi.log.warn("""certificate_id is deprecated: Please use certificate_ids""")
218
+ if certificate_id is not None:
219
+ pulumi.set(__self__, "certificate_id", certificate_id)
220
+ if certificate_ids is not None:
221
+ pulumi.set(__self__, "certificate_ids", certificate_ids)
222
+ if enable_http3 is not None:
223
+ pulumi.set(__self__, "enable_http3", enable_http3)
224
+ if external_acls is not None:
225
+ pulumi.set(__self__, "external_acls", external_acls)
226
+ if inbound_port is not None:
227
+ pulumi.set(__self__, "inbound_port", inbound_port)
228
+ if lb_id is not None:
229
+ pulumi.set(__self__, "lb_id", lb_id)
230
+ if name is not None:
231
+ pulumi.set(__self__, "name", name)
232
+ if timeout_client is not None:
233
+ pulumi.set(__self__, "timeout_client", timeout_client)
234
+
235
+ @property
236
+ @pulumi.getter
237
+ def acls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]]:
238
+ """
239
+ A list of ACL rules to apply to the Load Balancer frontend. Defined below.
240
+ """
241
+ return pulumi.get(self, "acls")
242
+
243
+ @acls.setter
244
+ def acls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerFrontendAclArgs']]]]):
245
+ pulumi.set(self, "acls", value)
246
+
247
+ @property
248
+ @pulumi.getter(name="backendId")
249
+ def backend_id(self) -> Optional[pulumi.Input[str]]:
250
+ """
251
+ The ID of the Load Balancer backend this frontend is attached to.
252
+
253
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
254
+ """
255
+ return pulumi.get(self, "backend_id")
256
+
257
+ @backend_id.setter
258
+ def backend_id(self, value: Optional[pulumi.Input[str]]):
259
+ pulumi.set(self, "backend_id", value)
260
+
261
+ @property
262
+ @pulumi.getter(name="certificateId")
263
+ @_utilities.deprecated("""Please use certificate_ids""")
264
+ def certificate_id(self) -> Optional[pulumi.Input[str]]:
265
+ """
266
+ (Deprecated, use `certificate_ids` instead) First certificate ID used by the frontend.
267
+ """
268
+ return pulumi.get(self, "certificate_id")
269
+
270
+ @certificate_id.setter
271
+ def certificate_id(self, value: Optional[pulumi.Input[str]]):
272
+ pulumi.set(self, "certificate_id", value)
273
+
274
+ @property
275
+ @pulumi.getter(name="certificateIds")
276
+ def certificate_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
277
+ """
278
+ List of certificate IDs that should be used by the frontend.
279
+
280
+ > **Important:** Certificates are not allowed on port 80.
281
+ """
282
+ return pulumi.get(self, "certificate_ids")
283
+
284
+ @certificate_ids.setter
285
+ def certificate_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
286
+ pulumi.set(self, "certificate_ids", value)
287
+
288
+ @property
289
+ @pulumi.getter(name="enableHttp3")
290
+ def enable_http3(self) -> Optional[pulumi.Input[bool]]:
291
+ """
292
+ Activates HTTP/3 protocol.
293
+ """
294
+ return pulumi.get(self, "enable_http3")
295
+
296
+ @enable_http3.setter
297
+ def enable_http3(self, value: Optional[pulumi.Input[bool]]):
298
+ pulumi.set(self, "enable_http3", value)
299
+
300
+ @property
301
+ @pulumi.getter(name="externalAcls")
302
+ def external_acls(self) -> Optional[pulumi.Input[bool]]:
303
+ """
304
+ A boolean to specify whether to use lb_acl.
305
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
306
+ """
307
+ return pulumi.get(self, "external_acls")
308
+
309
+ @external_acls.setter
310
+ def external_acls(self, value: Optional[pulumi.Input[bool]]):
311
+ pulumi.set(self, "external_acls", value)
312
+
313
+ @property
314
+ @pulumi.getter(name="inboundPort")
315
+ def inbound_port(self) -> Optional[pulumi.Input[int]]:
316
+ """
317
+ TCP port to listen to on the front side.
318
+ """
319
+ return pulumi.get(self, "inbound_port")
320
+
321
+ @inbound_port.setter
322
+ def inbound_port(self, value: Optional[pulumi.Input[int]]):
323
+ pulumi.set(self, "inbound_port", value)
324
+
325
+ @property
326
+ @pulumi.getter(name="lbId")
327
+ def lb_id(self) -> Optional[pulumi.Input[str]]:
328
+ """
329
+ The ID of the Load Balancer this frontend is attached to.
330
+ """
331
+ return pulumi.get(self, "lb_id")
332
+
333
+ @lb_id.setter
334
+ def lb_id(self, value: Optional[pulumi.Input[str]]):
335
+ pulumi.set(self, "lb_id", value)
336
+
337
+ @property
338
+ @pulumi.getter
339
+ def name(self) -> Optional[pulumi.Input[str]]:
340
+ """
341
+ The ACL name. If not provided it will be randomly generated.
342
+ """
343
+ return pulumi.get(self, "name")
344
+
345
+ @name.setter
346
+ def name(self, value: Optional[pulumi.Input[str]]):
347
+ pulumi.set(self, "name", value)
348
+
349
+ @property
350
+ @pulumi.getter(name="timeoutClient")
351
+ def timeout_client(self) -> Optional[pulumi.Input[str]]:
352
+ """
353
+ Maximum inactivity time on the client side. (e.g. `1s`)
354
+ """
355
+ return pulumi.get(self, "timeout_client")
356
+
357
+ @timeout_client.setter
358
+ def timeout_client(self, value: Optional[pulumi.Input[str]]):
359
+ pulumi.set(self, "timeout_client", value)
360
+
361
+
362
+ class LoadbalancerFrontend(pulumi.CustomResource):
363
+ @overload
364
+ def __init__(__self__,
365
+ resource_name: str,
366
+ opts: Optional[pulumi.ResourceOptions] = None,
367
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerFrontendAclArgs', 'LoadbalancerFrontendAclArgsDict']]]]] = None,
368
+ backend_id: Optional[pulumi.Input[str]] = None,
369
+ certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
370
+ enable_http3: Optional[pulumi.Input[bool]] = None,
371
+ external_acls: Optional[pulumi.Input[bool]] = None,
372
+ inbound_port: Optional[pulumi.Input[int]] = None,
373
+ lb_id: Optional[pulumi.Input[str]] = None,
374
+ name: Optional[pulumi.Input[str]] = None,
375
+ timeout_client: Optional[pulumi.Input[str]] = None,
376
+ __props__=None):
377
+ """
378
+ Creates and manages Scaleway Load Balancer frontends.
379
+
380
+ For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/reference-content/configuring-frontends/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-frontends).
381
+
382
+ ## Example Usage
383
+
384
+ ### Basic
385
+
386
+ ```python
387
+ import pulumi
388
+ import pulumiverse_scaleway as scaleway
389
+
390
+ frontend01 = scaleway.LoadbalancerFrontend("frontend01",
391
+ lb_id=lb01["id"],
392
+ backend_id=backend01["id"],
393
+ name="frontend01",
394
+ inbound_port=80)
395
+ ```
396
+
397
+ ## With ACLs
398
+
399
+ ```python
400
+ import pulumi
401
+ import pulumiverse_scaleway as scaleway
402
+
403
+ frontend01 = scaleway.LoadbalancerFrontend("frontend01",
404
+ lb_id=lb01["id"],
405
+ backend_id=backend01["id"],
406
+ name="frontend01",
407
+ inbound_port=80,
408
+ acls=[
409
+ {
410
+ "name": "blacklist wellknwon IPs",
411
+ "action": {
412
+ "type": "allow",
413
+ },
414
+ "match": {
415
+ "ip_subnets": [
416
+ "192.168.0.1",
417
+ "192.168.0.2",
418
+ "192.168.10.0/24",
419
+ ],
420
+ },
421
+ },
422
+ {
423
+ "action": {
424
+ "type": "deny",
425
+ },
426
+ "match": {
427
+ "ip_subnets": ["51.51.51.51"],
428
+ "http_filter": "regex",
429
+ "http_filter_values": ["^foo*bar$"],
430
+ },
431
+ },
432
+ {
433
+ "action": {
434
+ "type": "allow",
435
+ },
436
+ "match": {
437
+ "http_filter": "path_begin",
438
+ "http_filter_values": [
439
+ "foo",
440
+ "bar",
441
+ ],
442
+ },
443
+ },
444
+ {
445
+ "action": {
446
+ "type": "allow",
447
+ },
448
+ "match": {
449
+ "http_filter": "path_begin",
450
+ "http_filter_values": ["hi"],
451
+ "invert": True,
452
+ },
453
+ },
454
+ {
455
+ "action": {
456
+ "type": "allow",
457
+ },
458
+ "match": {
459
+ "http_filter": "http_header_match",
460
+ "http_filter_values": "foo",
461
+ "http_filter_option": "bar",
462
+ },
463
+ },
464
+ {
465
+ "action": {
466
+ "type": "redirect",
467
+ "redirects": [{
468
+ "type": "location",
469
+ "target": "https://example.com",
470
+ "code": 307,
471
+ }],
472
+ },
473
+ "match": {
474
+ "ip_subnets": ["10.0.0.10"],
475
+ "http_filter": "path_begin",
476
+ "http_filter_values": [
477
+ "foo",
478
+ "bar",
479
+ ],
480
+ },
481
+ },
482
+ ])
483
+ ```
484
+
485
+ ## Import
486
+
487
+ Load Balancer frontends can be imported using `{zone}/{id}`, e.g.
488
+
489
+ bash
490
+
491
+ ```sh
492
+ $ pulumi import scaleway:index/loadbalancerFrontend:LoadbalancerFrontend frontend01 fr-par-1/11111111-1111-1111-1111-111111111111
493
+ ```
494
+
495
+ :param str resource_name: The name of the resource.
496
+ :param pulumi.ResourceOptions opts: Options for the resource.
497
+ :param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerFrontendAclArgs', 'LoadbalancerFrontendAclArgsDict']]]] acls: A list of ACL rules to apply to the Load Balancer frontend. Defined below.
498
+ :param pulumi.Input[str] backend_id: The ID of the Load Balancer backend this frontend is attached to.
499
+
500
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
501
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: List of certificate IDs that should be used by the frontend.
502
+
503
+ > **Important:** Certificates are not allowed on port 80.
504
+ :param pulumi.Input[bool] enable_http3: Activates HTTP/3 protocol.
505
+ :param pulumi.Input[bool] external_acls: A boolean to specify whether to use lb_acl.
506
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
507
+ :param pulumi.Input[int] inbound_port: TCP port to listen to on the front side.
508
+ :param pulumi.Input[str] lb_id: The ID of the Load Balancer this frontend is attached to.
509
+ :param pulumi.Input[str] name: The ACL name. If not provided it will be randomly generated.
510
+ :param pulumi.Input[str] timeout_client: Maximum inactivity time on the client side. (e.g. `1s`)
511
+ """
512
+ ...
513
+ @overload
514
+ def __init__(__self__,
515
+ resource_name: str,
516
+ args: LoadbalancerFrontendArgs,
517
+ opts: Optional[pulumi.ResourceOptions] = None):
518
+ """
519
+ Creates and manages Scaleway Load Balancer frontends.
520
+
521
+ For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/reference-content/configuring-frontends/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-frontends).
522
+
523
+ ## Example Usage
524
+
525
+ ### Basic
526
+
527
+ ```python
528
+ import pulumi
529
+ import pulumiverse_scaleway as scaleway
530
+
531
+ frontend01 = scaleway.LoadbalancerFrontend("frontend01",
532
+ lb_id=lb01["id"],
533
+ backend_id=backend01["id"],
534
+ name="frontend01",
535
+ inbound_port=80)
536
+ ```
537
+
538
+ ## With ACLs
539
+
540
+ ```python
541
+ import pulumi
542
+ import pulumiverse_scaleway as scaleway
543
+
544
+ frontend01 = scaleway.LoadbalancerFrontend("frontend01",
545
+ lb_id=lb01["id"],
546
+ backend_id=backend01["id"],
547
+ name="frontend01",
548
+ inbound_port=80,
549
+ acls=[
550
+ {
551
+ "name": "blacklist wellknwon IPs",
552
+ "action": {
553
+ "type": "allow",
554
+ },
555
+ "match": {
556
+ "ip_subnets": [
557
+ "192.168.0.1",
558
+ "192.168.0.2",
559
+ "192.168.10.0/24",
560
+ ],
561
+ },
562
+ },
563
+ {
564
+ "action": {
565
+ "type": "deny",
566
+ },
567
+ "match": {
568
+ "ip_subnets": ["51.51.51.51"],
569
+ "http_filter": "regex",
570
+ "http_filter_values": ["^foo*bar$"],
571
+ },
572
+ },
573
+ {
574
+ "action": {
575
+ "type": "allow",
576
+ },
577
+ "match": {
578
+ "http_filter": "path_begin",
579
+ "http_filter_values": [
580
+ "foo",
581
+ "bar",
582
+ ],
583
+ },
584
+ },
585
+ {
586
+ "action": {
587
+ "type": "allow",
588
+ },
589
+ "match": {
590
+ "http_filter": "path_begin",
591
+ "http_filter_values": ["hi"],
592
+ "invert": True,
593
+ },
594
+ },
595
+ {
596
+ "action": {
597
+ "type": "allow",
598
+ },
599
+ "match": {
600
+ "http_filter": "http_header_match",
601
+ "http_filter_values": "foo",
602
+ "http_filter_option": "bar",
603
+ },
604
+ },
605
+ {
606
+ "action": {
607
+ "type": "redirect",
608
+ "redirects": [{
609
+ "type": "location",
610
+ "target": "https://example.com",
611
+ "code": 307,
612
+ }],
613
+ },
614
+ "match": {
615
+ "ip_subnets": ["10.0.0.10"],
616
+ "http_filter": "path_begin",
617
+ "http_filter_values": [
618
+ "foo",
619
+ "bar",
620
+ ],
621
+ },
622
+ },
623
+ ])
624
+ ```
625
+
626
+ ## Import
627
+
628
+ Load Balancer frontends can be imported using `{zone}/{id}`, e.g.
629
+
630
+ bash
631
+
632
+ ```sh
633
+ $ pulumi import scaleway:index/loadbalancerFrontend:LoadbalancerFrontend frontend01 fr-par-1/11111111-1111-1111-1111-111111111111
634
+ ```
635
+
636
+ :param str resource_name: The name of the resource.
637
+ :param LoadbalancerFrontendArgs args: The arguments to use to populate this resource's properties.
638
+ :param pulumi.ResourceOptions opts: Options for the resource.
639
+ """
640
+ ...
641
+ def __init__(__self__, resource_name: str, *args, **kwargs):
642
+ resource_args, opts = _utilities.get_resource_args_opts(LoadbalancerFrontendArgs, pulumi.ResourceOptions, *args, **kwargs)
643
+ if resource_args is not None:
644
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
645
+ else:
646
+ __self__._internal_init(resource_name, *args, **kwargs)
647
+
648
+ def _internal_init(__self__,
649
+ resource_name: str,
650
+ opts: Optional[pulumi.ResourceOptions] = None,
651
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerFrontendAclArgs', 'LoadbalancerFrontendAclArgsDict']]]]] = None,
652
+ backend_id: Optional[pulumi.Input[str]] = None,
653
+ certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
654
+ enable_http3: Optional[pulumi.Input[bool]] = None,
655
+ external_acls: Optional[pulumi.Input[bool]] = None,
656
+ inbound_port: Optional[pulumi.Input[int]] = None,
657
+ lb_id: Optional[pulumi.Input[str]] = None,
658
+ name: Optional[pulumi.Input[str]] = None,
659
+ timeout_client: Optional[pulumi.Input[str]] = None,
660
+ __props__=None):
661
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
662
+ if not isinstance(opts, pulumi.ResourceOptions):
663
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
664
+ if opts.id is None:
665
+ if __props__ is not None:
666
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
667
+ __props__ = LoadbalancerFrontendArgs.__new__(LoadbalancerFrontendArgs)
668
+
669
+ __props__.__dict__["acls"] = acls
670
+ if backend_id is None and not opts.urn:
671
+ raise TypeError("Missing required property 'backend_id'")
672
+ __props__.__dict__["backend_id"] = backend_id
673
+ __props__.__dict__["certificate_ids"] = certificate_ids
674
+ __props__.__dict__["enable_http3"] = enable_http3
675
+ __props__.__dict__["external_acls"] = external_acls
676
+ if inbound_port is None and not opts.urn:
677
+ raise TypeError("Missing required property 'inbound_port'")
678
+ __props__.__dict__["inbound_port"] = inbound_port
679
+ if lb_id is None and not opts.urn:
680
+ raise TypeError("Missing required property 'lb_id'")
681
+ __props__.__dict__["lb_id"] = lb_id
682
+ __props__.__dict__["name"] = name
683
+ __props__.__dict__["timeout_client"] = timeout_client
684
+ __props__.__dict__["certificate_id"] = None
685
+ super(LoadbalancerFrontend, __self__).__init__(
686
+ 'scaleway:index/loadbalancerFrontend:LoadbalancerFrontend',
687
+ resource_name,
688
+ __props__,
689
+ opts)
690
+
691
+ @staticmethod
692
+ def get(resource_name: str,
693
+ id: pulumi.Input[str],
694
+ opts: Optional[pulumi.ResourceOptions] = None,
695
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerFrontendAclArgs', 'LoadbalancerFrontendAclArgsDict']]]]] = None,
696
+ backend_id: Optional[pulumi.Input[str]] = None,
697
+ certificate_id: Optional[pulumi.Input[str]] = None,
698
+ certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
699
+ enable_http3: Optional[pulumi.Input[bool]] = None,
700
+ external_acls: Optional[pulumi.Input[bool]] = None,
701
+ inbound_port: Optional[pulumi.Input[int]] = None,
702
+ lb_id: Optional[pulumi.Input[str]] = None,
703
+ name: Optional[pulumi.Input[str]] = None,
704
+ timeout_client: Optional[pulumi.Input[str]] = None) -> 'LoadbalancerFrontend':
705
+ """
706
+ Get an existing LoadbalancerFrontend resource's state with the given name, id, and optional extra
707
+ properties used to qualify the lookup.
708
+
709
+ :param str resource_name: The unique name of the resulting resource.
710
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
711
+ :param pulumi.ResourceOptions opts: Options for the resource.
712
+ :param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerFrontendAclArgs', 'LoadbalancerFrontendAclArgsDict']]]] acls: A list of ACL rules to apply to the Load Balancer frontend. Defined below.
713
+ :param pulumi.Input[str] backend_id: The ID of the Load Balancer backend this frontend is attached to.
714
+
715
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
716
+ :param pulumi.Input[str] certificate_id: (Deprecated, use `certificate_ids` instead) First certificate ID used by the frontend.
717
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_ids: List of certificate IDs that should be used by the frontend.
718
+
719
+ > **Important:** Certificates are not allowed on port 80.
720
+ :param pulumi.Input[bool] enable_http3: Activates HTTP/3 protocol.
721
+ :param pulumi.Input[bool] external_acls: A boolean to specify whether to use lb_acl.
722
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
723
+ :param pulumi.Input[int] inbound_port: TCP port to listen to on the front side.
724
+ :param pulumi.Input[str] lb_id: The ID of the Load Balancer this frontend is attached to.
725
+ :param pulumi.Input[str] name: The ACL name. If not provided it will be randomly generated.
726
+ :param pulumi.Input[str] timeout_client: Maximum inactivity time on the client side. (e.g. `1s`)
727
+ """
728
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
729
+
730
+ __props__ = _LoadbalancerFrontendState.__new__(_LoadbalancerFrontendState)
731
+
732
+ __props__.__dict__["acls"] = acls
733
+ __props__.__dict__["backend_id"] = backend_id
734
+ __props__.__dict__["certificate_id"] = certificate_id
735
+ __props__.__dict__["certificate_ids"] = certificate_ids
736
+ __props__.__dict__["enable_http3"] = enable_http3
737
+ __props__.__dict__["external_acls"] = external_acls
738
+ __props__.__dict__["inbound_port"] = inbound_port
739
+ __props__.__dict__["lb_id"] = lb_id
740
+ __props__.__dict__["name"] = name
741
+ __props__.__dict__["timeout_client"] = timeout_client
742
+ return LoadbalancerFrontend(resource_name, opts=opts, __props__=__props__)
743
+
744
+ @property
745
+ @pulumi.getter
746
+ def acls(self) -> pulumi.Output[Optional[Sequence['outputs.LoadbalancerFrontendAcl']]]:
747
+ """
748
+ A list of ACL rules to apply to the Load Balancer frontend. Defined below.
749
+ """
750
+ return pulumi.get(self, "acls")
751
+
752
+ @property
753
+ @pulumi.getter(name="backendId")
754
+ def backend_id(self) -> pulumi.Output[str]:
755
+ """
756
+ The ID of the Load Balancer backend this frontend is attached to.
757
+
758
+ > **Important:** Updates to `lb_id` or `backend_id` will recreate the frontend.
759
+ """
760
+ return pulumi.get(self, "backend_id")
761
+
762
+ @property
763
+ @pulumi.getter(name="certificateId")
764
+ @_utilities.deprecated("""Please use certificate_ids""")
765
+ def certificate_id(self) -> pulumi.Output[str]:
766
+ """
767
+ (Deprecated, use `certificate_ids` instead) First certificate ID used by the frontend.
768
+ """
769
+ return pulumi.get(self, "certificate_id")
770
+
771
+ @property
772
+ @pulumi.getter(name="certificateIds")
773
+ def certificate_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
774
+ """
775
+ List of certificate IDs that should be used by the frontend.
776
+
777
+ > **Important:** Certificates are not allowed on port 80.
778
+ """
779
+ return pulumi.get(self, "certificate_ids")
780
+
781
+ @property
782
+ @pulumi.getter(name="enableHttp3")
783
+ def enable_http3(self) -> pulumi.Output[Optional[bool]]:
784
+ """
785
+ Activates HTTP/3 protocol.
786
+ """
787
+ return pulumi.get(self, "enable_http3")
788
+
789
+ @property
790
+ @pulumi.getter(name="externalAcls")
791
+ def external_acls(self) -> pulumi.Output[Optional[bool]]:
792
+ """
793
+ A boolean to specify whether to use lb_acl.
794
+ If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend.
795
+ """
796
+ return pulumi.get(self, "external_acls")
797
+
798
+ @property
799
+ @pulumi.getter(name="inboundPort")
800
+ def inbound_port(self) -> pulumi.Output[int]:
801
+ """
802
+ TCP port to listen to on the front side.
803
+ """
804
+ return pulumi.get(self, "inbound_port")
805
+
806
+ @property
807
+ @pulumi.getter(name="lbId")
808
+ def lb_id(self) -> pulumi.Output[str]:
809
+ """
810
+ The ID of the Load Balancer this frontend is attached to.
811
+ """
812
+ return pulumi.get(self, "lb_id")
813
+
814
+ @property
815
+ @pulumi.getter
816
+ def name(self) -> pulumi.Output[str]:
817
+ """
818
+ The ACL name. If not provided it will be randomly generated.
819
+ """
820
+ return pulumi.get(self, "name")
821
+
822
+ @property
823
+ @pulumi.getter(name="timeoutClient")
824
+ def timeout_client(self) -> pulumi.Output[Optional[str]]:
825
+ """
826
+ Maximum inactivity time on the client side. (e.g. `1s`)
827
+ """
828
+ return pulumi.get(self, "timeout_client")
829
+