cdktf-cdktf-provider-upcloud 15.8.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 (66) hide show
  1. cdktf_cdktf_provider_upcloud/__init__.py +247 -0
  2. cdktf_cdktf_provider_upcloud/_jsii/__init__.py +45 -0
  3. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@15.8.0.jsii.tgz +0 -0
  4. cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +894 -0
  5. cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +633 -0
  6. cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +384 -0
  7. cdktf_cdktf_provider_upcloud/data_upcloud_load_balancer_dns_challenge_domain/__init__.py +319 -0
  8. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_mysql_sessions/__init__.py +853 -0
  9. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +717 -0
  10. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_postgresql_sessions/__init__.py +1084 -0
  11. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_valkey_sessions/__init__.py +898 -0
  12. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_policies/__init__.py +647 -0
  13. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_regions/__init__.py +600 -0
  14. cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +1093 -0
  15. cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +725 -0
  16. cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +558 -0
  17. cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +421 -0
  18. cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +364 -0
  19. cdktf_cdktf_provider_upcloud/file_storage/__init__.py +1683 -0
  20. cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +1233 -0
  21. cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +552 -0
  22. cdktf_cdktf_provider_upcloud/gateway/__init__.py +1167 -0
  23. cdktf_cdktf_provider_upcloud/gateway_connection/__init__.py +1299 -0
  24. cdktf_cdktf_provider_upcloud/gateway_connection_tunnel/__init__.py +1357 -0
  25. cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +801 -0
  26. cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +2674 -0
  27. cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +2113 -0
  28. cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +1426 -0
  29. cdktf_cdktf_provider_upcloud/loadbalancer_backend_tls_config/__init__.py +442 -0
  30. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +633 -0
  31. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +459 -0
  32. cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +1290 -0
  33. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +11486 -0
  34. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +442 -0
  35. cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +504 -0
  36. cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +659 -0
  37. cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +633 -0
  38. cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +536 -0
  39. cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +4644 -0
  40. cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +13812 -0
  41. cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +7734 -0
  42. cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +1541 -0
  43. cdktf_cdktf_provider_upcloud/managed_database_valkey/__init__.py +3355 -0
  44. cdktf_cdktf_provider_upcloud/managed_object_storage/__init__.py +1198 -0
  45. cdktf_cdktf_provider_upcloud/managed_object_storage_bucket/__init__.py +409 -0
  46. cdktf_cdktf_provider_upcloud/managed_object_storage_custom_domain/__init__.py +446 -0
  47. cdktf_cdktf_provider_upcloud/managed_object_storage_policy/__init__.py +521 -0
  48. cdktf_cdktf_provider_upcloud/managed_object_storage_user/__init__.py +454 -0
  49. cdktf_cdktf_provider_upcloud/managed_object_storage_user_access_key/__init__.py +505 -0
  50. cdktf_cdktf_provider_upcloud/managed_object_storage_user_policy/__init__.py +485 -0
  51. cdktf_cdktf_provider_upcloud/network/__init__.py +1554 -0
  52. cdktf_cdktf_provider_upcloud/network_peering/__init__.py +1084 -0
  53. cdktf_cdktf_provider_upcloud/provider/__init__.py +544 -0
  54. cdktf_cdktf_provider_upcloud/py.typed +1 -0
  55. cdktf_cdktf_provider_upcloud/router/__init__.py +1030 -0
  56. cdktf_cdktf_provider_upcloud/server/__init__.py +4542 -0
  57. cdktf_cdktf_provider_upcloud/server_group/__init__.py +571 -0
  58. cdktf_cdktf_provider_upcloud/storage/__init__.py +1850 -0
  59. cdktf_cdktf_provider_upcloud/storage_backup/__init__.py +483 -0
  60. cdktf_cdktf_provider_upcloud/storage_template/__init__.py +478 -0
  61. cdktf_cdktf_provider_upcloud/tag/__init__.py +493 -0
  62. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/LICENSE +355 -0
  63. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/METADATA +120 -0
  64. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/RECORD +66 -0
  65. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/WHEEL +5 -0
  66. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1290 @@
1
+ r'''
2
+ # `upcloud_loadbalancer_frontend`
3
+
4
+ Refer to the Terraform Registry for docs: [`upcloud_loadbalancer_frontend`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend).
5
+ '''
6
+ from pkgutil import extend_path
7
+ __path__ = extend_path(__path__, __name__)
8
+
9
+ import abc
10
+ import builtins
11
+ import datetime
12
+ import enum
13
+ import typing
14
+
15
+ import jsii
16
+ import publication
17
+ import typing_extensions
18
+
19
+ import typeguard
20
+ from importlib.metadata import version as _metadata_package_version
21
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
22
+
23
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
24
+ if TYPEGUARD_MAJOR_VERSION <= 2:
25
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
26
+ else:
27
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
28
+ pass
29
+ else:
30
+ if TYPEGUARD_MAJOR_VERSION == 3:
31
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
32
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
33
+ else:
34
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
35
+
36
+ from .._jsii import *
37
+
38
+ import cdktf as _cdktf_9a9027ec
39
+ import constructs as _constructs_77d1e7e8
40
+
41
+
42
+ class LoadbalancerFrontend(
43
+ _cdktf_9a9027ec.TerraformResource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontend",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend upcloud_loadbalancer_frontend}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id: builtins.str,
53
+ *,
54
+ default_backend_name: builtins.str,
55
+ loadbalancer: builtins.str,
56
+ mode: builtins.str,
57
+ name: builtins.str,
58
+ port: jsii.Number,
59
+ networks: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendNetworks", typing.Dict[builtins.str, typing.Any]]]]] = None,
60
+ properties: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendProperties", typing.Dict[builtins.str, typing.Any]]]]] = None,
61
+ connection: typing.Optional[typing.Union[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.WinrmProvisionerConnection, typing.Dict[builtins.str, typing.Any]]]] = None,
62
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
63
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
64
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
65
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
66
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
67
+ provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
68
+ ) -> None:
69
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend upcloud_loadbalancer_frontend} Resource.
70
+
71
+ :param scope: The scope in which to define this construct.
72
+ :param id: The scoped construct ID. Must be unique amongst siblings in the same scope
73
+ :param default_backend_name: The name of the backend where traffic will be routed by default. The default backend can be overridden in frontend rules:: Note that the frontend resource depends on the default backend resource. Use the `name` field of a backend resource as the value for this field (like in the example above) or the `depends_on` meta argument to ensure the resources are created and destroyed in the correct order. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#default_backend_name LoadbalancerFrontend#default_backend_name}
74
+ :param loadbalancer: UUID of the load balancer to which the frontend is connected. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#loadbalancer LoadbalancerFrontend#loadbalancer}
75
+ :param mode: When load balancer operating in ``tcp`` mode it acts as a layer 4 proxy. In ``http`` mode it acts as a layer 7 proxy. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#mode LoadbalancerFrontend#mode}
76
+ :param name: The name of the frontend. Must be unique within the load balancer service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#name LoadbalancerFrontend#name}
77
+ :param port: Port to listen for incoming requests. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#port LoadbalancerFrontend#port}
78
+ :param networks: networks block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#networks LoadbalancerFrontend#networks}
79
+ :param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#properties LoadbalancerFrontend#properties}
80
+ :param connection:
81
+ :param count:
82
+ :param depends_on:
83
+ :param for_each:
84
+ :param lifecycle:
85
+ :param provider:
86
+ :param provisioners:
87
+ '''
88
+ if __debug__:
89
+ type_hints = typing.get_type_hints(_typecheckingstub__ff7fca61a93d25f4f7bfb31c0fac58b8298c00f04d5c45fe36d7eb97bad6c533)
90
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
91
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
92
+ config = LoadbalancerFrontendConfig(
93
+ default_backend_name=default_backend_name,
94
+ loadbalancer=loadbalancer,
95
+ mode=mode,
96
+ name=name,
97
+ port=port,
98
+ networks=networks,
99
+ properties=properties,
100
+ connection=connection,
101
+ count=count,
102
+ depends_on=depends_on,
103
+ for_each=for_each,
104
+ lifecycle=lifecycle,
105
+ provider=provider,
106
+ provisioners=provisioners,
107
+ )
108
+
109
+ jsii.create(self.__class__, self, [scope, id, config])
110
+
111
+ @jsii.member(jsii_name="generateConfigForImport")
112
+ @builtins.classmethod
113
+ def generate_config_for_import(
114
+ cls,
115
+ scope: _constructs_77d1e7e8.Construct,
116
+ import_to_id: builtins.str,
117
+ import_from_id: builtins.str,
118
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
119
+ ) -> _cdktf_9a9027ec.ImportableResource:
120
+ '''Generates CDKTF code for importing a LoadbalancerFrontend resource upon running "cdktf plan ".
121
+
122
+ :param scope: The scope in which to define this construct.
123
+ :param import_to_id: The construct id used in the generated config for the LoadbalancerFrontend to import.
124
+ :param import_from_id: The id of the existing LoadbalancerFrontend that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#import import section} in the documentation of this resource for the id to use
125
+ :param provider: ? Optional instance of the provider where the LoadbalancerFrontend to import is found.
126
+ '''
127
+ if __debug__:
128
+ type_hints = typing.get_type_hints(_typecheckingstub__cab6cb9f8d7fd8065b4ca301a31c842f372198f85b7b0ff2bd7b6d8dea5b12d7)
129
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
130
+ check_type(argname="argument import_to_id", value=import_to_id, expected_type=type_hints["import_to_id"])
131
+ check_type(argname="argument import_from_id", value=import_from_id, expected_type=type_hints["import_from_id"])
132
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
133
+ return typing.cast(_cdktf_9a9027ec.ImportableResource, jsii.sinvoke(cls, "generateConfigForImport", [scope, import_to_id, import_from_id, provider]))
134
+
135
+ @jsii.member(jsii_name="putNetworks")
136
+ def put_networks(
137
+ self,
138
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendNetworks", typing.Dict[builtins.str, typing.Any]]]],
139
+ ) -> None:
140
+ '''
141
+ :param value: -
142
+ '''
143
+ if __debug__:
144
+ type_hints = typing.get_type_hints(_typecheckingstub__262fc8a445f22e918aeba06d5572e0eae470264b73e44f1eb11cb01973c57a71)
145
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
146
+ return typing.cast(None, jsii.invoke(self, "putNetworks", [value]))
147
+
148
+ @jsii.member(jsii_name="putProperties")
149
+ def put_properties(
150
+ self,
151
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendProperties", typing.Dict[builtins.str, typing.Any]]]],
152
+ ) -> None:
153
+ '''
154
+ :param value: -
155
+ '''
156
+ if __debug__:
157
+ type_hints = typing.get_type_hints(_typecheckingstub__3b74bd543601e669d5e31cd7af0318d0114783ffcfaa186a5a2e1ebae6dd2b14)
158
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
159
+ return typing.cast(None, jsii.invoke(self, "putProperties", [value]))
160
+
161
+ @jsii.member(jsii_name="resetNetworks")
162
+ def reset_networks(self) -> None:
163
+ return typing.cast(None, jsii.invoke(self, "resetNetworks", []))
164
+
165
+ @jsii.member(jsii_name="resetProperties")
166
+ def reset_properties(self) -> None:
167
+ return typing.cast(None, jsii.invoke(self, "resetProperties", []))
168
+
169
+ @jsii.member(jsii_name="synthesizeAttributes")
170
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
171
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
172
+
173
+ @jsii.member(jsii_name="synthesizeHclAttributes")
174
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
175
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
176
+
177
+ @jsii.python.classproperty
178
+ @jsii.member(jsii_name="tfResourceType")
179
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
180
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
181
+
182
+ @builtins.property
183
+ @jsii.member(jsii_name="id")
184
+ def id(self) -> builtins.str:
185
+ return typing.cast(builtins.str, jsii.get(self, "id"))
186
+
187
+ @builtins.property
188
+ @jsii.member(jsii_name="networks")
189
+ def networks(self) -> "LoadbalancerFrontendNetworksList":
190
+ return typing.cast("LoadbalancerFrontendNetworksList", jsii.get(self, "networks"))
191
+
192
+ @builtins.property
193
+ @jsii.member(jsii_name="properties")
194
+ def properties(self) -> "LoadbalancerFrontendPropertiesList":
195
+ return typing.cast("LoadbalancerFrontendPropertiesList", jsii.get(self, "properties"))
196
+
197
+ @builtins.property
198
+ @jsii.member(jsii_name="rules")
199
+ def rules(self) -> typing.List[builtins.str]:
200
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "rules"))
201
+
202
+ @builtins.property
203
+ @jsii.member(jsii_name="tlsConfigs")
204
+ def tls_configs(self) -> typing.List[builtins.str]:
205
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "tlsConfigs"))
206
+
207
+ @builtins.property
208
+ @jsii.member(jsii_name="defaultBackendNameInput")
209
+ def default_backend_name_input(self) -> typing.Optional[builtins.str]:
210
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "defaultBackendNameInput"))
211
+
212
+ @builtins.property
213
+ @jsii.member(jsii_name="loadbalancerInput")
214
+ def loadbalancer_input(self) -> typing.Optional[builtins.str]:
215
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "loadbalancerInput"))
216
+
217
+ @builtins.property
218
+ @jsii.member(jsii_name="modeInput")
219
+ def mode_input(self) -> typing.Optional[builtins.str]:
220
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "modeInput"))
221
+
222
+ @builtins.property
223
+ @jsii.member(jsii_name="nameInput")
224
+ def name_input(self) -> typing.Optional[builtins.str]:
225
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
226
+
227
+ @builtins.property
228
+ @jsii.member(jsii_name="networksInput")
229
+ def networks_input(
230
+ self,
231
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendNetworks"]]]:
232
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendNetworks"]]], jsii.get(self, "networksInput"))
233
+
234
+ @builtins.property
235
+ @jsii.member(jsii_name="portInput")
236
+ def port_input(self) -> typing.Optional[jsii.Number]:
237
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "portInput"))
238
+
239
+ @builtins.property
240
+ @jsii.member(jsii_name="propertiesInput")
241
+ def properties_input(
242
+ self,
243
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendProperties"]]]:
244
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendProperties"]]], jsii.get(self, "propertiesInput"))
245
+
246
+ @builtins.property
247
+ @jsii.member(jsii_name="defaultBackendName")
248
+ def default_backend_name(self) -> builtins.str:
249
+ return typing.cast(builtins.str, jsii.get(self, "defaultBackendName"))
250
+
251
+ @default_backend_name.setter
252
+ def default_backend_name(self, value: builtins.str) -> None:
253
+ if __debug__:
254
+ type_hints = typing.get_type_hints(_typecheckingstub__a543d3dfde4c169fb4d480f40a5addfe8bfcfe92301bd5aa47069e1ede1754a7)
255
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
256
+ jsii.set(self, "defaultBackendName", value) # pyright: ignore[reportArgumentType]
257
+
258
+ @builtins.property
259
+ @jsii.member(jsii_name="loadbalancer")
260
+ def loadbalancer(self) -> builtins.str:
261
+ return typing.cast(builtins.str, jsii.get(self, "loadbalancer"))
262
+
263
+ @loadbalancer.setter
264
+ def loadbalancer(self, value: builtins.str) -> None:
265
+ if __debug__:
266
+ type_hints = typing.get_type_hints(_typecheckingstub__09b6502ee6e01a5178b2f9f1af4e5fef20dde62e67008d5426d2d29d0828ca0b)
267
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
268
+ jsii.set(self, "loadbalancer", value) # pyright: ignore[reportArgumentType]
269
+
270
+ @builtins.property
271
+ @jsii.member(jsii_name="mode")
272
+ def mode(self) -> builtins.str:
273
+ return typing.cast(builtins.str, jsii.get(self, "mode"))
274
+
275
+ @mode.setter
276
+ def mode(self, value: builtins.str) -> None:
277
+ if __debug__:
278
+ type_hints = typing.get_type_hints(_typecheckingstub__69ac53b0de65dd25ea5c2e8c78a7a931e22fb6a1ac6c2af3103d0b97067636bc)
279
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
280
+ jsii.set(self, "mode", value) # pyright: ignore[reportArgumentType]
281
+
282
+ @builtins.property
283
+ @jsii.member(jsii_name="name")
284
+ def name(self) -> builtins.str:
285
+ return typing.cast(builtins.str, jsii.get(self, "name"))
286
+
287
+ @name.setter
288
+ def name(self, value: builtins.str) -> None:
289
+ if __debug__:
290
+ type_hints = typing.get_type_hints(_typecheckingstub__679b4baf807600b0b15e54d855f5fce6cf91b5a1f3cd7e263b31ada412b6a796)
291
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
292
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
293
+
294
+ @builtins.property
295
+ @jsii.member(jsii_name="port")
296
+ def port(self) -> jsii.Number:
297
+ return typing.cast(jsii.Number, jsii.get(self, "port"))
298
+
299
+ @port.setter
300
+ def port(self, value: jsii.Number) -> None:
301
+ if __debug__:
302
+ type_hints = typing.get_type_hints(_typecheckingstub__0df2148a29bf347fc764bdfa64046a787b8cbd10319982166a6684f97baa29fc)
303
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
304
+ jsii.set(self, "port", value) # pyright: ignore[reportArgumentType]
305
+
306
+
307
+ @jsii.data_type(
308
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendConfig",
309
+ jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
310
+ name_mapping={
311
+ "connection": "connection",
312
+ "count": "count",
313
+ "depends_on": "dependsOn",
314
+ "for_each": "forEach",
315
+ "lifecycle": "lifecycle",
316
+ "provider": "provider",
317
+ "provisioners": "provisioners",
318
+ "default_backend_name": "defaultBackendName",
319
+ "loadbalancer": "loadbalancer",
320
+ "mode": "mode",
321
+ "name": "name",
322
+ "port": "port",
323
+ "networks": "networks",
324
+ "properties": "properties",
325
+ },
326
+ )
327
+ class LoadbalancerFrontendConfig(_cdktf_9a9027ec.TerraformMetaArguments):
328
+ def __init__(
329
+ self,
330
+ *,
331
+ connection: typing.Optional[typing.Union[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.WinrmProvisionerConnection, typing.Dict[builtins.str, typing.Any]]]] = None,
332
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
333
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
334
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
335
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
336
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
337
+ provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
338
+ default_backend_name: builtins.str,
339
+ loadbalancer: builtins.str,
340
+ mode: builtins.str,
341
+ name: builtins.str,
342
+ port: jsii.Number,
343
+ networks: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendNetworks", typing.Dict[builtins.str, typing.Any]]]]] = None,
344
+ properties: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["LoadbalancerFrontendProperties", typing.Dict[builtins.str, typing.Any]]]]] = None,
345
+ ) -> None:
346
+ '''
347
+ :param connection:
348
+ :param count:
349
+ :param depends_on:
350
+ :param for_each:
351
+ :param lifecycle:
352
+ :param provider:
353
+ :param provisioners:
354
+ :param default_backend_name: The name of the backend where traffic will be routed by default. The default backend can be overridden in frontend rules:: Note that the frontend resource depends on the default backend resource. Use the `name` field of a backend resource as the value for this field (like in the example above) or the `depends_on` meta argument to ensure the resources are created and destroyed in the correct order. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#default_backend_name LoadbalancerFrontend#default_backend_name}
355
+ :param loadbalancer: UUID of the load balancer to which the frontend is connected. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#loadbalancer LoadbalancerFrontend#loadbalancer}
356
+ :param mode: When load balancer operating in ``tcp`` mode it acts as a layer 4 proxy. In ``http`` mode it acts as a layer 7 proxy. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#mode LoadbalancerFrontend#mode}
357
+ :param name: The name of the frontend. Must be unique within the load balancer service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#name LoadbalancerFrontend#name}
358
+ :param port: Port to listen for incoming requests. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#port LoadbalancerFrontend#port}
359
+ :param networks: networks block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#networks LoadbalancerFrontend#networks}
360
+ :param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#properties LoadbalancerFrontend#properties}
361
+ '''
362
+ if isinstance(lifecycle, dict):
363
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
364
+ if __debug__:
365
+ type_hints = typing.get_type_hints(_typecheckingstub__a5c160455f31abc675bbfa01a0c745e32128dade0ae3da40272c6dcdc62021f9)
366
+ check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
367
+ check_type(argname="argument count", value=count, expected_type=type_hints["count"])
368
+ check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
369
+ check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
370
+ check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
371
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
372
+ check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
373
+ check_type(argname="argument default_backend_name", value=default_backend_name, expected_type=type_hints["default_backend_name"])
374
+ check_type(argname="argument loadbalancer", value=loadbalancer, expected_type=type_hints["loadbalancer"])
375
+ check_type(argname="argument mode", value=mode, expected_type=type_hints["mode"])
376
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
377
+ check_type(argname="argument port", value=port, expected_type=type_hints["port"])
378
+ check_type(argname="argument networks", value=networks, expected_type=type_hints["networks"])
379
+ check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
380
+ self._values: typing.Dict[builtins.str, typing.Any] = {
381
+ "default_backend_name": default_backend_name,
382
+ "loadbalancer": loadbalancer,
383
+ "mode": mode,
384
+ "name": name,
385
+ "port": port,
386
+ }
387
+ if connection is not None:
388
+ self._values["connection"] = connection
389
+ if count is not None:
390
+ self._values["count"] = count
391
+ if depends_on is not None:
392
+ self._values["depends_on"] = depends_on
393
+ if for_each is not None:
394
+ self._values["for_each"] = for_each
395
+ if lifecycle is not None:
396
+ self._values["lifecycle"] = lifecycle
397
+ if provider is not None:
398
+ self._values["provider"] = provider
399
+ if provisioners is not None:
400
+ self._values["provisioners"] = provisioners
401
+ if networks is not None:
402
+ self._values["networks"] = networks
403
+ if properties is not None:
404
+ self._values["properties"] = properties
405
+
406
+ @builtins.property
407
+ def connection(
408
+ self,
409
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
410
+ '''
411
+ :stability: experimental
412
+ '''
413
+ result = self._values.get("connection")
414
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
415
+
416
+ @builtins.property
417
+ def count(
418
+ self,
419
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
420
+ '''
421
+ :stability: experimental
422
+ '''
423
+ result = self._values.get("count")
424
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
425
+
426
+ @builtins.property
427
+ def depends_on(
428
+ self,
429
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
430
+ '''
431
+ :stability: experimental
432
+ '''
433
+ result = self._values.get("depends_on")
434
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
435
+
436
+ @builtins.property
437
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
438
+ '''
439
+ :stability: experimental
440
+ '''
441
+ result = self._values.get("for_each")
442
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
443
+
444
+ @builtins.property
445
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
446
+ '''
447
+ :stability: experimental
448
+ '''
449
+ result = self._values.get("lifecycle")
450
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
451
+
452
+ @builtins.property
453
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
454
+ '''
455
+ :stability: experimental
456
+ '''
457
+ result = self._values.get("provider")
458
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
459
+
460
+ @builtins.property
461
+ def provisioners(
462
+ self,
463
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
464
+ '''
465
+ :stability: experimental
466
+ '''
467
+ result = self._values.get("provisioners")
468
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
469
+
470
+ @builtins.property
471
+ def default_backend_name(self) -> builtins.str:
472
+ '''The name of the backend where traffic will be routed by default.
473
+
474
+ The default backend can be overridden in frontend rules::
475
+
476
+ Note that the frontend resource depends on the default backend resource. Use the `name` field of a backend resource as the value for this field (like in the example above) or the `depends_on` meta argument to ensure the resources are created and destroyed in the correct order.
477
+
478
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#default_backend_name LoadbalancerFrontend#default_backend_name}
479
+ '''
480
+ result = self._values.get("default_backend_name")
481
+ assert result is not None, "Required property 'default_backend_name' is missing"
482
+ return typing.cast(builtins.str, result)
483
+
484
+ @builtins.property
485
+ def loadbalancer(self) -> builtins.str:
486
+ '''UUID of the load balancer to which the frontend is connected.
487
+
488
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#loadbalancer LoadbalancerFrontend#loadbalancer}
489
+ '''
490
+ result = self._values.get("loadbalancer")
491
+ assert result is not None, "Required property 'loadbalancer' is missing"
492
+ return typing.cast(builtins.str, result)
493
+
494
+ @builtins.property
495
+ def mode(self) -> builtins.str:
496
+ '''When load balancer operating in ``tcp`` mode it acts as a layer 4 proxy.
497
+
498
+ In ``http`` mode it acts as a layer 7 proxy.
499
+
500
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#mode LoadbalancerFrontend#mode}
501
+ '''
502
+ result = self._values.get("mode")
503
+ assert result is not None, "Required property 'mode' is missing"
504
+ return typing.cast(builtins.str, result)
505
+
506
+ @builtins.property
507
+ def name(self) -> builtins.str:
508
+ '''The name of the frontend. Must be unique within the load balancer service.
509
+
510
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#name LoadbalancerFrontend#name}
511
+ '''
512
+ result = self._values.get("name")
513
+ assert result is not None, "Required property 'name' is missing"
514
+ return typing.cast(builtins.str, result)
515
+
516
+ @builtins.property
517
+ def port(self) -> jsii.Number:
518
+ '''Port to listen for incoming requests.
519
+
520
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#port LoadbalancerFrontend#port}
521
+ '''
522
+ result = self._values.get("port")
523
+ assert result is not None, "Required property 'port' is missing"
524
+ return typing.cast(jsii.Number, result)
525
+
526
+ @builtins.property
527
+ def networks(
528
+ self,
529
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendNetworks"]]]:
530
+ '''networks block.
531
+
532
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#networks LoadbalancerFrontend#networks}
533
+ '''
534
+ result = self._values.get("networks")
535
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendNetworks"]]], result)
536
+
537
+ @builtins.property
538
+ def properties(
539
+ self,
540
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendProperties"]]]:
541
+ '''properties block.
542
+
543
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#properties LoadbalancerFrontend#properties}
544
+ '''
545
+ result = self._values.get("properties")
546
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["LoadbalancerFrontendProperties"]]], result)
547
+
548
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
549
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
550
+
551
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
552
+ return not (rhs == self)
553
+
554
+ def __repr__(self) -> str:
555
+ return "LoadbalancerFrontendConfig(%s)" % ", ".join(
556
+ k + "=" + repr(v) for k, v in self._values.items()
557
+ )
558
+
559
+
560
+ @jsii.data_type(
561
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendNetworks",
562
+ jsii_struct_bases=[],
563
+ name_mapping={"name": "name"},
564
+ )
565
+ class LoadbalancerFrontendNetworks:
566
+ def __init__(self, *, name: builtins.str) -> None:
567
+ '''
568
+ :param name: Name of the load balancer network. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#name LoadbalancerFrontend#name}
569
+ '''
570
+ if __debug__:
571
+ type_hints = typing.get_type_hints(_typecheckingstub__4b5de0eee12d20bee80ecff19c3c7a8b98570776dbf9471d6c66a7429e1db143)
572
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
573
+ self._values: typing.Dict[builtins.str, typing.Any] = {
574
+ "name": name,
575
+ }
576
+
577
+ @builtins.property
578
+ def name(self) -> builtins.str:
579
+ '''Name of the load balancer network.
580
+
581
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#name LoadbalancerFrontend#name}
582
+ '''
583
+ result = self._values.get("name")
584
+ assert result is not None, "Required property 'name' is missing"
585
+ return typing.cast(builtins.str, result)
586
+
587
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
588
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
589
+
590
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
591
+ return not (rhs == self)
592
+
593
+ def __repr__(self) -> str:
594
+ return "LoadbalancerFrontendNetworks(%s)" % ", ".join(
595
+ k + "=" + repr(v) for k, v in self._values.items()
596
+ )
597
+
598
+
599
+ class LoadbalancerFrontendNetworksList(
600
+ _cdktf_9a9027ec.ComplexList,
601
+ metaclass=jsii.JSIIMeta,
602
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendNetworksList",
603
+ ):
604
+ def __init__(
605
+ self,
606
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
607
+ terraform_attribute: builtins.str,
608
+ wraps_set: builtins.bool,
609
+ ) -> None:
610
+ '''
611
+ :param terraform_resource: The parent resource.
612
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
613
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
614
+ '''
615
+ if __debug__:
616
+ type_hints = typing.get_type_hints(_typecheckingstub__7a1259816c72b0dc0e352095798f6e8c2a174cbcdfc618a6cf3b8fe83955c405)
617
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
618
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
619
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
620
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
621
+
622
+ @jsii.member(jsii_name="get")
623
+ def get(self, index: jsii.Number) -> "LoadbalancerFrontendNetworksOutputReference":
624
+ '''
625
+ :param index: the index of the item to return.
626
+ '''
627
+ if __debug__:
628
+ type_hints = typing.get_type_hints(_typecheckingstub__8a324160dc278d21937fc03d45e09d3100d59f072e35faf16fb80f40c5027d77)
629
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
630
+ return typing.cast("LoadbalancerFrontendNetworksOutputReference", jsii.invoke(self, "get", [index]))
631
+
632
+ @builtins.property
633
+ @jsii.member(jsii_name="terraformAttribute")
634
+ def _terraform_attribute(self) -> builtins.str:
635
+ '''The attribute on the parent resource this class is referencing.'''
636
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
637
+
638
+ @_terraform_attribute.setter
639
+ def _terraform_attribute(self, value: builtins.str) -> None:
640
+ if __debug__:
641
+ type_hints = typing.get_type_hints(_typecheckingstub__a0f901f16bd3ff0853599c9e3f05a783a900e9e4bc6091afc14c70a58b183f87)
642
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
643
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
644
+
645
+ @builtins.property
646
+ @jsii.member(jsii_name="terraformResource")
647
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
648
+ '''The parent resource.'''
649
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
650
+
651
+ @_terraform_resource.setter
652
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
653
+ if __debug__:
654
+ type_hints = typing.get_type_hints(_typecheckingstub__8ffa0081add61648565bf064622221bcfde9e6ed5c0f46f4b679a66b9c706e5f)
655
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
656
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
657
+
658
+ @builtins.property
659
+ @jsii.member(jsii_name="wrapsSet")
660
+ def _wraps_set(self) -> builtins.bool:
661
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
662
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
663
+
664
+ @_wraps_set.setter
665
+ def _wraps_set(self, value: builtins.bool) -> None:
666
+ if __debug__:
667
+ type_hints = typing.get_type_hints(_typecheckingstub__653ad777a06e46145bc0cac3aeda218ce786144088c76524ceba8462758db381)
668
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
669
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
670
+
671
+ @builtins.property
672
+ @jsii.member(jsii_name="internalValue")
673
+ def internal_value(
674
+ self,
675
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendNetworks]]]:
676
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendNetworks]]], jsii.get(self, "internalValue"))
677
+
678
+ @internal_value.setter
679
+ def internal_value(
680
+ self,
681
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendNetworks]]],
682
+ ) -> None:
683
+ if __debug__:
684
+ type_hints = typing.get_type_hints(_typecheckingstub__9c233f34d38addeaf1f6579b713ecd7ec2cbc662ec9462ed5c616e0a31594863)
685
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
686
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
687
+
688
+
689
+ class LoadbalancerFrontendNetworksOutputReference(
690
+ _cdktf_9a9027ec.ComplexObject,
691
+ metaclass=jsii.JSIIMeta,
692
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendNetworksOutputReference",
693
+ ):
694
+ def __init__(
695
+ self,
696
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
697
+ terraform_attribute: builtins.str,
698
+ complex_object_index: jsii.Number,
699
+ complex_object_is_from_set: builtins.bool,
700
+ ) -> None:
701
+ '''
702
+ :param terraform_resource: The parent resource.
703
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
704
+ :param complex_object_index: the index of this item in the list.
705
+ :param complex_object_is_from_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
706
+ '''
707
+ if __debug__:
708
+ type_hints = typing.get_type_hints(_typecheckingstub__9c94d14f34405863655042870c630ab5b3e3a694a4fef46283b9970f35b19191)
709
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
710
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
711
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
712
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
713
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
714
+
715
+ @builtins.property
716
+ @jsii.member(jsii_name="nameInput")
717
+ def name_input(self) -> typing.Optional[builtins.str]:
718
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
719
+
720
+ @builtins.property
721
+ @jsii.member(jsii_name="name")
722
+ def name(self) -> builtins.str:
723
+ return typing.cast(builtins.str, jsii.get(self, "name"))
724
+
725
+ @name.setter
726
+ def name(self, value: builtins.str) -> None:
727
+ if __debug__:
728
+ type_hints = typing.get_type_hints(_typecheckingstub__c76200e83a20edc9ac07ae0a1d6863161031362437bb891cdbea8c5855c8e0ee)
729
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
730
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
731
+
732
+ @builtins.property
733
+ @jsii.member(jsii_name="internalValue")
734
+ def internal_value(
735
+ self,
736
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendNetworks]]:
737
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendNetworks]], jsii.get(self, "internalValue"))
738
+
739
+ @internal_value.setter
740
+ def internal_value(
741
+ self,
742
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendNetworks]],
743
+ ) -> None:
744
+ if __debug__:
745
+ type_hints = typing.get_type_hints(_typecheckingstub__633ce62a1bcdb910161a92b7a57d7f65b824215cfbca2afbded25d6a2557d3bc)
746
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
747
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
748
+
749
+
750
+ @jsii.data_type(
751
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendProperties",
752
+ jsii_struct_bases=[],
753
+ name_mapping={
754
+ "http2_enabled": "http2Enabled",
755
+ "inbound_proxy_protocol": "inboundProxyProtocol",
756
+ "timeout_client": "timeoutClient",
757
+ },
758
+ )
759
+ class LoadbalancerFrontendProperties:
760
+ def __init__(
761
+ self,
762
+ *,
763
+ http2_enabled: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
764
+ inbound_proxy_protocol: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
765
+ timeout_client: typing.Optional[jsii.Number] = None,
766
+ ) -> None:
767
+ '''
768
+ :param http2_enabled: Enable or disable HTTP/2 support. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#http2_enabled LoadbalancerFrontend#http2_enabled}
769
+ :param inbound_proxy_protocol: Enable or disable inbound proxy protocol support. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#inbound_proxy_protocol LoadbalancerFrontend#inbound_proxy_protocol}
770
+ :param timeout_client: Client request timeout in seconds. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#timeout_client LoadbalancerFrontend#timeout_client}
771
+ '''
772
+ if __debug__:
773
+ type_hints = typing.get_type_hints(_typecheckingstub__381cd7832d4c22c91ea769f6733eed4a776516c95a54ba5e691530b99cbe8b97)
774
+ check_type(argname="argument http2_enabled", value=http2_enabled, expected_type=type_hints["http2_enabled"])
775
+ check_type(argname="argument inbound_proxy_protocol", value=inbound_proxy_protocol, expected_type=type_hints["inbound_proxy_protocol"])
776
+ check_type(argname="argument timeout_client", value=timeout_client, expected_type=type_hints["timeout_client"])
777
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
778
+ if http2_enabled is not None:
779
+ self._values["http2_enabled"] = http2_enabled
780
+ if inbound_proxy_protocol is not None:
781
+ self._values["inbound_proxy_protocol"] = inbound_proxy_protocol
782
+ if timeout_client is not None:
783
+ self._values["timeout_client"] = timeout_client
784
+
785
+ @builtins.property
786
+ def http2_enabled(
787
+ self,
788
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
789
+ '''Enable or disable HTTP/2 support.
790
+
791
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#http2_enabled LoadbalancerFrontend#http2_enabled}
792
+ '''
793
+ result = self._values.get("http2_enabled")
794
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
795
+
796
+ @builtins.property
797
+ def inbound_proxy_protocol(
798
+ self,
799
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
800
+ '''Enable or disable inbound proxy protocol support.
801
+
802
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#inbound_proxy_protocol LoadbalancerFrontend#inbound_proxy_protocol}
803
+ '''
804
+ result = self._values.get("inbound_proxy_protocol")
805
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
806
+
807
+ @builtins.property
808
+ def timeout_client(self) -> typing.Optional[jsii.Number]:
809
+ '''Client request timeout in seconds.
810
+
811
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/loadbalancer_frontend#timeout_client LoadbalancerFrontend#timeout_client}
812
+ '''
813
+ result = self._values.get("timeout_client")
814
+ return typing.cast(typing.Optional[jsii.Number], result)
815
+
816
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
817
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
818
+
819
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
820
+ return not (rhs == self)
821
+
822
+ def __repr__(self) -> str:
823
+ return "LoadbalancerFrontendProperties(%s)" % ", ".join(
824
+ k + "=" + repr(v) for k, v in self._values.items()
825
+ )
826
+
827
+
828
+ class LoadbalancerFrontendPropertiesList(
829
+ _cdktf_9a9027ec.ComplexList,
830
+ metaclass=jsii.JSIIMeta,
831
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendPropertiesList",
832
+ ):
833
+ def __init__(
834
+ self,
835
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
836
+ terraform_attribute: builtins.str,
837
+ wraps_set: builtins.bool,
838
+ ) -> None:
839
+ '''
840
+ :param terraform_resource: The parent resource.
841
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
842
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
843
+ '''
844
+ if __debug__:
845
+ type_hints = typing.get_type_hints(_typecheckingstub__cbd3c1cf869acb46cb3e9f96a208f91d04d54568cb08c32eee8a006004296031)
846
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
847
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
848
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
849
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
850
+
851
+ @jsii.member(jsii_name="get")
852
+ def get(
853
+ self,
854
+ index: jsii.Number,
855
+ ) -> "LoadbalancerFrontendPropertiesOutputReference":
856
+ '''
857
+ :param index: the index of the item to return.
858
+ '''
859
+ if __debug__:
860
+ type_hints = typing.get_type_hints(_typecheckingstub__97b0b08f8ff38a4f1bd3db9138a2d2a27edae804a04b7554b1ef75ef3eba06cf)
861
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
862
+ return typing.cast("LoadbalancerFrontendPropertiesOutputReference", jsii.invoke(self, "get", [index]))
863
+
864
+ @builtins.property
865
+ @jsii.member(jsii_name="terraformAttribute")
866
+ def _terraform_attribute(self) -> builtins.str:
867
+ '''The attribute on the parent resource this class is referencing.'''
868
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
869
+
870
+ @_terraform_attribute.setter
871
+ def _terraform_attribute(self, value: builtins.str) -> None:
872
+ if __debug__:
873
+ type_hints = typing.get_type_hints(_typecheckingstub__74cb9d02e453c5c90926e673e6fbe10deda28317b42a54cca3151eac7cd23535)
874
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
875
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
876
+
877
+ @builtins.property
878
+ @jsii.member(jsii_name="terraformResource")
879
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
880
+ '''The parent resource.'''
881
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
882
+
883
+ @_terraform_resource.setter
884
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
885
+ if __debug__:
886
+ type_hints = typing.get_type_hints(_typecheckingstub__80a95d4e90406caf1303657d6de7f2c4677da861ed2d33eec7113253b4c5ba17)
887
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
888
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
889
+
890
+ @builtins.property
891
+ @jsii.member(jsii_name="wrapsSet")
892
+ def _wraps_set(self) -> builtins.bool:
893
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
894
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
895
+
896
+ @_wraps_set.setter
897
+ def _wraps_set(self, value: builtins.bool) -> None:
898
+ if __debug__:
899
+ type_hints = typing.get_type_hints(_typecheckingstub__003d38a25e0644e8afc78adac6de595f35bcb6813bbb165ff8c8d04c810a25cc)
900
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
901
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
902
+
903
+ @builtins.property
904
+ @jsii.member(jsii_name="internalValue")
905
+ def internal_value(
906
+ self,
907
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendProperties]]]:
908
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendProperties]]], jsii.get(self, "internalValue"))
909
+
910
+ @internal_value.setter
911
+ def internal_value(
912
+ self,
913
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendProperties]]],
914
+ ) -> None:
915
+ if __debug__:
916
+ type_hints = typing.get_type_hints(_typecheckingstub__c4f3d528cf18bc69cc9159a685d062812d457aa5679fc9eeb6267fd3e285363d)
917
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
918
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
919
+
920
+
921
+ class LoadbalancerFrontendPropertiesOutputReference(
922
+ _cdktf_9a9027ec.ComplexObject,
923
+ metaclass=jsii.JSIIMeta,
924
+ jsii_type="@cdktf/provider-upcloud.loadbalancerFrontend.LoadbalancerFrontendPropertiesOutputReference",
925
+ ):
926
+ def __init__(
927
+ self,
928
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
929
+ terraform_attribute: builtins.str,
930
+ complex_object_index: jsii.Number,
931
+ complex_object_is_from_set: builtins.bool,
932
+ ) -> None:
933
+ '''
934
+ :param terraform_resource: The parent resource.
935
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
936
+ :param complex_object_index: the index of this item in the list.
937
+ :param complex_object_is_from_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
938
+ '''
939
+ if __debug__:
940
+ type_hints = typing.get_type_hints(_typecheckingstub__60c1ecef92234266b7062bb519d88bfa3221c49ea854a91fd8cf1d3c6b3c2d62)
941
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
942
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
943
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
944
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
945
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
946
+
947
+ @jsii.member(jsii_name="resetHttp2Enabled")
948
+ def reset_http2_enabled(self) -> None:
949
+ return typing.cast(None, jsii.invoke(self, "resetHttp2Enabled", []))
950
+
951
+ @jsii.member(jsii_name="resetInboundProxyProtocol")
952
+ def reset_inbound_proxy_protocol(self) -> None:
953
+ return typing.cast(None, jsii.invoke(self, "resetInboundProxyProtocol", []))
954
+
955
+ @jsii.member(jsii_name="resetTimeoutClient")
956
+ def reset_timeout_client(self) -> None:
957
+ return typing.cast(None, jsii.invoke(self, "resetTimeoutClient", []))
958
+
959
+ @builtins.property
960
+ @jsii.member(jsii_name="http2EnabledInput")
961
+ def http2_enabled_input(
962
+ self,
963
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
964
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "http2EnabledInput"))
965
+
966
+ @builtins.property
967
+ @jsii.member(jsii_name="inboundProxyProtocolInput")
968
+ def inbound_proxy_protocol_input(
969
+ self,
970
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
971
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "inboundProxyProtocolInput"))
972
+
973
+ @builtins.property
974
+ @jsii.member(jsii_name="timeoutClientInput")
975
+ def timeout_client_input(self) -> typing.Optional[jsii.Number]:
976
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "timeoutClientInput"))
977
+
978
+ @builtins.property
979
+ @jsii.member(jsii_name="http2Enabled")
980
+ def http2_enabled(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
981
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "http2Enabled"))
982
+
983
+ @http2_enabled.setter
984
+ def http2_enabled(
985
+ self,
986
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
987
+ ) -> None:
988
+ if __debug__:
989
+ type_hints = typing.get_type_hints(_typecheckingstub__0088b6ac3698d5f6027d7695ebdf991ae1b06139978192b7e395ced53e8cca2a)
990
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
991
+ jsii.set(self, "http2Enabled", value) # pyright: ignore[reportArgumentType]
992
+
993
+ @builtins.property
994
+ @jsii.member(jsii_name="inboundProxyProtocol")
995
+ def inbound_proxy_protocol(
996
+ self,
997
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
998
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "inboundProxyProtocol"))
999
+
1000
+ @inbound_proxy_protocol.setter
1001
+ def inbound_proxy_protocol(
1002
+ self,
1003
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
1004
+ ) -> None:
1005
+ if __debug__:
1006
+ type_hints = typing.get_type_hints(_typecheckingstub__52e1052bd0fc18dbdf35242c0850b49ae0629e0df3e02a60bd491c05ab0ddfb0)
1007
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1008
+ jsii.set(self, "inboundProxyProtocol", value) # pyright: ignore[reportArgumentType]
1009
+
1010
+ @builtins.property
1011
+ @jsii.member(jsii_name="timeoutClient")
1012
+ def timeout_client(self) -> jsii.Number:
1013
+ return typing.cast(jsii.Number, jsii.get(self, "timeoutClient"))
1014
+
1015
+ @timeout_client.setter
1016
+ def timeout_client(self, value: jsii.Number) -> None:
1017
+ if __debug__:
1018
+ type_hints = typing.get_type_hints(_typecheckingstub__89d0a9a2f34f452adb96b0acb964ddb42cdde1f8ab2566673fc3ca4b303e6094)
1019
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1020
+ jsii.set(self, "timeoutClient", value) # pyright: ignore[reportArgumentType]
1021
+
1022
+ @builtins.property
1023
+ @jsii.member(jsii_name="internalValue")
1024
+ def internal_value(
1025
+ self,
1026
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendProperties]]:
1027
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendProperties]], jsii.get(self, "internalValue"))
1028
+
1029
+ @internal_value.setter
1030
+ def internal_value(
1031
+ self,
1032
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendProperties]],
1033
+ ) -> None:
1034
+ if __debug__:
1035
+ type_hints = typing.get_type_hints(_typecheckingstub__918caacfb00c254b043b27b148cc5504c1522bbde995792e7edfa97fe0990ea4)
1036
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1037
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
1038
+
1039
+
1040
+ __all__ = [
1041
+ "LoadbalancerFrontend",
1042
+ "LoadbalancerFrontendConfig",
1043
+ "LoadbalancerFrontendNetworks",
1044
+ "LoadbalancerFrontendNetworksList",
1045
+ "LoadbalancerFrontendNetworksOutputReference",
1046
+ "LoadbalancerFrontendProperties",
1047
+ "LoadbalancerFrontendPropertiesList",
1048
+ "LoadbalancerFrontendPropertiesOutputReference",
1049
+ ]
1050
+
1051
+ publication.publish()
1052
+
1053
+ def _typecheckingstub__ff7fca61a93d25f4f7bfb31c0fac58b8298c00f04d5c45fe36d7eb97bad6c533(
1054
+ scope: _constructs_77d1e7e8.Construct,
1055
+ id: builtins.str,
1056
+ *,
1057
+ default_backend_name: builtins.str,
1058
+ loadbalancer: builtins.str,
1059
+ mode: builtins.str,
1060
+ name: builtins.str,
1061
+ port: jsii.Number,
1062
+ networks: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendNetworks, typing.Dict[builtins.str, typing.Any]]]]] = None,
1063
+ properties: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendProperties, typing.Dict[builtins.str, typing.Any]]]]] = None,
1064
+ connection: typing.Optional[typing.Union[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.WinrmProvisionerConnection, typing.Dict[builtins.str, typing.Any]]]] = None,
1065
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
1066
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
1067
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
1068
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
1069
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1070
+ provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
1071
+ ) -> None:
1072
+ """Type checking stubs"""
1073
+ pass
1074
+
1075
+ def _typecheckingstub__cab6cb9f8d7fd8065b4ca301a31c842f372198f85b7b0ff2bd7b6d8dea5b12d7(
1076
+ scope: _constructs_77d1e7e8.Construct,
1077
+ import_to_id: builtins.str,
1078
+ import_from_id: builtins.str,
1079
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1080
+ ) -> None:
1081
+ """Type checking stubs"""
1082
+ pass
1083
+
1084
+ def _typecheckingstub__262fc8a445f22e918aeba06d5572e0eae470264b73e44f1eb11cb01973c57a71(
1085
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendNetworks, typing.Dict[builtins.str, typing.Any]]]],
1086
+ ) -> None:
1087
+ """Type checking stubs"""
1088
+ pass
1089
+
1090
+ def _typecheckingstub__3b74bd543601e669d5e31cd7af0318d0114783ffcfaa186a5a2e1ebae6dd2b14(
1091
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendProperties, typing.Dict[builtins.str, typing.Any]]]],
1092
+ ) -> None:
1093
+ """Type checking stubs"""
1094
+ pass
1095
+
1096
+ def _typecheckingstub__a543d3dfde4c169fb4d480f40a5addfe8bfcfe92301bd5aa47069e1ede1754a7(
1097
+ value: builtins.str,
1098
+ ) -> None:
1099
+ """Type checking stubs"""
1100
+ pass
1101
+
1102
+ def _typecheckingstub__09b6502ee6e01a5178b2f9f1af4e5fef20dde62e67008d5426d2d29d0828ca0b(
1103
+ value: builtins.str,
1104
+ ) -> None:
1105
+ """Type checking stubs"""
1106
+ pass
1107
+
1108
+ def _typecheckingstub__69ac53b0de65dd25ea5c2e8c78a7a931e22fb6a1ac6c2af3103d0b97067636bc(
1109
+ value: builtins.str,
1110
+ ) -> None:
1111
+ """Type checking stubs"""
1112
+ pass
1113
+
1114
+ def _typecheckingstub__679b4baf807600b0b15e54d855f5fce6cf91b5a1f3cd7e263b31ada412b6a796(
1115
+ value: builtins.str,
1116
+ ) -> None:
1117
+ """Type checking stubs"""
1118
+ pass
1119
+
1120
+ def _typecheckingstub__0df2148a29bf347fc764bdfa64046a787b8cbd10319982166a6684f97baa29fc(
1121
+ value: jsii.Number,
1122
+ ) -> None:
1123
+ """Type checking stubs"""
1124
+ pass
1125
+
1126
+ def _typecheckingstub__a5c160455f31abc675bbfa01a0c745e32128dade0ae3da40272c6dcdc62021f9(
1127
+ *,
1128
+ connection: typing.Optional[typing.Union[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.WinrmProvisionerConnection, typing.Dict[builtins.str, typing.Any]]]] = None,
1129
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
1130
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
1131
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
1132
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
1133
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1134
+ provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
1135
+ default_backend_name: builtins.str,
1136
+ loadbalancer: builtins.str,
1137
+ mode: builtins.str,
1138
+ name: builtins.str,
1139
+ port: jsii.Number,
1140
+ networks: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendNetworks, typing.Dict[builtins.str, typing.Any]]]]] = None,
1141
+ properties: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[LoadbalancerFrontendProperties, typing.Dict[builtins.str, typing.Any]]]]] = None,
1142
+ ) -> None:
1143
+ """Type checking stubs"""
1144
+ pass
1145
+
1146
+ def _typecheckingstub__4b5de0eee12d20bee80ecff19c3c7a8b98570776dbf9471d6c66a7429e1db143(
1147
+ *,
1148
+ name: builtins.str,
1149
+ ) -> None:
1150
+ """Type checking stubs"""
1151
+ pass
1152
+
1153
+ def _typecheckingstub__7a1259816c72b0dc0e352095798f6e8c2a174cbcdfc618a6cf3b8fe83955c405(
1154
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1155
+ terraform_attribute: builtins.str,
1156
+ wraps_set: builtins.bool,
1157
+ ) -> None:
1158
+ """Type checking stubs"""
1159
+ pass
1160
+
1161
+ def _typecheckingstub__8a324160dc278d21937fc03d45e09d3100d59f072e35faf16fb80f40c5027d77(
1162
+ index: jsii.Number,
1163
+ ) -> None:
1164
+ """Type checking stubs"""
1165
+ pass
1166
+
1167
+ def _typecheckingstub__a0f901f16bd3ff0853599c9e3f05a783a900e9e4bc6091afc14c70a58b183f87(
1168
+ value: builtins.str,
1169
+ ) -> None:
1170
+ """Type checking stubs"""
1171
+ pass
1172
+
1173
+ def _typecheckingstub__8ffa0081add61648565bf064622221bcfde9e6ed5c0f46f4b679a66b9c706e5f(
1174
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1175
+ ) -> None:
1176
+ """Type checking stubs"""
1177
+ pass
1178
+
1179
+ def _typecheckingstub__653ad777a06e46145bc0cac3aeda218ce786144088c76524ceba8462758db381(
1180
+ value: builtins.bool,
1181
+ ) -> None:
1182
+ """Type checking stubs"""
1183
+ pass
1184
+
1185
+ def _typecheckingstub__9c233f34d38addeaf1f6579b713ecd7ec2cbc662ec9462ed5c616e0a31594863(
1186
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendNetworks]]],
1187
+ ) -> None:
1188
+ """Type checking stubs"""
1189
+ pass
1190
+
1191
+ def _typecheckingstub__9c94d14f34405863655042870c630ab5b3e3a694a4fef46283b9970f35b19191(
1192
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1193
+ terraform_attribute: builtins.str,
1194
+ complex_object_index: jsii.Number,
1195
+ complex_object_is_from_set: builtins.bool,
1196
+ ) -> None:
1197
+ """Type checking stubs"""
1198
+ pass
1199
+
1200
+ def _typecheckingstub__c76200e83a20edc9ac07ae0a1d6863161031362437bb891cdbea8c5855c8e0ee(
1201
+ value: builtins.str,
1202
+ ) -> None:
1203
+ """Type checking stubs"""
1204
+ pass
1205
+
1206
+ def _typecheckingstub__633ce62a1bcdb910161a92b7a57d7f65b824215cfbca2afbded25d6a2557d3bc(
1207
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendNetworks]],
1208
+ ) -> None:
1209
+ """Type checking stubs"""
1210
+ pass
1211
+
1212
+ def _typecheckingstub__381cd7832d4c22c91ea769f6733eed4a776516c95a54ba5e691530b99cbe8b97(
1213
+ *,
1214
+ http2_enabled: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1215
+ inbound_proxy_protocol: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1216
+ timeout_client: typing.Optional[jsii.Number] = None,
1217
+ ) -> None:
1218
+ """Type checking stubs"""
1219
+ pass
1220
+
1221
+ def _typecheckingstub__cbd3c1cf869acb46cb3e9f96a208f91d04d54568cb08c32eee8a006004296031(
1222
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1223
+ terraform_attribute: builtins.str,
1224
+ wraps_set: builtins.bool,
1225
+ ) -> None:
1226
+ """Type checking stubs"""
1227
+ pass
1228
+
1229
+ def _typecheckingstub__97b0b08f8ff38a4f1bd3db9138a2d2a27edae804a04b7554b1ef75ef3eba06cf(
1230
+ index: jsii.Number,
1231
+ ) -> None:
1232
+ """Type checking stubs"""
1233
+ pass
1234
+
1235
+ def _typecheckingstub__74cb9d02e453c5c90926e673e6fbe10deda28317b42a54cca3151eac7cd23535(
1236
+ value: builtins.str,
1237
+ ) -> None:
1238
+ """Type checking stubs"""
1239
+ pass
1240
+
1241
+ def _typecheckingstub__80a95d4e90406caf1303657d6de7f2c4677da861ed2d33eec7113253b4c5ba17(
1242
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1243
+ ) -> None:
1244
+ """Type checking stubs"""
1245
+ pass
1246
+
1247
+ def _typecheckingstub__003d38a25e0644e8afc78adac6de595f35bcb6813bbb165ff8c8d04c810a25cc(
1248
+ value: builtins.bool,
1249
+ ) -> None:
1250
+ """Type checking stubs"""
1251
+ pass
1252
+
1253
+ def _typecheckingstub__c4f3d528cf18bc69cc9159a685d062812d457aa5679fc9eeb6267fd3e285363d(
1254
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[LoadbalancerFrontendProperties]]],
1255
+ ) -> None:
1256
+ """Type checking stubs"""
1257
+ pass
1258
+
1259
+ def _typecheckingstub__60c1ecef92234266b7062bb519d88bfa3221c49ea854a91fd8cf1d3c6b3c2d62(
1260
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1261
+ terraform_attribute: builtins.str,
1262
+ complex_object_index: jsii.Number,
1263
+ complex_object_is_from_set: builtins.bool,
1264
+ ) -> None:
1265
+ """Type checking stubs"""
1266
+ pass
1267
+
1268
+ def _typecheckingstub__0088b6ac3698d5f6027d7695ebdf991ae1b06139978192b7e395ced53e8cca2a(
1269
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
1270
+ ) -> None:
1271
+ """Type checking stubs"""
1272
+ pass
1273
+
1274
+ def _typecheckingstub__52e1052bd0fc18dbdf35242c0850b49ae0629e0df3e02a60bd491c05ab0ddfb0(
1275
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
1276
+ ) -> None:
1277
+ """Type checking stubs"""
1278
+ pass
1279
+
1280
+ def _typecheckingstub__89d0a9a2f34f452adb96b0acb964ddb42cdde1f8ab2566673fc3ca4b303e6094(
1281
+ value: jsii.Number,
1282
+ ) -> None:
1283
+ """Type checking stubs"""
1284
+ pass
1285
+
1286
+ def _typecheckingstub__918caacfb00c254b043b27b148cc5504c1522bbde995792e7edfa97fe0990ea4(
1287
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, LoadbalancerFrontendProperties]],
1288
+ ) -> None:
1289
+ """Type checking stubs"""
1290
+ pass