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,894 @@
1
+ r'''
2
+ # `data_upcloud_hosts`
3
+
4
+ Refer to the Terraform Registry for docs: [`data_upcloud_hosts`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts).
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 DataUpcloudHosts(
43
+ _cdktf_9a9027ec.TerraformDataSource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHosts",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts upcloud_hosts}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id: builtins.str,
53
+ *,
54
+ hosts: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudHostsHosts", typing.Dict[builtins.str, typing.Any]]]]] = None,
55
+ 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,
56
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
57
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
58
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
59
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
60
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
61
+ 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,
62
+ ) -> None:
63
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts upcloud_hosts} Data Source.
64
+
65
+ :param scope: The scope in which to define this construct.
66
+ :param id: The scoped construct ID. Must be unique amongst siblings in the same scope
67
+ :param hosts: hosts block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#hosts DataUpcloudHosts#hosts}
68
+ :param connection:
69
+ :param count:
70
+ :param depends_on:
71
+ :param for_each:
72
+ :param lifecycle:
73
+ :param provider:
74
+ :param provisioners:
75
+ '''
76
+ if __debug__:
77
+ type_hints = typing.get_type_hints(_typecheckingstub__799d22cd86ca6a5ffd3e901068e17fe5003171b013c9fcb80b11925031eee95d)
78
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
79
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
80
+ config = DataUpcloudHostsConfig(
81
+ hosts=hosts,
82
+ connection=connection,
83
+ count=count,
84
+ depends_on=depends_on,
85
+ for_each=for_each,
86
+ lifecycle=lifecycle,
87
+ provider=provider,
88
+ provisioners=provisioners,
89
+ )
90
+
91
+ jsii.create(self.__class__, self, [scope, id, config])
92
+
93
+ @jsii.member(jsii_name="generateConfigForImport")
94
+ @builtins.classmethod
95
+ def generate_config_for_import(
96
+ cls,
97
+ scope: _constructs_77d1e7e8.Construct,
98
+ import_to_id: builtins.str,
99
+ import_from_id: builtins.str,
100
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
101
+ ) -> _cdktf_9a9027ec.ImportableResource:
102
+ '''Generates CDKTF code for importing a DataUpcloudHosts resource upon running "cdktf plan ".
103
+
104
+ :param scope: The scope in which to define this construct.
105
+ :param import_to_id: The construct id used in the generated config for the DataUpcloudHosts to import.
106
+ :param import_from_id: The id of the existing DataUpcloudHosts that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#import import section} in the documentation of this resource for the id to use
107
+ :param provider: ? Optional instance of the provider where the DataUpcloudHosts to import is found.
108
+ '''
109
+ if __debug__:
110
+ type_hints = typing.get_type_hints(_typecheckingstub__9e41a3d099f0ffb0f2b630feb031e7bc139e2b5ad30f1f3179fa293edfeb4908)
111
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
112
+ check_type(argname="argument import_to_id", value=import_to_id, expected_type=type_hints["import_to_id"])
113
+ check_type(argname="argument import_from_id", value=import_from_id, expected_type=type_hints["import_from_id"])
114
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
115
+ return typing.cast(_cdktf_9a9027ec.ImportableResource, jsii.sinvoke(cls, "generateConfigForImport", [scope, import_to_id, import_from_id, provider]))
116
+
117
+ @jsii.member(jsii_name="putHosts")
118
+ def put_hosts(
119
+ self,
120
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudHostsHosts", typing.Dict[builtins.str, typing.Any]]]],
121
+ ) -> None:
122
+ '''
123
+ :param value: -
124
+ '''
125
+ if __debug__:
126
+ type_hints = typing.get_type_hints(_typecheckingstub__922a2bcf6b952cbfe0ebf741c2a4cb202efe0f123eaa25f7dc287554f3dd1497)
127
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
128
+ return typing.cast(None, jsii.invoke(self, "putHosts", [value]))
129
+
130
+ @jsii.member(jsii_name="resetHosts")
131
+ def reset_hosts(self) -> None:
132
+ return typing.cast(None, jsii.invoke(self, "resetHosts", []))
133
+
134
+ @jsii.member(jsii_name="synthesizeAttributes")
135
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
136
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
137
+
138
+ @jsii.member(jsii_name="synthesizeHclAttributes")
139
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
140
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
141
+
142
+ @jsii.python.classproperty
143
+ @jsii.member(jsii_name="tfResourceType")
144
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
145
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
146
+
147
+ @builtins.property
148
+ @jsii.member(jsii_name="hosts")
149
+ def hosts(self) -> "DataUpcloudHostsHostsList":
150
+ return typing.cast("DataUpcloudHostsHostsList", jsii.get(self, "hosts"))
151
+
152
+ @builtins.property
153
+ @jsii.member(jsii_name="id")
154
+ def id(self) -> builtins.str:
155
+ return typing.cast(builtins.str, jsii.get(self, "id"))
156
+
157
+ @builtins.property
158
+ @jsii.member(jsii_name="hostsInput")
159
+ def hosts_input(
160
+ self,
161
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHosts"]]]:
162
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHosts"]]], jsii.get(self, "hostsInput"))
163
+
164
+
165
+ @jsii.data_type(
166
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsConfig",
167
+ jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
168
+ name_mapping={
169
+ "connection": "connection",
170
+ "count": "count",
171
+ "depends_on": "dependsOn",
172
+ "for_each": "forEach",
173
+ "lifecycle": "lifecycle",
174
+ "provider": "provider",
175
+ "provisioners": "provisioners",
176
+ "hosts": "hosts",
177
+ },
178
+ )
179
+ class DataUpcloudHostsConfig(_cdktf_9a9027ec.TerraformMetaArguments):
180
+ def __init__(
181
+ self,
182
+ *,
183
+ 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,
184
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
185
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
186
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
187
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
188
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
189
+ 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,
190
+ hosts: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudHostsHosts", typing.Dict[builtins.str, typing.Any]]]]] = None,
191
+ ) -> None:
192
+ '''
193
+ :param connection:
194
+ :param count:
195
+ :param depends_on:
196
+ :param for_each:
197
+ :param lifecycle:
198
+ :param provider:
199
+ :param provisioners:
200
+ :param hosts: hosts block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#hosts DataUpcloudHosts#hosts}
201
+ '''
202
+ if isinstance(lifecycle, dict):
203
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
204
+ if __debug__:
205
+ type_hints = typing.get_type_hints(_typecheckingstub__c71d76f9a9b7cdb41f222a245bf375e13d94f8fbcd6cd95cecd24ce47ee0246b)
206
+ check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
207
+ check_type(argname="argument count", value=count, expected_type=type_hints["count"])
208
+ check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
209
+ check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
210
+ check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
211
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
212
+ check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
213
+ check_type(argname="argument hosts", value=hosts, expected_type=type_hints["hosts"])
214
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
215
+ if connection is not None:
216
+ self._values["connection"] = connection
217
+ if count is not None:
218
+ self._values["count"] = count
219
+ if depends_on is not None:
220
+ self._values["depends_on"] = depends_on
221
+ if for_each is not None:
222
+ self._values["for_each"] = for_each
223
+ if lifecycle is not None:
224
+ self._values["lifecycle"] = lifecycle
225
+ if provider is not None:
226
+ self._values["provider"] = provider
227
+ if provisioners is not None:
228
+ self._values["provisioners"] = provisioners
229
+ if hosts is not None:
230
+ self._values["hosts"] = hosts
231
+
232
+ @builtins.property
233
+ def connection(
234
+ self,
235
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
236
+ '''
237
+ :stability: experimental
238
+ '''
239
+ result = self._values.get("connection")
240
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
241
+
242
+ @builtins.property
243
+ def count(
244
+ self,
245
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
246
+ '''
247
+ :stability: experimental
248
+ '''
249
+ result = self._values.get("count")
250
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
251
+
252
+ @builtins.property
253
+ def depends_on(
254
+ self,
255
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
256
+ '''
257
+ :stability: experimental
258
+ '''
259
+ result = self._values.get("depends_on")
260
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
261
+
262
+ @builtins.property
263
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
264
+ '''
265
+ :stability: experimental
266
+ '''
267
+ result = self._values.get("for_each")
268
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
269
+
270
+ @builtins.property
271
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
272
+ '''
273
+ :stability: experimental
274
+ '''
275
+ result = self._values.get("lifecycle")
276
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
277
+
278
+ @builtins.property
279
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
280
+ '''
281
+ :stability: experimental
282
+ '''
283
+ result = self._values.get("provider")
284
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
285
+
286
+ @builtins.property
287
+ def provisioners(
288
+ self,
289
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
290
+ '''
291
+ :stability: experimental
292
+ '''
293
+ result = self._values.get("provisioners")
294
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
295
+
296
+ @builtins.property
297
+ def hosts(
298
+ self,
299
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHosts"]]]:
300
+ '''hosts block.
301
+
302
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#hosts DataUpcloudHosts#hosts}
303
+ '''
304
+ result = self._values.get("hosts")
305
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHosts"]]], result)
306
+
307
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
308
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
309
+
310
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
311
+ return not (rhs == self)
312
+
313
+ def __repr__(self) -> str:
314
+ return "DataUpcloudHostsConfig(%s)" % ", ".join(
315
+ k + "=" + repr(v) for k, v in self._values.items()
316
+ )
317
+
318
+
319
+ @jsii.data_type(
320
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHosts",
321
+ jsii_struct_bases=[],
322
+ name_mapping={"statistics": "statistics"},
323
+ )
324
+ class DataUpcloudHostsHosts:
325
+ def __init__(
326
+ self,
327
+ *,
328
+ statistics: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudHostsHostsStatistics", typing.Dict[builtins.str, typing.Any]]]]] = None,
329
+ ) -> None:
330
+ '''
331
+ :param statistics: statistics block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#statistics DataUpcloudHosts#statistics}
332
+ '''
333
+ if __debug__:
334
+ type_hints = typing.get_type_hints(_typecheckingstub__35ff19b978e1a15cfb5f77b6a4d9da25521117766382dd5efba6f9765d2bdf62)
335
+ check_type(argname="argument statistics", value=statistics, expected_type=type_hints["statistics"])
336
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
337
+ if statistics is not None:
338
+ self._values["statistics"] = statistics
339
+
340
+ @builtins.property
341
+ def statistics(
342
+ self,
343
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHostsStatistics"]]]:
344
+ '''statistics block.
345
+
346
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/hosts#statistics DataUpcloudHosts#statistics}
347
+ '''
348
+ result = self._values.get("statistics")
349
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHostsStatistics"]]], result)
350
+
351
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
352
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
353
+
354
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
355
+ return not (rhs == self)
356
+
357
+ def __repr__(self) -> str:
358
+ return "DataUpcloudHostsHosts(%s)" % ", ".join(
359
+ k + "=" + repr(v) for k, v in self._values.items()
360
+ )
361
+
362
+
363
+ class DataUpcloudHostsHostsList(
364
+ _cdktf_9a9027ec.ComplexList,
365
+ metaclass=jsii.JSIIMeta,
366
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHostsList",
367
+ ):
368
+ def __init__(
369
+ self,
370
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
371
+ terraform_attribute: builtins.str,
372
+ wraps_set: builtins.bool,
373
+ ) -> None:
374
+ '''
375
+ :param terraform_resource: The parent resource.
376
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
377
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
378
+ '''
379
+ if __debug__:
380
+ type_hints = typing.get_type_hints(_typecheckingstub__e98bc9bb41a5a3438457ad792d22a7ce9a6cb9ec50881b12b2ebe07fd0cef852)
381
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
382
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
383
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
384
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
385
+
386
+ @jsii.member(jsii_name="get")
387
+ def get(self, index: jsii.Number) -> "DataUpcloudHostsHostsOutputReference":
388
+ '''
389
+ :param index: the index of the item to return.
390
+ '''
391
+ if __debug__:
392
+ type_hints = typing.get_type_hints(_typecheckingstub__089c020e4037cbc0ef2f6e4c99a5a95aa1649422c41fce315de994afc0995333)
393
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
394
+ return typing.cast("DataUpcloudHostsHostsOutputReference", jsii.invoke(self, "get", [index]))
395
+
396
+ @builtins.property
397
+ @jsii.member(jsii_name="terraformAttribute")
398
+ def _terraform_attribute(self) -> builtins.str:
399
+ '''The attribute on the parent resource this class is referencing.'''
400
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
401
+
402
+ @_terraform_attribute.setter
403
+ def _terraform_attribute(self, value: builtins.str) -> None:
404
+ if __debug__:
405
+ type_hints = typing.get_type_hints(_typecheckingstub__66495fc2cca1d1f9777e5d2a96b6c21f781bec6117f64bf4d1892b177fdc2933)
406
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
407
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
408
+
409
+ @builtins.property
410
+ @jsii.member(jsii_name="terraformResource")
411
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
412
+ '''The parent resource.'''
413
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
414
+
415
+ @_terraform_resource.setter
416
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
417
+ if __debug__:
418
+ type_hints = typing.get_type_hints(_typecheckingstub__abfe0db20f37d168e0a63ffc0ac3a1bbfd53c76d3c2b8170ca4de71d608e6c33)
419
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
420
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
421
+
422
+ @builtins.property
423
+ @jsii.member(jsii_name="wrapsSet")
424
+ def _wraps_set(self) -> builtins.bool:
425
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
426
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
427
+
428
+ @_wraps_set.setter
429
+ def _wraps_set(self, value: builtins.bool) -> None:
430
+ if __debug__:
431
+ type_hints = typing.get_type_hints(_typecheckingstub__c1df1982c3efea1f378d5a156d455fb352ebbfa7e598640e2291c0f658727c29)
432
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
433
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
434
+
435
+ @builtins.property
436
+ @jsii.member(jsii_name="internalValue")
437
+ def internal_value(
438
+ self,
439
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHosts]]]:
440
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHosts]]], jsii.get(self, "internalValue"))
441
+
442
+ @internal_value.setter
443
+ def internal_value(
444
+ self,
445
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHosts]]],
446
+ ) -> None:
447
+ if __debug__:
448
+ type_hints = typing.get_type_hints(_typecheckingstub__d70b1b5386269f6cbfbd3c19f3d095ed48ea6b41c8bc15462d58d8c0748c5eda)
449
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
450
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
451
+
452
+
453
+ class DataUpcloudHostsHostsOutputReference(
454
+ _cdktf_9a9027ec.ComplexObject,
455
+ metaclass=jsii.JSIIMeta,
456
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHostsOutputReference",
457
+ ):
458
+ def __init__(
459
+ self,
460
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
461
+ terraform_attribute: builtins.str,
462
+ complex_object_index: jsii.Number,
463
+ complex_object_is_from_set: builtins.bool,
464
+ ) -> None:
465
+ '''
466
+ :param terraform_resource: The parent resource.
467
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
468
+ :param complex_object_index: the index of this item in the list.
469
+ :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).
470
+ '''
471
+ if __debug__:
472
+ type_hints = typing.get_type_hints(_typecheckingstub__05998a6450eeda80f542ab60cf0fad3a1500b26cdf65521d80a60631f1b11c65)
473
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
474
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
475
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
476
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
477
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
478
+
479
+ @jsii.member(jsii_name="putStatistics")
480
+ def put_statistics(
481
+ self,
482
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudHostsHostsStatistics", typing.Dict[builtins.str, typing.Any]]]],
483
+ ) -> None:
484
+ '''
485
+ :param value: -
486
+ '''
487
+ if __debug__:
488
+ type_hints = typing.get_type_hints(_typecheckingstub__e73c14ba06774179cc22294d43da5d0796ccd5ee98bc2d7a22fc32b3a93906ad)
489
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
490
+ return typing.cast(None, jsii.invoke(self, "putStatistics", [value]))
491
+
492
+ @jsii.member(jsii_name="resetStatistics")
493
+ def reset_statistics(self) -> None:
494
+ return typing.cast(None, jsii.invoke(self, "resetStatistics", []))
495
+
496
+ @builtins.property
497
+ @jsii.member(jsii_name="description")
498
+ def description(self) -> builtins.str:
499
+ return typing.cast(builtins.str, jsii.get(self, "description"))
500
+
501
+ @builtins.property
502
+ @jsii.member(jsii_name="hostId")
503
+ def host_id(self) -> jsii.Number:
504
+ return typing.cast(jsii.Number, jsii.get(self, "hostId"))
505
+
506
+ @builtins.property
507
+ @jsii.member(jsii_name="statistics")
508
+ def statistics(self) -> "DataUpcloudHostsHostsStatisticsList":
509
+ return typing.cast("DataUpcloudHostsHostsStatisticsList", jsii.get(self, "statistics"))
510
+
511
+ @builtins.property
512
+ @jsii.member(jsii_name="windowsEnabled")
513
+ def windows_enabled(self) -> _cdktf_9a9027ec.IResolvable:
514
+ return typing.cast(_cdktf_9a9027ec.IResolvable, jsii.get(self, "windowsEnabled"))
515
+
516
+ @builtins.property
517
+ @jsii.member(jsii_name="zone")
518
+ def zone(self) -> builtins.str:
519
+ return typing.cast(builtins.str, jsii.get(self, "zone"))
520
+
521
+ @builtins.property
522
+ @jsii.member(jsii_name="statisticsInput")
523
+ def statistics_input(
524
+ self,
525
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHostsStatistics"]]]:
526
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudHostsHostsStatistics"]]], jsii.get(self, "statisticsInput"))
527
+
528
+ @builtins.property
529
+ @jsii.member(jsii_name="internalValue")
530
+ def internal_value(
531
+ self,
532
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHosts]]:
533
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHosts]], jsii.get(self, "internalValue"))
534
+
535
+ @internal_value.setter
536
+ def internal_value(
537
+ self,
538
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHosts]],
539
+ ) -> None:
540
+ if __debug__:
541
+ type_hints = typing.get_type_hints(_typecheckingstub__2d367a9e4d095a50a62e730ceb71e847ae15e82a42ec564c26e2a5073fdf119a)
542
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
543
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
544
+
545
+
546
+ @jsii.data_type(
547
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHostsStatistics",
548
+ jsii_struct_bases=[],
549
+ name_mapping={},
550
+ )
551
+ class DataUpcloudHostsHostsStatistics:
552
+ def __init__(self) -> None:
553
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
554
+
555
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
556
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
557
+
558
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
559
+ return not (rhs == self)
560
+
561
+ def __repr__(self) -> str:
562
+ return "DataUpcloudHostsHostsStatistics(%s)" % ", ".join(
563
+ k + "=" + repr(v) for k, v in self._values.items()
564
+ )
565
+
566
+
567
+ class DataUpcloudHostsHostsStatisticsList(
568
+ _cdktf_9a9027ec.ComplexList,
569
+ metaclass=jsii.JSIIMeta,
570
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHostsStatisticsList",
571
+ ):
572
+ def __init__(
573
+ self,
574
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
575
+ terraform_attribute: builtins.str,
576
+ wraps_set: builtins.bool,
577
+ ) -> None:
578
+ '''
579
+ :param terraform_resource: The parent resource.
580
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
581
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
582
+ '''
583
+ if __debug__:
584
+ type_hints = typing.get_type_hints(_typecheckingstub__7dedfb59249494e822b088a3636fcf2b399edd407b71071e9581a1fe2e93cca1)
585
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
586
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
587
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
588
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
589
+
590
+ @jsii.member(jsii_name="get")
591
+ def get(
592
+ self,
593
+ index: jsii.Number,
594
+ ) -> "DataUpcloudHostsHostsStatisticsOutputReference":
595
+ '''
596
+ :param index: the index of the item to return.
597
+ '''
598
+ if __debug__:
599
+ type_hints = typing.get_type_hints(_typecheckingstub__0a4ba93e746596990e351201ff95230798fc6d1fd33463250fe311b3d1dd263b)
600
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
601
+ return typing.cast("DataUpcloudHostsHostsStatisticsOutputReference", jsii.invoke(self, "get", [index]))
602
+
603
+ @builtins.property
604
+ @jsii.member(jsii_name="terraformAttribute")
605
+ def _terraform_attribute(self) -> builtins.str:
606
+ '''The attribute on the parent resource this class is referencing.'''
607
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
608
+
609
+ @_terraform_attribute.setter
610
+ def _terraform_attribute(self, value: builtins.str) -> None:
611
+ if __debug__:
612
+ type_hints = typing.get_type_hints(_typecheckingstub__548840173ef4e623ed49c3d72d141b39f4462eee97b5872f07f920d3e845de85)
613
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
614
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
615
+
616
+ @builtins.property
617
+ @jsii.member(jsii_name="terraformResource")
618
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
619
+ '''The parent resource.'''
620
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
621
+
622
+ @_terraform_resource.setter
623
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
624
+ if __debug__:
625
+ type_hints = typing.get_type_hints(_typecheckingstub__d5ccdcc6fdc25dccd12fea6d5581930b4dc93be047e04574472c9b8ff0f40291)
626
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
627
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
628
+
629
+ @builtins.property
630
+ @jsii.member(jsii_name="wrapsSet")
631
+ def _wraps_set(self) -> builtins.bool:
632
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
633
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
634
+
635
+ @_wraps_set.setter
636
+ def _wraps_set(self, value: builtins.bool) -> None:
637
+ if __debug__:
638
+ type_hints = typing.get_type_hints(_typecheckingstub__4d26f058718ea0fb62657337b3722656f15117b8959e3f45a4f5adffdac21b47)
639
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
640
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
641
+
642
+ @builtins.property
643
+ @jsii.member(jsii_name="internalValue")
644
+ def internal_value(
645
+ self,
646
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHostsStatistics]]]:
647
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHostsStatistics]]], jsii.get(self, "internalValue"))
648
+
649
+ @internal_value.setter
650
+ def internal_value(
651
+ self,
652
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHostsStatistics]]],
653
+ ) -> None:
654
+ if __debug__:
655
+ type_hints = typing.get_type_hints(_typecheckingstub__7ef3758f16017c8bb53e9c327a65420f4fbbab7791c076bc85b3543dff4c44bf)
656
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
657
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
658
+
659
+
660
+ class DataUpcloudHostsHostsStatisticsOutputReference(
661
+ _cdktf_9a9027ec.ComplexObject,
662
+ metaclass=jsii.JSIIMeta,
663
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudHosts.DataUpcloudHostsHostsStatisticsOutputReference",
664
+ ):
665
+ def __init__(
666
+ self,
667
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
668
+ terraform_attribute: builtins.str,
669
+ complex_object_index: jsii.Number,
670
+ complex_object_is_from_set: builtins.bool,
671
+ ) -> None:
672
+ '''
673
+ :param terraform_resource: The parent resource.
674
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
675
+ :param complex_object_index: the index of this item in the list.
676
+ :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).
677
+ '''
678
+ if __debug__:
679
+ type_hints = typing.get_type_hints(_typecheckingstub__f69484748dbed023c317168ab9d6162bf7a9c5c624a7f78a17aed5d4bc77bf06)
680
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
681
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
682
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
683
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
684
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
685
+
686
+ @builtins.property
687
+ @jsii.member(jsii_name="name")
688
+ def name(self) -> builtins.str:
689
+ return typing.cast(builtins.str, jsii.get(self, "name"))
690
+
691
+ @builtins.property
692
+ @jsii.member(jsii_name="timestamp")
693
+ def timestamp(self) -> builtins.str:
694
+ return typing.cast(builtins.str, jsii.get(self, "timestamp"))
695
+
696
+ @builtins.property
697
+ @jsii.member(jsii_name="value")
698
+ def value(self) -> jsii.Number:
699
+ return typing.cast(jsii.Number, jsii.get(self, "value"))
700
+
701
+ @builtins.property
702
+ @jsii.member(jsii_name="internalValue")
703
+ def internal_value(
704
+ self,
705
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHostsStatistics]]:
706
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHostsStatistics]], jsii.get(self, "internalValue"))
707
+
708
+ @internal_value.setter
709
+ def internal_value(
710
+ self,
711
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHostsStatistics]],
712
+ ) -> None:
713
+ if __debug__:
714
+ type_hints = typing.get_type_hints(_typecheckingstub__9434148a9057721ade8529ad5e0469ca3b6185bf3975a959f2870d9c96a324ce)
715
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
716
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
717
+
718
+
719
+ __all__ = [
720
+ "DataUpcloudHosts",
721
+ "DataUpcloudHostsConfig",
722
+ "DataUpcloudHostsHosts",
723
+ "DataUpcloudHostsHostsList",
724
+ "DataUpcloudHostsHostsOutputReference",
725
+ "DataUpcloudHostsHostsStatistics",
726
+ "DataUpcloudHostsHostsStatisticsList",
727
+ "DataUpcloudHostsHostsStatisticsOutputReference",
728
+ ]
729
+
730
+ publication.publish()
731
+
732
+ def _typecheckingstub__799d22cd86ca6a5ffd3e901068e17fe5003171b013c9fcb80b11925031eee95d(
733
+ scope: _constructs_77d1e7e8.Construct,
734
+ id: builtins.str,
735
+ *,
736
+ hosts: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudHostsHosts, typing.Dict[builtins.str, typing.Any]]]]] = None,
737
+ 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,
738
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
739
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
740
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
741
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
742
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
743
+ 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,
744
+ ) -> None:
745
+ """Type checking stubs"""
746
+ pass
747
+
748
+ def _typecheckingstub__9e41a3d099f0ffb0f2b630feb031e7bc139e2b5ad30f1f3179fa293edfeb4908(
749
+ scope: _constructs_77d1e7e8.Construct,
750
+ import_to_id: builtins.str,
751
+ import_from_id: builtins.str,
752
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
753
+ ) -> None:
754
+ """Type checking stubs"""
755
+ pass
756
+
757
+ def _typecheckingstub__922a2bcf6b952cbfe0ebf741c2a4cb202efe0f123eaa25f7dc287554f3dd1497(
758
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudHostsHosts, typing.Dict[builtins.str, typing.Any]]]],
759
+ ) -> None:
760
+ """Type checking stubs"""
761
+ pass
762
+
763
+ def _typecheckingstub__c71d76f9a9b7cdb41f222a245bf375e13d94f8fbcd6cd95cecd24ce47ee0246b(
764
+ *,
765
+ 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,
766
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
767
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
768
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
769
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
770
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
771
+ 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,
772
+ hosts: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudHostsHosts, typing.Dict[builtins.str, typing.Any]]]]] = None,
773
+ ) -> None:
774
+ """Type checking stubs"""
775
+ pass
776
+
777
+ def _typecheckingstub__35ff19b978e1a15cfb5f77b6a4d9da25521117766382dd5efba6f9765d2bdf62(
778
+ *,
779
+ statistics: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudHostsHostsStatistics, typing.Dict[builtins.str, typing.Any]]]]] = None,
780
+ ) -> None:
781
+ """Type checking stubs"""
782
+ pass
783
+
784
+ def _typecheckingstub__e98bc9bb41a5a3438457ad792d22a7ce9a6cb9ec50881b12b2ebe07fd0cef852(
785
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
786
+ terraform_attribute: builtins.str,
787
+ wraps_set: builtins.bool,
788
+ ) -> None:
789
+ """Type checking stubs"""
790
+ pass
791
+
792
+ def _typecheckingstub__089c020e4037cbc0ef2f6e4c99a5a95aa1649422c41fce315de994afc0995333(
793
+ index: jsii.Number,
794
+ ) -> None:
795
+ """Type checking stubs"""
796
+ pass
797
+
798
+ def _typecheckingstub__66495fc2cca1d1f9777e5d2a96b6c21f781bec6117f64bf4d1892b177fdc2933(
799
+ value: builtins.str,
800
+ ) -> None:
801
+ """Type checking stubs"""
802
+ pass
803
+
804
+ def _typecheckingstub__abfe0db20f37d168e0a63ffc0ac3a1bbfd53c76d3c2b8170ca4de71d608e6c33(
805
+ value: _cdktf_9a9027ec.IInterpolatingParent,
806
+ ) -> None:
807
+ """Type checking stubs"""
808
+ pass
809
+
810
+ def _typecheckingstub__c1df1982c3efea1f378d5a156d455fb352ebbfa7e598640e2291c0f658727c29(
811
+ value: builtins.bool,
812
+ ) -> None:
813
+ """Type checking stubs"""
814
+ pass
815
+
816
+ def _typecheckingstub__d70b1b5386269f6cbfbd3c19f3d095ed48ea6b41c8bc15462d58d8c0748c5eda(
817
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHosts]]],
818
+ ) -> None:
819
+ """Type checking stubs"""
820
+ pass
821
+
822
+ def _typecheckingstub__05998a6450eeda80f542ab60cf0fad3a1500b26cdf65521d80a60631f1b11c65(
823
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
824
+ terraform_attribute: builtins.str,
825
+ complex_object_index: jsii.Number,
826
+ complex_object_is_from_set: builtins.bool,
827
+ ) -> None:
828
+ """Type checking stubs"""
829
+ pass
830
+
831
+ def _typecheckingstub__e73c14ba06774179cc22294d43da5d0796ccd5ee98bc2d7a22fc32b3a93906ad(
832
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudHostsHostsStatistics, typing.Dict[builtins.str, typing.Any]]]],
833
+ ) -> None:
834
+ """Type checking stubs"""
835
+ pass
836
+
837
+ def _typecheckingstub__2d367a9e4d095a50a62e730ceb71e847ae15e82a42ec564c26e2a5073fdf119a(
838
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHosts]],
839
+ ) -> None:
840
+ """Type checking stubs"""
841
+ pass
842
+
843
+ def _typecheckingstub__7dedfb59249494e822b088a3636fcf2b399edd407b71071e9581a1fe2e93cca1(
844
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
845
+ terraform_attribute: builtins.str,
846
+ wraps_set: builtins.bool,
847
+ ) -> None:
848
+ """Type checking stubs"""
849
+ pass
850
+
851
+ def _typecheckingstub__0a4ba93e746596990e351201ff95230798fc6d1fd33463250fe311b3d1dd263b(
852
+ index: jsii.Number,
853
+ ) -> None:
854
+ """Type checking stubs"""
855
+ pass
856
+
857
+ def _typecheckingstub__548840173ef4e623ed49c3d72d141b39f4462eee97b5872f07f920d3e845de85(
858
+ value: builtins.str,
859
+ ) -> None:
860
+ """Type checking stubs"""
861
+ pass
862
+
863
+ def _typecheckingstub__d5ccdcc6fdc25dccd12fea6d5581930b4dc93be047e04574472c9b8ff0f40291(
864
+ value: _cdktf_9a9027ec.IInterpolatingParent,
865
+ ) -> None:
866
+ """Type checking stubs"""
867
+ pass
868
+
869
+ def _typecheckingstub__4d26f058718ea0fb62657337b3722656f15117b8959e3f45a4f5adffdac21b47(
870
+ value: builtins.bool,
871
+ ) -> None:
872
+ """Type checking stubs"""
873
+ pass
874
+
875
+ def _typecheckingstub__7ef3758f16017c8bb53e9c327a65420f4fbbab7791c076bc85b3543dff4c44bf(
876
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudHostsHostsStatistics]]],
877
+ ) -> None:
878
+ """Type checking stubs"""
879
+ pass
880
+
881
+ def _typecheckingstub__f69484748dbed023c317168ab9d6162bf7a9c5c624a7f78a17aed5d4bc77bf06(
882
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
883
+ terraform_attribute: builtins.str,
884
+ complex_object_index: jsii.Number,
885
+ complex_object_is_from_set: builtins.bool,
886
+ ) -> None:
887
+ """Type checking stubs"""
888
+ pass
889
+
890
+ def _typecheckingstub__9434148a9057721ade8529ad5e0469ca3b6185bf3975a959f2870d9c96a324ce(
891
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudHostsHostsStatistics]],
892
+ ) -> None:
893
+ """Type checking stubs"""
894
+ pass