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,1299 @@
1
+ r'''
2
+ # `upcloud_gateway_connection`
3
+
4
+ Refer to the Terraform Registry for docs: [`upcloud_gateway_connection`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection).
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 GatewayConnection(
43
+ _cdktf_9a9027ec.TerraformResource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnection",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection upcloud_gateway_connection}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id_: builtins.str,
53
+ *,
54
+ gateway: builtins.str,
55
+ name: builtins.str,
56
+ id: typing.Optional[builtins.str] = None,
57
+ local_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionLocalRoute", typing.Dict[builtins.str, typing.Any]]]]] = None,
58
+ remote_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionRemoteRoute", typing.Dict[builtins.str, typing.Any]]]]] = None,
59
+ type: typing.Optional[builtins.str] = None,
60
+ 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,
61
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
62
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
63
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
64
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
65
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
66
+ 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,
67
+ ) -> None:
68
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection upcloud_gateway_connection} Resource.
69
+
70
+ :param scope: The scope in which to define this construct.
71
+ :param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
72
+ :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
73
+ :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
74
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#id GatewayConnection#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
75
+ :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
76
+ :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
77
+ :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
78
+ :param connection:
79
+ :param count:
80
+ :param depends_on:
81
+ :param for_each:
82
+ :param lifecycle:
83
+ :param provider:
84
+ :param provisioners:
85
+ '''
86
+ if __debug__:
87
+ type_hints = typing.get_type_hints(_typecheckingstub__c920d1d41823c3b0841ebcc73ef5b304113fef0c7bbc1f0661ae60f10146c55a)
88
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
89
+ check_type(argname="argument id_", value=id_, expected_type=type_hints["id_"])
90
+ config = GatewayConnectionConfig(
91
+ gateway=gateway,
92
+ name=name,
93
+ id=id,
94
+ local_route=local_route,
95
+ remote_route=remote_route,
96
+ type=type,
97
+ connection=connection,
98
+ count=count,
99
+ depends_on=depends_on,
100
+ for_each=for_each,
101
+ lifecycle=lifecycle,
102
+ provider=provider,
103
+ provisioners=provisioners,
104
+ )
105
+
106
+ jsii.create(self.__class__, self, [scope, id_, config])
107
+
108
+ @jsii.member(jsii_name="generateConfigForImport")
109
+ @builtins.classmethod
110
+ def generate_config_for_import(
111
+ cls,
112
+ scope: _constructs_77d1e7e8.Construct,
113
+ import_to_id: builtins.str,
114
+ import_from_id: builtins.str,
115
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
116
+ ) -> _cdktf_9a9027ec.ImportableResource:
117
+ '''Generates CDKTF code for importing a GatewayConnection resource upon running "cdktf plan ".
118
+
119
+ :param scope: The scope in which to define this construct.
120
+ :param import_to_id: The construct id used in the generated config for the GatewayConnection to import.
121
+ :param import_from_id: The id of the existing GatewayConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#import import section} in the documentation of this resource for the id to use
122
+ :param provider: ? Optional instance of the provider where the GatewayConnection to import is found.
123
+ '''
124
+ if __debug__:
125
+ type_hints = typing.get_type_hints(_typecheckingstub__a2dc5a5fffea265f4e5f92f5ea2529edd1ac6ef2cd407f1b1c23821ce07686d7)
126
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
127
+ check_type(argname="argument import_to_id", value=import_to_id, expected_type=type_hints["import_to_id"])
128
+ check_type(argname="argument import_from_id", value=import_from_id, expected_type=type_hints["import_from_id"])
129
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
130
+ return typing.cast(_cdktf_9a9027ec.ImportableResource, jsii.sinvoke(cls, "generateConfigForImport", [scope, import_to_id, import_from_id, provider]))
131
+
132
+ @jsii.member(jsii_name="putLocalRoute")
133
+ def put_local_route(
134
+ self,
135
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionLocalRoute", typing.Dict[builtins.str, typing.Any]]]],
136
+ ) -> None:
137
+ '''
138
+ :param value: -
139
+ '''
140
+ if __debug__:
141
+ type_hints = typing.get_type_hints(_typecheckingstub__cedac8480703550f59f260016bb68fe9a720e3c0438801b5b126c35b76285c1d)
142
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
143
+ return typing.cast(None, jsii.invoke(self, "putLocalRoute", [value]))
144
+
145
+ @jsii.member(jsii_name="putRemoteRoute")
146
+ def put_remote_route(
147
+ self,
148
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionRemoteRoute", typing.Dict[builtins.str, typing.Any]]]],
149
+ ) -> None:
150
+ '''
151
+ :param value: -
152
+ '''
153
+ if __debug__:
154
+ type_hints = typing.get_type_hints(_typecheckingstub__b23760c33f02ce2b4028204ab22406c5950dda8a5cecf1a23a329dd9e0d061c8)
155
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
156
+ return typing.cast(None, jsii.invoke(self, "putRemoteRoute", [value]))
157
+
158
+ @jsii.member(jsii_name="resetId")
159
+ def reset_id(self) -> None:
160
+ return typing.cast(None, jsii.invoke(self, "resetId", []))
161
+
162
+ @jsii.member(jsii_name="resetLocalRoute")
163
+ def reset_local_route(self) -> None:
164
+ return typing.cast(None, jsii.invoke(self, "resetLocalRoute", []))
165
+
166
+ @jsii.member(jsii_name="resetRemoteRoute")
167
+ def reset_remote_route(self) -> None:
168
+ return typing.cast(None, jsii.invoke(self, "resetRemoteRoute", []))
169
+
170
+ @jsii.member(jsii_name="resetType")
171
+ def reset_type(self) -> None:
172
+ return typing.cast(None, jsii.invoke(self, "resetType", []))
173
+
174
+ @jsii.member(jsii_name="synthesizeAttributes")
175
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
176
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
177
+
178
+ @jsii.member(jsii_name="synthesizeHclAttributes")
179
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
180
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
181
+
182
+ @jsii.python.classproperty
183
+ @jsii.member(jsii_name="tfResourceType")
184
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
185
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
186
+
187
+ @builtins.property
188
+ @jsii.member(jsii_name="localRoute")
189
+ def local_route(self) -> "GatewayConnectionLocalRouteList":
190
+ return typing.cast("GatewayConnectionLocalRouteList", jsii.get(self, "localRoute"))
191
+
192
+ @builtins.property
193
+ @jsii.member(jsii_name="remoteRoute")
194
+ def remote_route(self) -> "GatewayConnectionRemoteRouteList":
195
+ return typing.cast("GatewayConnectionRemoteRouteList", jsii.get(self, "remoteRoute"))
196
+
197
+ @builtins.property
198
+ @jsii.member(jsii_name="tunnels")
199
+ def tunnels(self) -> typing.List[builtins.str]:
200
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "tunnels"))
201
+
202
+ @builtins.property
203
+ @jsii.member(jsii_name="uuid")
204
+ def uuid(self) -> builtins.str:
205
+ return typing.cast(builtins.str, jsii.get(self, "uuid"))
206
+
207
+ @builtins.property
208
+ @jsii.member(jsii_name="gatewayInput")
209
+ def gateway_input(self) -> typing.Optional[builtins.str]:
210
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "gatewayInput"))
211
+
212
+ @builtins.property
213
+ @jsii.member(jsii_name="idInput")
214
+ def id_input(self) -> typing.Optional[builtins.str]:
215
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idInput"))
216
+
217
+ @builtins.property
218
+ @jsii.member(jsii_name="localRouteInput")
219
+ def local_route_input(
220
+ self,
221
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]]:
222
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]], jsii.get(self, "localRouteInput"))
223
+
224
+ @builtins.property
225
+ @jsii.member(jsii_name="nameInput")
226
+ def name_input(self) -> typing.Optional[builtins.str]:
227
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
228
+
229
+ @builtins.property
230
+ @jsii.member(jsii_name="remoteRouteInput")
231
+ def remote_route_input(
232
+ self,
233
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]]:
234
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]], jsii.get(self, "remoteRouteInput"))
235
+
236
+ @builtins.property
237
+ @jsii.member(jsii_name="typeInput")
238
+ def type_input(self) -> typing.Optional[builtins.str]:
239
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeInput"))
240
+
241
+ @builtins.property
242
+ @jsii.member(jsii_name="gateway")
243
+ def gateway(self) -> builtins.str:
244
+ return typing.cast(builtins.str, jsii.get(self, "gateway"))
245
+
246
+ @gateway.setter
247
+ def gateway(self, value: builtins.str) -> None:
248
+ if __debug__:
249
+ type_hints = typing.get_type_hints(_typecheckingstub__0f9140ee004c117c7e71343d4507b700229e580353c21561ced985984092387b)
250
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
251
+ jsii.set(self, "gateway", value) # pyright: ignore[reportArgumentType]
252
+
253
+ @builtins.property
254
+ @jsii.member(jsii_name="id")
255
+ def id(self) -> builtins.str:
256
+ return typing.cast(builtins.str, jsii.get(self, "id"))
257
+
258
+ @id.setter
259
+ def id(self, value: builtins.str) -> None:
260
+ if __debug__:
261
+ type_hints = typing.get_type_hints(_typecheckingstub__e0d90c825744dcd41b22130f96b134b117a8e04812152a12975f300521d03cea)
262
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
263
+ jsii.set(self, "id", value) # pyright: ignore[reportArgumentType]
264
+
265
+ @builtins.property
266
+ @jsii.member(jsii_name="name")
267
+ def name(self) -> builtins.str:
268
+ return typing.cast(builtins.str, jsii.get(self, "name"))
269
+
270
+ @name.setter
271
+ def name(self, value: builtins.str) -> None:
272
+ if __debug__:
273
+ type_hints = typing.get_type_hints(_typecheckingstub__61de169eaf4b0414d793ba4c83646149c920e46c363fd9d7861bc470059a8fbe)
274
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
275
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
276
+
277
+ @builtins.property
278
+ @jsii.member(jsii_name="type")
279
+ def type(self) -> builtins.str:
280
+ return typing.cast(builtins.str, jsii.get(self, "type"))
281
+
282
+ @type.setter
283
+ def type(self, value: builtins.str) -> None:
284
+ if __debug__:
285
+ type_hints = typing.get_type_hints(_typecheckingstub__85492b7ac6ec9409cfbda5239265c599f55088e4e2e0f085f371cbe3d610087d)
286
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
287
+ jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
288
+
289
+
290
+ @jsii.data_type(
291
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionConfig",
292
+ jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
293
+ name_mapping={
294
+ "connection": "connection",
295
+ "count": "count",
296
+ "depends_on": "dependsOn",
297
+ "for_each": "forEach",
298
+ "lifecycle": "lifecycle",
299
+ "provider": "provider",
300
+ "provisioners": "provisioners",
301
+ "gateway": "gateway",
302
+ "name": "name",
303
+ "id": "id",
304
+ "local_route": "localRoute",
305
+ "remote_route": "remoteRoute",
306
+ "type": "type",
307
+ },
308
+ )
309
+ class GatewayConnectionConfig(_cdktf_9a9027ec.TerraformMetaArguments):
310
+ def __init__(
311
+ self,
312
+ *,
313
+ 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,
314
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
315
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
316
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
317
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
318
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
319
+ 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,
320
+ gateway: builtins.str,
321
+ name: builtins.str,
322
+ id: typing.Optional[builtins.str] = None,
323
+ local_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionLocalRoute", typing.Dict[builtins.str, typing.Any]]]]] = None,
324
+ remote_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["GatewayConnectionRemoteRoute", typing.Dict[builtins.str, typing.Any]]]]] = None,
325
+ type: typing.Optional[builtins.str] = None,
326
+ ) -> None:
327
+ '''
328
+ :param connection:
329
+ :param count:
330
+ :param depends_on:
331
+ :param for_each:
332
+ :param lifecycle:
333
+ :param provider:
334
+ :param provisioners:
335
+ :param gateway: The ID of the upcloud_gateway resource to which the connection belongs. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
336
+ :param name: The name of the connection, should be unique within the gateway. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
337
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#id GatewayConnection#id}. Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
338
+ :param local_route: local_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
339
+ :param remote_route: remote_route block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
340
+ :param type: The type of the connection; currently the only supported type is 'ipsec'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
341
+ '''
342
+ if isinstance(lifecycle, dict):
343
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
344
+ if __debug__:
345
+ type_hints = typing.get_type_hints(_typecheckingstub__214c194aa44167e2ce33585d7d429732696146afa8ac74449846e8b507b7a373)
346
+ check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
347
+ check_type(argname="argument count", value=count, expected_type=type_hints["count"])
348
+ check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
349
+ check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
350
+ check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
351
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
352
+ check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
353
+ check_type(argname="argument gateway", value=gateway, expected_type=type_hints["gateway"])
354
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
355
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
356
+ check_type(argname="argument local_route", value=local_route, expected_type=type_hints["local_route"])
357
+ check_type(argname="argument remote_route", value=remote_route, expected_type=type_hints["remote_route"])
358
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
359
+ self._values: typing.Dict[builtins.str, typing.Any] = {
360
+ "gateway": gateway,
361
+ "name": name,
362
+ }
363
+ if connection is not None:
364
+ self._values["connection"] = connection
365
+ if count is not None:
366
+ self._values["count"] = count
367
+ if depends_on is not None:
368
+ self._values["depends_on"] = depends_on
369
+ if for_each is not None:
370
+ self._values["for_each"] = for_each
371
+ if lifecycle is not None:
372
+ self._values["lifecycle"] = lifecycle
373
+ if provider is not None:
374
+ self._values["provider"] = provider
375
+ if provisioners is not None:
376
+ self._values["provisioners"] = provisioners
377
+ if id is not None:
378
+ self._values["id"] = id
379
+ if local_route is not None:
380
+ self._values["local_route"] = local_route
381
+ if remote_route is not None:
382
+ self._values["remote_route"] = remote_route
383
+ if type is not None:
384
+ self._values["type"] = type
385
+
386
+ @builtins.property
387
+ def connection(
388
+ self,
389
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
390
+ '''
391
+ :stability: experimental
392
+ '''
393
+ result = self._values.get("connection")
394
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
395
+
396
+ @builtins.property
397
+ def count(
398
+ self,
399
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
400
+ '''
401
+ :stability: experimental
402
+ '''
403
+ result = self._values.get("count")
404
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
405
+
406
+ @builtins.property
407
+ def depends_on(
408
+ self,
409
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
410
+ '''
411
+ :stability: experimental
412
+ '''
413
+ result = self._values.get("depends_on")
414
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
415
+
416
+ @builtins.property
417
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
418
+ '''
419
+ :stability: experimental
420
+ '''
421
+ result = self._values.get("for_each")
422
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
423
+
424
+ @builtins.property
425
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
426
+ '''
427
+ :stability: experimental
428
+ '''
429
+ result = self._values.get("lifecycle")
430
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
431
+
432
+ @builtins.property
433
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
434
+ '''
435
+ :stability: experimental
436
+ '''
437
+ result = self._values.get("provider")
438
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
439
+
440
+ @builtins.property
441
+ def provisioners(
442
+ self,
443
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
444
+ '''
445
+ :stability: experimental
446
+ '''
447
+ result = self._values.get("provisioners")
448
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
449
+
450
+ @builtins.property
451
+ def gateway(self) -> builtins.str:
452
+ '''The ID of the upcloud_gateway resource to which the connection belongs.
453
+
454
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#gateway GatewayConnection#gateway}
455
+ '''
456
+ result = self._values.get("gateway")
457
+ assert result is not None, "Required property 'gateway' is missing"
458
+ return typing.cast(builtins.str, result)
459
+
460
+ @builtins.property
461
+ def name(self) -> builtins.str:
462
+ '''The name of the connection, should be unique within the gateway.
463
+
464
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
465
+ '''
466
+ result = self._values.get("name")
467
+ assert result is not None, "Required property 'name' is missing"
468
+ return typing.cast(builtins.str, result)
469
+
470
+ @builtins.property
471
+ def id(self) -> typing.Optional[builtins.str]:
472
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#id GatewayConnection#id}.
473
+
474
+ Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
475
+ If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
476
+ '''
477
+ result = self._values.get("id")
478
+ return typing.cast(typing.Optional[builtins.str], result)
479
+
480
+ @builtins.property
481
+ def local_route(
482
+ self,
483
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]]:
484
+ '''local_route block.
485
+
486
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#local_route GatewayConnection#local_route}
487
+ '''
488
+ result = self._values.get("local_route")
489
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionLocalRoute"]]], result)
490
+
491
+ @builtins.property
492
+ def remote_route(
493
+ self,
494
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]]:
495
+ '''remote_route block.
496
+
497
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#remote_route GatewayConnection#remote_route}
498
+ '''
499
+ result = self._values.get("remote_route")
500
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["GatewayConnectionRemoteRoute"]]], result)
501
+
502
+ @builtins.property
503
+ def type(self) -> typing.Optional[builtins.str]:
504
+ '''The type of the connection; currently the only supported type is 'ipsec'.
505
+
506
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
507
+ '''
508
+ result = self._values.get("type")
509
+ return typing.cast(typing.Optional[builtins.str], result)
510
+
511
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
512
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
513
+
514
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
515
+ return not (rhs == self)
516
+
517
+ def __repr__(self) -> str:
518
+ return "GatewayConnectionConfig(%s)" % ", ".join(
519
+ k + "=" + repr(v) for k, v in self._values.items()
520
+ )
521
+
522
+
523
+ @jsii.data_type(
524
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionLocalRoute",
525
+ jsii_struct_bases=[],
526
+ name_mapping={"name": "name", "static_network": "staticNetwork", "type": "type"},
527
+ )
528
+ class GatewayConnectionLocalRoute:
529
+ def __init__(
530
+ self,
531
+ *,
532
+ name: builtins.str,
533
+ static_network: builtins.str,
534
+ type: typing.Optional[builtins.str] = None,
535
+ ) -> None:
536
+ '''
537
+ :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
538
+ :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
539
+ :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
540
+ '''
541
+ if __debug__:
542
+ type_hints = typing.get_type_hints(_typecheckingstub__e9bdbc304645ef903521fb56e820f8a47e2974b0281c6e16487c6d0125d32895)
543
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
544
+ check_type(argname="argument static_network", value=static_network, expected_type=type_hints["static_network"])
545
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
546
+ self._values: typing.Dict[builtins.str, typing.Any] = {
547
+ "name": name,
548
+ "static_network": static_network,
549
+ }
550
+ if type is not None:
551
+ self._values["type"] = type
552
+
553
+ @builtins.property
554
+ def name(self) -> builtins.str:
555
+ '''Name of the route.
556
+
557
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
558
+ '''
559
+ result = self._values.get("name")
560
+ assert result is not None, "Required property 'name' is missing"
561
+ return typing.cast(builtins.str, result)
562
+
563
+ @builtins.property
564
+ def static_network(self) -> builtins.str:
565
+ '''Destination prefix of the route; needs to be a valid IPv4 prefix.
566
+
567
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
568
+ '''
569
+ result = self._values.get("static_network")
570
+ assert result is not None, "Required property 'static_network' is missing"
571
+ return typing.cast(builtins.str, result)
572
+
573
+ @builtins.property
574
+ def type(self) -> typing.Optional[builtins.str]:
575
+ '''Type of route; currently the only supported type is 'static'.
576
+
577
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
578
+ '''
579
+ result = self._values.get("type")
580
+ return typing.cast(typing.Optional[builtins.str], result)
581
+
582
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
583
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
584
+
585
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
586
+ return not (rhs == self)
587
+
588
+ def __repr__(self) -> str:
589
+ return "GatewayConnectionLocalRoute(%s)" % ", ".join(
590
+ k + "=" + repr(v) for k, v in self._values.items()
591
+ )
592
+
593
+
594
+ class GatewayConnectionLocalRouteList(
595
+ _cdktf_9a9027ec.ComplexList,
596
+ metaclass=jsii.JSIIMeta,
597
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionLocalRouteList",
598
+ ):
599
+ def __init__(
600
+ self,
601
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
602
+ terraform_attribute: builtins.str,
603
+ wraps_set: builtins.bool,
604
+ ) -> None:
605
+ '''
606
+ :param terraform_resource: The parent resource.
607
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
608
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
609
+ '''
610
+ if __debug__:
611
+ type_hints = typing.get_type_hints(_typecheckingstub__5a9dab1729a264a33e2b15ca5fe93400334d92179f706515df7b4a2912523828)
612
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
613
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
614
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
615
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
616
+
617
+ @jsii.member(jsii_name="get")
618
+ def get(self, index: jsii.Number) -> "GatewayConnectionLocalRouteOutputReference":
619
+ '''
620
+ :param index: the index of the item to return.
621
+ '''
622
+ if __debug__:
623
+ type_hints = typing.get_type_hints(_typecheckingstub__ee1c4f83441f1f51715cef1fb9a984660909dad51f4ca89fcd39588739f9dc5b)
624
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
625
+ return typing.cast("GatewayConnectionLocalRouteOutputReference", jsii.invoke(self, "get", [index]))
626
+
627
+ @builtins.property
628
+ @jsii.member(jsii_name="terraformAttribute")
629
+ def _terraform_attribute(self) -> builtins.str:
630
+ '''The attribute on the parent resource this class is referencing.'''
631
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
632
+
633
+ @_terraform_attribute.setter
634
+ def _terraform_attribute(self, value: builtins.str) -> None:
635
+ if __debug__:
636
+ type_hints = typing.get_type_hints(_typecheckingstub__3552bcf181b747d0ad873f31f6b8571de17c383888927a6e9a8dc1c6d6fb94a2)
637
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
638
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
639
+
640
+ @builtins.property
641
+ @jsii.member(jsii_name="terraformResource")
642
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
643
+ '''The parent resource.'''
644
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
645
+
646
+ @_terraform_resource.setter
647
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
648
+ if __debug__:
649
+ type_hints = typing.get_type_hints(_typecheckingstub__5f5539bafed9ccf3288bd6f5cddcd5ee46bd90ac84aec21f41731d4a2d235ea8)
650
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
651
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
652
+
653
+ @builtins.property
654
+ @jsii.member(jsii_name="wrapsSet")
655
+ def _wraps_set(self) -> builtins.bool:
656
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
657
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
658
+
659
+ @_wraps_set.setter
660
+ def _wraps_set(self, value: builtins.bool) -> None:
661
+ if __debug__:
662
+ type_hints = typing.get_type_hints(_typecheckingstub__43e82a6d2a3aa3dd13cfa2a06b90dddcc29907f6b77bb4368de617b1088181c7)
663
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
664
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
665
+
666
+ @builtins.property
667
+ @jsii.member(jsii_name="internalValue")
668
+ def internal_value(
669
+ self,
670
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionLocalRoute]]]:
671
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionLocalRoute]]], jsii.get(self, "internalValue"))
672
+
673
+ @internal_value.setter
674
+ def internal_value(
675
+ self,
676
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionLocalRoute]]],
677
+ ) -> None:
678
+ if __debug__:
679
+ type_hints = typing.get_type_hints(_typecheckingstub__7754d62d079459d41807ab3ce3309dd1f7a73fd50459ea14c2e0726b42fd8735)
680
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
681
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
682
+
683
+
684
+ class GatewayConnectionLocalRouteOutputReference(
685
+ _cdktf_9a9027ec.ComplexObject,
686
+ metaclass=jsii.JSIIMeta,
687
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionLocalRouteOutputReference",
688
+ ):
689
+ def __init__(
690
+ self,
691
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
692
+ terraform_attribute: builtins.str,
693
+ complex_object_index: jsii.Number,
694
+ complex_object_is_from_set: builtins.bool,
695
+ ) -> None:
696
+ '''
697
+ :param terraform_resource: The parent resource.
698
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
699
+ :param complex_object_index: the index of this item in the list.
700
+ :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).
701
+ '''
702
+ if __debug__:
703
+ type_hints = typing.get_type_hints(_typecheckingstub__20f8f5456c6e3a40c5dabf0ebb69fec2beea10b2d20f383e92fb5498687670e0)
704
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
705
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
706
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
707
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
708
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
709
+
710
+ @jsii.member(jsii_name="resetType")
711
+ def reset_type(self) -> None:
712
+ return typing.cast(None, jsii.invoke(self, "resetType", []))
713
+
714
+ @builtins.property
715
+ @jsii.member(jsii_name="nameInput")
716
+ def name_input(self) -> typing.Optional[builtins.str]:
717
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
718
+
719
+ @builtins.property
720
+ @jsii.member(jsii_name="staticNetworkInput")
721
+ def static_network_input(self) -> typing.Optional[builtins.str]:
722
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "staticNetworkInput"))
723
+
724
+ @builtins.property
725
+ @jsii.member(jsii_name="typeInput")
726
+ def type_input(self) -> typing.Optional[builtins.str]:
727
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeInput"))
728
+
729
+ @builtins.property
730
+ @jsii.member(jsii_name="name")
731
+ def name(self) -> builtins.str:
732
+ return typing.cast(builtins.str, jsii.get(self, "name"))
733
+
734
+ @name.setter
735
+ def name(self, value: builtins.str) -> None:
736
+ if __debug__:
737
+ type_hints = typing.get_type_hints(_typecheckingstub__f6ff81de1a0ab57fd0e0f6ea9805634d3035a304f6a27501795691f087ee5f54)
738
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
739
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
740
+
741
+ @builtins.property
742
+ @jsii.member(jsii_name="staticNetwork")
743
+ def static_network(self) -> builtins.str:
744
+ return typing.cast(builtins.str, jsii.get(self, "staticNetwork"))
745
+
746
+ @static_network.setter
747
+ def static_network(self, value: builtins.str) -> None:
748
+ if __debug__:
749
+ type_hints = typing.get_type_hints(_typecheckingstub__c3a9b1386be54eb32e1d1e1ce2409d9ee2f44eb57561d605bae3586e9f8230e7)
750
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
751
+ jsii.set(self, "staticNetwork", value) # pyright: ignore[reportArgumentType]
752
+
753
+ @builtins.property
754
+ @jsii.member(jsii_name="type")
755
+ def type(self) -> builtins.str:
756
+ return typing.cast(builtins.str, jsii.get(self, "type"))
757
+
758
+ @type.setter
759
+ def type(self, value: builtins.str) -> None:
760
+ if __debug__:
761
+ type_hints = typing.get_type_hints(_typecheckingstub__f911a795999e5ee07420d4ca65d78072293a0d27fdd13371713ce68761661be0)
762
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
763
+ jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
764
+
765
+ @builtins.property
766
+ @jsii.member(jsii_name="internalValue")
767
+ def internal_value(
768
+ self,
769
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionLocalRoute]]:
770
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionLocalRoute]], jsii.get(self, "internalValue"))
771
+
772
+ @internal_value.setter
773
+ def internal_value(
774
+ self,
775
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionLocalRoute]],
776
+ ) -> None:
777
+ if __debug__:
778
+ type_hints = typing.get_type_hints(_typecheckingstub__1a4589f41963ead92980288e9ecc8416ca22d2ed72c0b54c114e288ba0cb39c5)
779
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
780
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
781
+
782
+
783
+ @jsii.data_type(
784
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionRemoteRoute",
785
+ jsii_struct_bases=[],
786
+ name_mapping={"name": "name", "static_network": "staticNetwork", "type": "type"},
787
+ )
788
+ class GatewayConnectionRemoteRoute:
789
+ def __init__(
790
+ self,
791
+ *,
792
+ name: builtins.str,
793
+ static_network: builtins.str,
794
+ type: typing.Optional[builtins.str] = None,
795
+ ) -> None:
796
+ '''
797
+ :param name: Name of the route. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
798
+ :param static_network: Destination prefix of the route; needs to be a valid IPv4 prefix. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
799
+ :param type: Type of route; currently the only supported type is 'static'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
800
+ '''
801
+ if __debug__:
802
+ type_hints = typing.get_type_hints(_typecheckingstub__bb241e4f5e51f66fa76e319bae9793b11f7a4bca837d9a67cbe02422b2b6e95f)
803
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
804
+ check_type(argname="argument static_network", value=static_network, expected_type=type_hints["static_network"])
805
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
806
+ self._values: typing.Dict[builtins.str, typing.Any] = {
807
+ "name": name,
808
+ "static_network": static_network,
809
+ }
810
+ if type is not None:
811
+ self._values["type"] = type
812
+
813
+ @builtins.property
814
+ def name(self) -> builtins.str:
815
+ '''Name of the route.
816
+
817
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#name GatewayConnection#name}
818
+ '''
819
+ result = self._values.get("name")
820
+ assert result is not None, "Required property 'name' is missing"
821
+ return typing.cast(builtins.str, result)
822
+
823
+ @builtins.property
824
+ def static_network(self) -> builtins.str:
825
+ '''Destination prefix of the route; needs to be a valid IPv4 prefix.
826
+
827
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#static_network GatewayConnection#static_network}
828
+ '''
829
+ result = self._values.get("static_network")
830
+ assert result is not None, "Required property 'static_network' is missing"
831
+ return typing.cast(builtins.str, result)
832
+
833
+ @builtins.property
834
+ def type(self) -> typing.Optional[builtins.str]:
835
+ '''Type of route; currently the only supported type is 'static'.
836
+
837
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/gateway_connection#type GatewayConnection#type}
838
+ '''
839
+ result = self._values.get("type")
840
+ return typing.cast(typing.Optional[builtins.str], result)
841
+
842
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
843
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
844
+
845
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
846
+ return not (rhs == self)
847
+
848
+ def __repr__(self) -> str:
849
+ return "GatewayConnectionRemoteRoute(%s)" % ", ".join(
850
+ k + "=" + repr(v) for k, v in self._values.items()
851
+ )
852
+
853
+
854
+ class GatewayConnectionRemoteRouteList(
855
+ _cdktf_9a9027ec.ComplexList,
856
+ metaclass=jsii.JSIIMeta,
857
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionRemoteRouteList",
858
+ ):
859
+ def __init__(
860
+ self,
861
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
862
+ terraform_attribute: builtins.str,
863
+ wraps_set: builtins.bool,
864
+ ) -> None:
865
+ '''
866
+ :param terraform_resource: The parent resource.
867
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
868
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
869
+ '''
870
+ if __debug__:
871
+ type_hints = typing.get_type_hints(_typecheckingstub__4c15a17a0f19b16ba24bc63690e898cc2b32a167b6e6b75a52b47e67259fd690)
872
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
873
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
874
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
875
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
876
+
877
+ @jsii.member(jsii_name="get")
878
+ def get(self, index: jsii.Number) -> "GatewayConnectionRemoteRouteOutputReference":
879
+ '''
880
+ :param index: the index of the item to return.
881
+ '''
882
+ if __debug__:
883
+ type_hints = typing.get_type_hints(_typecheckingstub__ea42ff62cfb3abc36d899b7b791b1fe3dbd150f341e4e9dc78c656028a4aacbe)
884
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
885
+ return typing.cast("GatewayConnectionRemoteRouteOutputReference", jsii.invoke(self, "get", [index]))
886
+
887
+ @builtins.property
888
+ @jsii.member(jsii_name="terraformAttribute")
889
+ def _terraform_attribute(self) -> builtins.str:
890
+ '''The attribute on the parent resource this class is referencing.'''
891
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
892
+
893
+ @_terraform_attribute.setter
894
+ def _terraform_attribute(self, value: builtins.str) -> None:
895
+ if __debug__:
896
+ type_hints = typing.get_type_hints(_typecheckingstub__8fc1b8b8745da4fde194db5e07aedddbc5678f272b7f7b1eda950e6f37e2200b)
897
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
898
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
899
+
900
+ @builtins.property
901
+ @jsii.member(jsii_name="terraformResource")
902
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
903
+ '''The parent resource.'''
904
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
905
+
906
+ @_terraform_resource.setter
907
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
908
+ if __debug__:
909
+ type_hints = typing.get_type_hints(_typecheckingstub__6db47d7e99cab19331859c399d22e3628b156a986bd8b9195a1c6cca24d83664)
910
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
911
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
912
+
913
+ @builtins.property
914
+ @jsii.member(jsii_name="wrapsSet")
915
+ def _wraps_set(self) -> builtins.bool:
916
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
917
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
918
+
919
+ @_wraps_set.setter
920
+ def _wraps_set(self, value: builtins.bool) -> None:
921
+ if __debug__:
922
+ type_hints = typing.get_type_hints(_typecheckingstub__9e0cbe924364b3a87224bfe086381647b99e17b1f721caa8c454dff49c1b4369)
923
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
924
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
925
+
926
+ @builtins.property
927
+ @jsii.member(jsii_name="internalValue")
928
+ def internal_value(
929
+ self,
930
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionRemoteRoute]]]:
931
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionRemoteRoute]]], jsii.get(self, "internalValue"))
932
+
933
+ @internal_value.setter
934
+ def internal_value(
935
+ self,
936
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionRemoteRoute]]],
937
+ ) -> None:
938
+ if __debug__:
939
+ type_hints = typing.get_type_hints(_typecheckingstub__88e67488e1f4efa99bcff5d7a9f5a97522dd298ddfec59923c8e7b2629e0822d)
940
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
941
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
942
+
943
+
944
+ class GatewayConnectionRemoteRouteOutputReference(
945
+ _cdktf_9a9027ec.ComplexObject,
946
+ metaclass=jsii.JSIIMeta,
947
+ jsii_type="@cdktf/provider-upcloud.gatewayConnection.GatewayConnectionRemoteRouteOutputReference",
948
+ ):
949
+ def __init__(
950
+ self,
951
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
952
+ terraform_attribute: builtins.str,
953
+ complex_object_index: jsii.Number,
954
+ complex_object_is_from_set: builtins.bool,
955
+ ) -> None:
956
+ '''
957
+ :param terraform_resource: The parent resource.
958
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
959
+ :param complex_object_index: the index of this item in the list.
960
+ :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).
961
+ '''
962
+ if __debug__:
963
+ type_hints = typing.get_type_hints(_typecheckingstub__d00b4eee536220ad7209a6c893ad55712cd9905166df161b168077ae8b255060)
964
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
965
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
966
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
967
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
968
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
969
+
970
+ @jsii.member(jsii_name="resetType")
971
+ def reset_type(self) -> None:
972
+ return typing.cast(None, jsii.invoke(self, "resetType", []))
973
+
974
+ @builtins.property
975
+ @jsii.member(jsii_name="nameInput")
976
+ def name_input(self) -> typing.Optional[builtins.str]:
977
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
978
+
979
+ @builtins.property
980
+ @jsii.member(jsii_name="staticNetworkInput")
981
+ def static_network_input(self) -> typing.Optional[builtins.str]:
982
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "staticNetworkInput"))
983
+
984
+ @builtins.property
985
+ @jsii.member(jsii_name="typeInput")
986
+ def type_input(self) -> typing.Optional[builtins.str]:
987
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeInput"))
988
+
989
+ @builtins.property
990
+ @jsii.member(jsii_name="name")
991
+ def name(self) -> builtins.str:
992
+ return typing.cast(builtins.str, jsii.get(self, "name"))
993
+
994
+ @name.setter
995
+ def name(self, value: builtins.str) -> None:
996
+ if __debug__:
997
+ type_hints = typing.get_type_hints(_typecheckingstub__65b9ff3b7363b590d395f6f55111de0fb6b39867fb4ede337bb09064a1872c71)
998
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
999
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
1000
+
1001
+ @builtins.property
1002
+ @jsii.member(jsii_name="staticNetwork")
1003
+ def static_network(self) -> builtins.str:
1004
+ return typing.cast(builtins.str, jsii.get(self, "staticNetwork"))
1005
+
1006
+ @static_network.setter
1007
+ def static_network(self, value: builtins.str) -> None:
1008
+ if __debug__:
1009
+ type_hints = typing.get_type_hints(_typecheckingstub__2fe9558f19d1a2c4a2a2696d5ca61764d2f24abeab6624fd87a2e0cfa0a493b0)
1010
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1011
+ jsii.set(self, "staticNetwork", value) # pyright: ignore[reportArgumentType]
1012
+
1013
+ @builtins.property
1014
+ @jsii.member(jsii_name="type")
1015
+ def type(self) -> builtins.str:
1016
+ return typing.cast(builtins.str, jsii.get(self, "type"))
1017
+
1018
+ @type.setter
1019
+ def type(self, value: builtins.str) -> None:
1020
+ if __debug__:
1021
+ type_hints = typing.get_type_hints(_typecheckingstub__66d9b80e0a1cd818782c586318a675c612453bba44ad10806861e2e7e9d22d09)
1022
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1023
+ jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
1024
+
1025
+ @builtins.property
1026
+ @jsii.member(jsii_name="internalValue")
1027
+ def internal_value(
1028
+ self,
1029
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionRemoteRoute]]:
1030
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionRemoteRoute]], jsii.get(self, "internalValue"))
1031
+
1032
+ @internal_value.setter
1033
+ def internal_value(
1034
+ self,
1035
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionRemoteRoute]],
1036
+ ) -> None:
1037
+ if __debug__:
1038
+ type_hints = typing.get_type_hints(_typecheckingstub__4f0dfbf1da03d4e0da7cc6b4faaaf6a04c7119a41d7e1e5091f801b3a07d17a9)
1039
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1040
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
1041
+
1042
+
1043
+ __all__ = [
1044
+ "GatewayConnection",
1045
+ "GatewayConnectionConfig",
1046
+ "GatewayConnectionLocalRoute",
1047
+ "GatewayConnectionLocalRouteList",
1048
+ "GatewayConnectionLocalRouteOutputReference",
1049
+ "GatewayConnectionRemoteRoute",
1050
+ "GatewayConnectionRemoteRouteList",
1051
+ "GatewayConnectionRemoteRouteOutputReference",
1052
+ ]
1053
+
1054
+ publication.publish()
1055
+
1056
+ def _typecheckingstub__c920d1d41823c3b0841ebcc73ef5b304113fef0c7bbc1f0661ae60f10146c55a(
1057
+ scope: _constructs_77d1e7e8.Construct,
1058
+ id_: builtins.str,
1059
+ *,
1060
+ gateway: builtins.str,
1061
+ name: builtins.str,
1062
+ id: typing.Optional[builtins.str] = None,
1063
+ local_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionLocalRoute, typing.Dict[builtins.str, typing.Any]]]]] = None,
1064
+ remote_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionRemoteRoute, typing.Dict[builtins.str, typing.Any]]]]] = None,
1065
+ type: typing.Optional[builtins.str] = None,
1066
+ 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,
1067
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
1068
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
1069
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
1070
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
1071
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1072
+ 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,
1073
+ ) -> None:
1074
+ """Type checking stubs"""
1075
+ pass
1076
+
1077
+ def _typecheckingstub__a2dc5a5fffea265f4e5f92f5ea2529edd1ac6ef2cd407f1b1c23821ce07686d7(
1078
+ scope: _constructs_77d1e7e8.Construct,
1079
+ import_to_id: builtins.str,
1080
+ import_from_id: builtins.str,
1081
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1082
+ ) -> None:
1083
+ """Type checking stubs"""
1084
+ pass
1085
+
1086
+ def _typecheckingstub__cedac8480703550f59f260016bb68fe9a720e3c0438801b5b126c35b76285c1d(
1087
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionLocalRoute, typing.Dict[builtins.str, typing.Any]]]],
1088
+ ) -> None:
1089
+ """Type checking stubs"""
1090
+ pass
1091
+
1092
+ def _typecheckingstub__b23760c33f02ce2b4028204ab22406c5950dda8a5cecf1a23a329dd9e0d061c8(
1093
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionRemoteRoute, typing.Dict[builtins.str, typing.Any]]]],
1094
+ ) -> None:
1095
+ """Type checking stubs"""
1096
+ pass
1097
+
1098
+ def _typecheckingstub__0f9140ee004c117c7e71343d4507b700229e580353c21561ced985984092387b(
1099
+ value: builtins.str,
1100
+ ) -> None:
1101
+ """Type checking stubs"""
1102
+ pass
1103
+
1104
+ def _typecheckingstub__e0d90c825744dcd41b22130f96b134b117a8e04812152a12975f300521d03cea(
1105
+ value: builtins.str,
1106
+ ) -> None:
1107
+ """Type checking stubs"""
1108
+ pass
1109
+
1110
+ def _typecheckingstub__61de169eaf4b0414d793ba4c83646149c920e46c363fd9d7861bc470059a8fbe(
1111
+ value: builtins.str,
1112
+ ) -> None:
1113
+ """Type checking stubs"""
1114
+ pass
1115
+
1116
+ def _typecheckingstub__85492b7ac6ec9409cfbda5239265c599f55088e4e2e0f085f371cbe3d610087d(
1117
+ value: builtins.str,
1118
+ ) -> None:
1119
+ """Type checking stubs"""
1120
+ pass
1121
+
1122
+ def _typecheckingstub__214c194aa44167e2ce33585d7d429732696146afa8ac74449846e8b507b7a373(
1123
+ *,
1124
+ 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,
1125
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
1126
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
1127
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
1128
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
1129
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1130
+ 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,
1131
+ gateway: builtins.str,
1132
+ name: builtins.str,
1133
+ id: typing.Optional[builtins.str] = None,
1134
+ local_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionLocalRoute, typing.Dict[builtins.str, typing.Any]]]]] = None,
1135
+ remote_route: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[GatewayConnectionRemoteRoute, typing.Dict[builtins.str, typing.Any]]]]] = None,
1136
+ type: typing.Optional[builtins.str] = None,
1137
+ ) -> None:
1138
+ """Type checking stubs"""
1139
+ pass
1140
+
1141
+ def _typecheckingstub__e9bdbc304645ef903521fb56e820f8a47e2974b0281c6e16487c6d0125d32895(
1142
+ *,
1143
+ name: builtins.str,
1144
+ static_network: builtins.str,
1145
+ type: typing.Optional[builtins.str] = None,
1146
+ ) -> None:
1147
+ """Type checking stubs"""
1148
+ pass
1149
+
1150
+ def _typecheckingstub__5a9dab1729a264a33e2b15ca5fe93400334d92179f706515df7b4a2912523828(
1151
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1152
+ terraform_attribute: builtins.str,
1153
+ wraps_set: builtins.bool,
1154
+ ) -> None:
1155
+ """Type checking stubs"""
1156
+ pass
1157
+
1158
+ def _typecheckingstub__ee1c4f83441f1f51715cef1fb9a984660909dad51f4ca89fcd39588739f9dc5b(
1159
+ index: jsii.Number,
1160
+ ) -> None:
1161
+ """Type checking stubs"""
1162
+ pass
1163
+
1164
+ def _typecheckingstub__3552bcf181b747d0ad873f31f6b8571de17c383888927a6e9a8dc1c6d6fb94a2(
1165
+ value: builtins.str,
1166
+ ) -> None:
1167
+ """Type checking stubs"""
1168
+ pass
1169
+
1170
+ def _typecheckingstub__5f5539bafed9ccf3288bd6f5cddcd5ee46bd90ac84aec21f41731d4a2d235ea8(
1171
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1172
+ ) -> None:
1173
+ """Type checking stubs"""
1174
+ pass
1175
+
1176
+ def _typecheckingstub__43e82a6d2a3aa3dd13cfa2a06b90dddcc29907f6b77bb4368de617b1088181c7(
1177
+ value: builtins.bool,
1178
+ ) -> None:
1179
+ """Type checking stubs"""
1180
+ pass
1181
+
1182
+ def _typecheckingstub__7754d62d079459d41807ab3ce3309dd1f7a73fd50459ea14c2e0726b42fd8735(
1183
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionLocalRoute]]],
1184
+ ) -> None:
1185
+ """Type checking stubs"""
1186
+ pass
1187
+
1188
+ def _typecheckingstub__20f8f5456c6e3a40c5dabf0ebb69fec2beea10b2d20f383e92fb5498687670e0(
1189
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1190
+ terraform_attribute: builtins.str,
1191
+ complex_object_index: jsii.Number,
1192
+ complex_object_is_from_set: builtins.bool,
1193
+ ) -> None:
1194
+ """Type checking stubs"""
1195
+ pass
1196
+
1197
+ def _typecheckingstub__f6ff81de1a0ab57fd0e0f6ea9805634d3035a304f6a27501795691f087ee5f54(
1198
+ value: builtins.str,
1199
+ ) -> None:
1200
+ """Type checking stubs"""
1201
+ pass
1202
+
1203
+ def _typecheckingstub__c3a9b1386be54eb32e1d1e1ce2409d9ee2f44eb57561d605bae3586e9f8230e7(
1204
+ value: builtins.str,
1205
+ ) -> None:
1206
+ """Type checking stubs"""
1207
+ pass
1208
+
1209
+ def _typecheckingstub__f911a795999e5ee07420d4ca65d78072293a0d27fdd13371713ce68761661be0(
1210
+ value: builtins.str,
1211
+ ) -> None:
1212
+ """Type checking stubs"""
1213
+ pass
1214
+
1215
+ def _typecheckingstub__1a4589f41963ead92980288e9ecc8416ca22d2ed72c0b54c114e288ba0cb39c5(
1216
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionLocalRoute]],
1217
+ ) -> None:
1218
+ """Type checking stubs"""
1219
+ pass
1220
+
1221
+ def _typecheckingstub__bb241e4f5e51f66fa76e319bae9793b11f7a4bca837d9a67cbe02422b2b6e95f(
1222
+ *,
1223
+ name: builtins.str,
1224
+ static_network: builtins.str,
1225
+ type: typing.Optional[builtins.str] = None,
1226
+ ) -> None:
1227
+ """Type checking stubs"""
1228
+ pass
1229
+
1230
+ def _typecheckingstub__4c15a17a0f19b16ba24bc63690e898cc2b32a167b6e6b75a52b47e67259fd690(
1231
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1232
+ terraform_attribute: builtins.str,
1233
+ wraps_set: builtins.bool,
1234
+ ) -> None:
1235
+ """Type checking stubs"""
1236
+ pass
1237
+
1238
+ def _typecheckingstub__ea42ff62cfb3abc36d899b7b791b1fe3dbd150f341e4e9dc78c656028a4aacbe(
1239
+ index: jsii.Number,
1240
+ ) -> None:
1241
+ """Type checking stubs"""
1242
+ pass
1243
+
1244
+ def _typecheckingstub__8fc1b8b8745da4fde194db5e07aedddbc5678f272b7f7b1eda950e6f37e2200b(
1245
+ value: builtins.str,
1246
+ ) -> None:
1247
+ """Type checking stubs"""
1248
+ pass
1249
+
1250
+ def _typecheckingstub__6db47d7e99cab19331859c399d22e3628b156a986bd8b9195a1c6cca24d83664(
1251
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1252
+ ) -> None:
1253
+ """Type checking stubs"""
1254
+ pass
1255
+
1256
+ def _typecheckingstub__9e0cbe924364b3a87224bfe086381647b99e17b1f721caa8c454dff49c1b4369(
1257
+ value: builtins.bool,
1258
+ ) -> None:
1259
+ """Type checking stubs"""
1260
+ pass
1261
+
1262
+ def _typecheckingstub__88e67488e1f4efa99bcff5d7a9f5a97522dd298ddfec59923c8e7b2629e0822d(
1263
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[GatewayConnectionRemoteRoute]]],
1264
+ ) -> None:
1265
+ """Type checking stubs"""
1266
+ pass
1267
+
1268
+ def _typecheckingstub__d00b4eee536220ad7209a6c893ad55712cd9905166df161b168077ae8b255060(
1269
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1270
+ terraform_attribute: builtins.str,
1271
+ complex_object_index: jsii.Number,
1272
+ complex_object_is_from_set: builtins.bool,
1273
+ ) -> None:
1274
+ """Type checking stubs"""
1275
+ pass
1276
+
1277
+ def _typecheckingstub__65b9ff3b7363b590d395f6f55111de0fb6b39867fb4ede337bb09064a1872c71(
1278
+ value: builtins.str,
1279
+ ) -> None:
1280
+ """Type checking stubs"""
1281
+ pass
1282
+
1283
+ def _typecheckingstub__2fe9558f19d1a2c4a2a2696d5ca61764d2f24abeab6624fd87a2e0cfa0a493b0(
1284
+ value: builtins.str,
1285
+ ) -> None:
1286
+ """Type checking stubs"""
1287
+ pass
1288
+
1289
+ def _typecheckingstub__66d9b80e0a1cd818782c586318a675c612453bba44ad10806861e2e7e9d22d09(
1290
+ value: builtins.str,
1291
+ ) -> None:
1292
+ """Type checking stubs"""
1293
+ pass
1294
+
1295
+ def _typecheckingstub__4f0dfbf1da03d4e0da7cc6b4faaaf6a04c7119a41d7e1e5091f801b3a07d17a9(
1296
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, GatewayConnectionRemoteRoute]],
1297
+ ) -> None:
1298
+ """Type checking stubs"""
1299
+ pass