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,1198 @@
1
+ r'''
2
+ # `upcloud_managed_object_storage`
3
+
4
+ Refer to the Terraform Registry for docs: [`upcloud_managed_object_storage`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage).
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 ManagedObjectStorage(
43
+ _cdktf_9a9027ec.TerraformResource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorage",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage upcloud_managed_object_storage}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id_: builtins.str,
53
+ *,
54
+ configured_status: builtins.str,
55
+ name: builtins.str,
56
+ region: builtins.str,
57
+ id: typing.Optional[builtins.str] = None,
58
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
59
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedObjectStorageNetwork", typing.Dict[builtins.str, typing.Any]]]]] = 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/managed_object_storage upcloud_managed_object_storage} 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 configured_status: Service status managed by the end user. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#configured_status ManagedObjectStorage#configured_status}
73
+ :param name: Name of the Managed Object Storage service. Must be unique within account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#name ManagedObjectStorage#name}
74
+ :param region: Region in which the service will be hosted, see ``upcloud_managed_object_storage_regions`` data source. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#region ManagedObjectStorage#region}
75
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#id ManagedObjectStorage#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.
76
+ :param labels: User defined key-value pairs to classify the managed object storage. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#labels ManagedObjectStorage#labels}
77
+ :param network: network block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#network ManagedObjectStorage#network}
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__67eb4894179d4e215bc9d54e20798fee9bfd257ea1bb9f001d710e7f96073c65)
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 = ManagedObjectStorageConfig(
91
+ configured_status=configured_status,
92
+ name=name,
93
+ region=region,
94
+ id=id,
95
+ labels=labels,
96
+ network=network,
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 ManagedObjectStorage 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 ManagedObjectStorage to import.
121
+ :param import_from_id: The id of the existing ManagedObjectStorage that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#import import section} in the documentation of this resource for the id to use
122
+ :param provider: ? Optional instance of the provider where the ManagedObjectStorage to import is found.
123
+ '''
124
+ if __debug__:
125
+ type_hints = typing.get_type_hints(_typecheckingstub__a5b9595098776276b59a4bbbb694a752e493fcbaf80709d00cc6da6e931aeaa3)
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="putNetwork")
133
+ def put_network(
134
+ self,
135
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedObjectStorageNetwork", typing.Dict[builtins.str, typing.Any]]]],
136
+ ) -> None:
137
+ '''
138
+ :param value: -
139
+ '''
140
+ if __debug__:
141
+ type_hints = typing.get_type_hints(_typecheckingstub__24e1b5fd7b19fbac8e1ce286848ff79f1332b22f3d5626dc216b2cb32408e1fe)
142
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
143
+ return typing.cast(None, jsii.invoke(self, "putNetwork", [value]))
144
+
145
+ @jsii.member(jsii_name="resetId")
146
+ def reset_id(self) -> None:
147
+ return typing.cast(None, jsii.invoke(self, "resetId", []))
148
+
149
+ @jsii.member(jsii_name="resetLabels")
150
+ def reset_labels(self) -> None:
151
+ return typing.cast(None, jsii.invoke(self, "resetLabels", []))
152
+
153
+ @jsii.member(jsii_name="resetNetwork")
154
+ def reset_network(self) -> None:
155
+ return typing.cast(None, jsii.invoke(self, "resetNetwork", []))
156
+
157
+ @jsii.member(jsii_name="synthesizeAttributes")
158
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
159
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
160
+
161
+ @jsii.member(jsii_name="synthesizeHclAttributes")
162
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
163
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
164
+
165
+ @jsii.python.classproperty
166
+ @jsii.member(jsii_name="tfResourceType")
167
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
168
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
169
+
170
+ @builtins.property
171
+ @jsii.member(jsii_name="createdAt")
172
+ def created_at(self) -> builtins.str:
173
+ return typing.cast(builtins.str, jsii.get(self, "createdAt"))
174
+
175
+ @builtins.property
176
+ @jsii.member(jsii_name="endpoint")
177
+ def endpoint(self) -> "ManagedObjectStorageEndpointList":
178
+ return typing.cast("ManagedObjectStorageEndpointList", jsii.get(self, "endpoint"))
179
+
180
+ @builtins.property
181
+ @jsii.member(jsii_name="network")
182
+ def network(self) -> "ManagedObjectStorageNetworkList":
183
+ return typing.cast("ManagedObjectStorageNetworkList", jsii.get(self, "network"))
184
+
185
+ @builtins.property
186
+ @jsii.member(jsii_name="operationalState")
187
+ def operational_state(self) -> builtins.str:
188
+ return typing.cast(builtins.str, jsii.get(self, "operationalState"))
189
+
190
+ @builtins.property
191
+ @jsii.member(jsii_name="updatedAt")
192
+ def updated_at(self) -> builtins.str:
193
+ return typing.cast(builtins.str, jsii.get(self, "updatedAt"))
194
+
195
+ @builtins.property
196
+ @jsii.member(jsii_name="configuredStatusInput")
197
+ def configured_status_input(self) -> typing.Optional[builtins.str]:
198
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "configuredStatusInput"))
199
+
200
+ @builtins.property
201
+ @jsii.member(jsii_name="idInput")
202
+ def id_input(self) -> typing.Optional[builtins.str]:
203
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idInput"))
204
+
205
+ @builtins.property
206
+ @jsii.member(jsii_name="labelsInput")
207
+ def labels_input(
208
+ self,
209
+ ) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
210
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "labelsInput"))
211
+
212
+ @builtins.property
213
+ @jsii.member(jsii_name="nameInput")
214
+ def name_input(self) -> typing.Optional[builtins.str]:
215
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
216
+
217
+ @builtins.property
218
+ @jsii.member(jsii_name="networkInput")
219
+ def network_input(
220
+ self,
221
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedObjectStorageNetwork"]]]:
222
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedObjectStorageNetwork"]]], jsii.get(self, "networkInput"))
223
+
224
+ @builtins.property
225
+ @jsii.member(jsii_name="regionInput")
226
+ def region_input(self) -> typing.Optional[builtins.str]:
227
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "regionInput"))
228
+
229
+ @builtins.property
230
+ @jsii.member(jsii_name="configuredStatus")
231
+ def configured_status(self) -> builtins.str:
232
+ return typing.cast(builtins.str, jsii.get(self, "configuredStatus"))
233
+
234
+ @configured_status.setter
235
+ def configured_status(self, value: builtins.str) -> None:
236
+ if __debug__:
237
+ type_hints = typing.get_type_hints(_typecheckingstub__0e536a769e0c4ea2c1fa642b0d3271f59192d750006e68a3ea01af3c124ce9cb)
238
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
239
+ jsii.set(self, "configuredStatus", value) # pyright: ignore[reportArgumentType]
240
+
241
+ @builtins.property
242
+ @jsii.member(jsii_name="id")
243
+ def id(self) -> builtins.str:
244
+ return typing.cast(builtins.str, jsii.get(self, "id"))
245
+
246
+ @id.setter
247
+ def id(self, value: builtins.str) -> None:
248
+ if __debug__:
249
+ type_hints = typing.get_type_hints(_typecheckingstub__936c1967c2f6d85083875e705cd1723161beda1033048be41ce615d5c3485bd8)
250
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
251
+ jsii.set(self, "id", value) # pyright: ignore[reportArgumentType]
252
+
253
+ @builtins.property
254
+ @jsii.member(jsii_name="labels")
255
+ def labels(self) -> typing.Mapping[builtins.str, builtins.str]:
256
+ return typing.cast(typing.Mapping[builtins.str, builtins.str], jsii.get(self, "labels"))
257
+
258
+ @labels.setter
259
+ def labels(self, value: typing.Mapping[builtins.str, builtins.str]) -> None:
260
+ if __debug__:
261
+ type_hints = typing.get_type_hints(_typecheckingstub__c1d08e966c69d29e85c936a4475ed3785dcc5cf59d162fd3caaf760849da7bec)
262
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
263
+ jsii.set(self, "labels", 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__a7b8baec7ca6ff3a10221df9edafc03d4176bc675c53cf766394fa31833f3b2c)
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="region")
279
+ def region(self) -> builtins.str:
280
+ return typing.cast(builtins.str, jsii.get(self, "region"))
281
+
282
+ @region.setter
283
+ def region(self, value: builtins.str) -> None:
284
+ if __debug__:
285
+ type_hints = typing.get_type_hints(_typecheckingstub__90842a5303e6e9317bed1eda03f130f6a443f3a01cd23a3ffca3782dec6727eb)
286
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
287
+ jsii.set(self, "region", value) # pyright: ignore[reportArgumentType]
288
+
289
+
290
+ @jsii.data_type(
291
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageConfig",
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
+ "configured_status": "configuredStatus",
302
+ "name": "name",
303
+ "region": "region",
304
+ "id": "id",
305
+ "labels": "labels",
306
+ "network": "network",
307
+ },
308
+ )
309
+ class ManagedObjectStorageConfig(_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
+ configured_status: builtins.str,
321
+ name: builtins.str,
322
+ region: builtins.str,
323
+ id: typing.Optional[builtins.str] = None,
324
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
325
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedObjectStorageNetwork", typing.Dict[builtins.str, typing.Any]]]]] = 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 configured_status: Service status managed by the end user. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#configured_status ManagedObjectStorage#configured_status}
336
+ :param name: Name of the Managed Object Storage service. Must be unique within account. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#name ManagedObjectStorage#name}
337
+ :param region: Region in which the service will be hosted, see ``upcloud_managed_object_storage_regions`` data source. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#region ManagedObjectStorage#region}
338
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#id ManagedObjectStorage#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.
339
+ :param labels: User defined key-value pairs to classify the managed object storage. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#labels ManagedObjectStorage#labels}
340
+ :param network: network block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#network ManagedObjectStorage#network}
341
+ '''
342
+ if isinstance(lifecycle, dict):
343
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
344
+ if __debug__:
345
+ type_hints = typing.get_type_hints(_typecheckingstub__5bc8c4570f5be205a661cce154acab9795759bf5637ae33f864c49dd16e9968b)
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 configured_status", value=configured_status, expected_type=type_hints["configured_status"])
354
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
355
+ check_type(argname="argument region", value=region, expected_type=type_hints["region"])
356
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
357
+ check_type(argname="argument labels", value=labels, expected_type=type_hints["labels"])
358
+ check_type(argname="argument network", value=network, expected_type=type_hints["network"])
359
+ self._values: typing.Dict[builtins.str, typing.Any] = {
360
+ "configured_status": configured_status,
361
+ "name": name,
362
+ "region": region,
363
+ }
364
+ if connection is not None:
365
+ self._values["connection"] = connection
366
+ if count is not None:
367
+ self._values["count"] = count
368
+ if depends_on is not None:
369
+ self._values["depends_on"] = depends_on
370
+ if for_each is not None:
371
+ self._values["for_each"] = for_each
372
+ if lifecycle is not None:
373
+ self._values["lifecycle"] = lifecycle
374
+ if provider is not None:
375
+ self._values["provider"] = provider
376
+ if provisioners is not None:
377
+ self._values["provisioners"] = provisioners
378
+ if id is not None:
379
+ self._values["id"] = id
380
+ if labels is not None:
381
+ self._values["labels"] = labels
382
+ if network is not None:
383
+ self._values["network"] = network
384
+
385
+ @builtins.property
386
+ def connection(
387
+ self,
388
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
389
+ '''
390
+ :stability: experimental
391
+ '''
392
+ result = self._values.get("connection")
393
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
394
+
395
+ @builtins.property
396
+ def count(
397
+ self,
398
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
399
+ '''
400
+ :stability: experimental
401
+ '''
402
+ result = self._values.get("count")
403
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
404
+
405
+ @builtins.property
406
+ def depends_on(
407
+ self,
408
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
409
+ '''
410
+ :stability: experimental
411
+ '''
412
+ result = self._values.get("depends_on")
413
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
414
+
415
+ @builtins.property
416
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
417
+ '''
418
+ :stability: experimental
419
+ '''
420
+ result = self._values.get("for_each")
421
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
422
+
423
+ @builtins.property
424
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
425
+ '''
426
+ :stability: experimental
427
+ '''
428
+ result = self._values.get("lifecycle")
429
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
430
+
431
+ @builtins.property
432
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
433
+ '''
434
+ :stability: experimental
435
+ '''
436
+ result = self._values.get("provider")
437
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
438
+
439
+ @builtins.property
440
+ def provisioners(
441
+ self,
442
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
443
+ '''
444
+ :stability: experimental
445
+ '''
446
+ result = self._values.get("provisioners")
447
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
448
+
449
+ @builtins.property
450
+ def configured_status(self) -> builtins.str:
451
+ '''Service status managed by the end user.
452
+
453
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#configured_status ManagedObjectStorage#configured_status}
454
+ '''
455
+ result = self._values.get("configured_status")
456
+ assert result is not None, "Required property 'configured_status' is missing"
457
+ return typing.cast(builtins.str, result)
458
+
459
+ @builtins.property
460
+ def name(self) -> builtins.str:
461
+ '''Name of the Managed Object Storage service. Must be unique within account.
462
+
463
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#name ManagedObjectStorage#name}
464
+ '''
465
+ result = self._values.get("name")
466
+ assert result is not None, "Required property 'name' is missing"
467
+ return typing.cast(builtins.str, result)
468
+
469
+ @builtins.property
470
+ def region(self) -> builtins.str:
471
+ '''Region in which the service will be hosted, see ``upcloud_managed_object_storage_regions`` data source.
472
+
473
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#region ManagedObjectStorage#region}
474
+ '''
475
+ result = self._values.get("region")
476
+ assert result is not None, "Required property 'region' is missing"
477
+ return typing.cast(builtins.str, result)
478
+
479
+ @builtins.property
480
+ def id(self) -> typing.Optional[builtins.str]:
481
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#id ManagedObjectStorage#id}.
482
+
483
+ Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
484
+ 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.
485
+ '''
486
+ result = self._values.get("id")
487
+ return typing.cast(typing.Optional[builtins.str], result)
488
+
489
+ @builtins.property
490
+ def labels(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
491
+ '''User defined key-value pairs to classify the managed object storage.
492
+
493
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#labels ManagedObjectStorage#labels}
494
+ '''
495
+ result = self._values.get("labels")
496
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
497
+
498
+ @builtins.property
499
+ def network(
500
+ self,
501
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedObjectStorageNetwork"]]]:
502
+ '''network block.
503
+
504
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#network ManagedObjectStorage#network}
505
+ '''
506
+ result = self._values.get("network")
507
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedObjectStorageNetwork"]]], result)
508
+
509
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
510
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
511
+
512
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
513
+ return not (rhs == self)
514
+
515
+ def __repr__(self) -> str:
516
+ return "ManagedObjectStorageConfig(%s)" % ", ".join(
517
+ k + "=" + repr(v) for k, v in self._values.items()
518
+ )
519
+
520
+
521
+ @jsii.data_type(
522
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageEndpoint",
523
+ jsii_struct_bases=[],
524
+ name_mapping={},
525
+ )
526
+ class ManagedObjectStorageEndpoint:
527
+ def __init__(self) -> None:
528
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
529
+
530
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
531
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
532
+
533
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
534
+ return not (rhs == self)
535
+
536
+ def __repr__(self) -> str:
537
+ return "ManagedObjectStorageEndpoint(%s)" % ", ".join(
538
+ k + "=" + repr(v) for k, v in self._values.items()
539
+ )
540
+
541
+
542
+ class ManagedObjectStorageEndpointList(
543
+ _cdktf_9a9027ec.ComplexList,
544
+ metaclass=jsii.JSIIMeta,
545
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageEndpointList",
546
+ ):
547
+ def __init__(
548
+ self,
549
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
550
+ terraform_attribute: builtins.str,
551
+ wraps_set: builtins.bool,
552
+ ) -> None:
553
+ '''
554
+ :param terraform_resource: The parent resource.
555
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
556
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
557
+ '''
558
+ if __debug__:
559
+ type_hints = typing.get_type_hints(_typecheckingstub__77e171cfdccb7f0af5e14127b545591933e748abc57bc1e9e3c8011b2b10d60e)
560
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
561
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
562
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
563
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
564
+
565
+ @jsii.member(jsii_name="get")
566
+ def get(self, index: jsii.Number) -> "ManagedObjectStorageEndpointOutputReference":
567
+ '''
568
+ :param index: the index of the item to return.
569
+ '''
570
+ if __debug__:
571
+ type_hints = typing.get_type_hints(_typecheckingstub__7514ddcdc00e4efc822c232f3362031faf566f79bfae05f9f6ab50f2012b1c31)
572
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
573
+ return typing.cast("ManagedObjectStorageEndpointOutputReference", jsii.invoke(self, "get", [index]))
574
+
575
+ @builtins.property
576
+ @jsii.member(jsii_name="terraformAttribute")
577
+ def _terraform_attribute(self) -> builtins.str:
578
+ '''The attribute on the parent resource this class is referencing.'''
579
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
580
+
581
+ @_terraform_attribute.setter
582
+ def _terraform_attribute(self, value: builtins.str) -> None:
583
+ if __debug__:
584
+ type_hints = typing.get_type_hints(_typecheckingstub__a16990c61c8bdd6b77cb441fdb203e6be97947af52729fa0e842000f92f243fa)
585
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
586
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
587
+
588
+ @builtins.property
589
+ @jsii.member(jsii_name="terraformResource")
590
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
591
+ '''The parent resource.'''
592
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
593
+
594
+ @_terraform_resource.setter
595
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
596
+ if __debug__:
597
+ type_hints = typing.get_type_hints(_typecheckingstub__84473b7f7c0aa5d9b535c7f027d04d9d84000cd8d0fba8c0b16aa0c341ba671b)
598
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
599
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
600
+
601
+ @builtins.property
602
+ @jsii.member(jsii_name="wrapsSet")
603
+ def _wraps_set(self) -> builtins.bool:
604
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
605
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
606
+
607
+ @_wraps_set.setter
608
+ def _wraps_set(self, value: builtins.bool) -> None:
609
+ if __debug__:
610
+ type_hints = typing.get_type_hints(_typecheckingstub__849f484262d362b94fa8188afc80e3fba0b97eb5e5b11b179eabb1c43700b9da)
611
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
612
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
613
+
614
+
615
+ class ManagedObjectStorageEndpointOutputReference(
616
+ _cdktf_9a9027ec.ComplexObject,
617
+ metaclass=jsii.JSIIMeta,
618
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageEndpointOutputReference",
619
+ ):
620
+ def __init__(
621
+ self,
622
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
623
+ terraform_attribute: builtins.str,
624
+ complex_object_index: jsii.Number,
625
+ complex_object_is_from_set: builtins.bool,
626
+ ) -> None:
627
+ '''
628
+ :param terraform_resource: The parent resource.
629
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
630
+ :param complex_object_index: the index of this item in the list.
631
+ :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).
632
+ '''
633
+ if __debug__:
634
+ type_hints = typing.get_type_hints(_typecheckingstub__9e55550b8c8405d5527ef3e85c864ed41cb3caf182d820f3f6f9c149835bb4a7)
635
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
636
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
637
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
638
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
639
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
640
+
641
+ @builtins.property
642
+ @jsii.member(jsii_name="domainName")
643
+ def domain_name(self) -> builtins.str:
644
+ return typing.cast(builtins.str, jsii.get(self, "domainName"))
645
+
646
+ @builtins.property
647
+ @jsii.member(jsii_name="iamUrl")
648
+ def iam_url(self) -> builtins.str:
649
+ return typing.cast(builtins.str, jsii.get(self, "iamUrl"))
650
+
651
+ @builtins.property
652
+ @jsii.member(jsii_name="stsUrl")
653
+ def sts_url(self) -> builtins.str:
654
+ return typing.cast(builtins.str, jsii.get(self, "stsUrl"))
655
+
656
+ @builtins.property
657
+ @jsii.member(jsii_name="type")
658
+ def type(self) -> builtins.str:
659
+ return typing.cast(builtins.str, jsii.get(self, "type"))
660
+
661
+ @builtins.property
662
+ @jsii.member(jsii_name="internalValue")
663
+ def internal_value(self) -> typing.Optional[ManagedObjectStorageEndpoint]:
664
+ return typing.cast(typing.Optional[ManagedObjectStorageEndpoint], jsii.get(self, "internalValue"))
665
+
666
+ @internal_value.setter
667
+ def internal_value(
668
+ self,
669
+ value: typing.Optional[ManagedObjectStorageEndpoint],
670
+ ) -> None:
671
+ if __debug__:
672
+ type_hints = typing.get_type_hints(_typecheckingstub__d7396e44a15cd8c23d391f8bbd2049ab6b56aefb072fc1c6c90490b983c8a3cb)
673
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
674
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
675
+
676
+
677
+ @jsii.data_type(
678
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageNetwork",
679
+ jsii_struct_bases=[],
680
+ name_mapping={"family": "family", "name": "name", "type": "type", "uuid": "uuid"},
681
+ )
682
+ class ManagedObjectStorageNetwork:
683
+ def __init__(
684
+ self,
685
+ *,
686
+ family: builtins.str,
687
+ name: builtins.str,
688
+ type: builtins.str,
689
+ uuid: typing.Optional[builtins.str] = None,
690
+ ) -> None:
691
+ '''
692
+ :param family: Network family. IPv6 currently not supported. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#family ManagedObjectStorage#family}
693
+ :param name: Network name. Must be unique within the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#name ManagedObjectStorage#name}
694
+ :param type: Network type. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#type ManagedObjectStorage#type}
695
+ :param uuid: Private network uuid. For public networks the field should be omitted. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#uuid ManagedObjectStorage#uuid}
696
+ '''
697
+ if __debug__:
698
+ type_hints = typing.get_type_hints(_typecheckingstub__e0b4cf2c0c7cafd7ef12c89dc0e6b0cfa51d36f6f4f675bbbf61646c2cf485ca)
699
+ check_type(argname="argument family", value=family, expected_type=type_hints["family"])
700
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
701
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
702
+ check_type(argname="argument uuid", value=uuid, expected_type=type_hints["uuid"])
703
+ self._values: typing.Dict[builtins.str, typing.Any] = {
704
+ "family": family,
705
+ "name": name,
706
+ "type": type,
707
+ }
708
+ if uuid is not None:
709
+ self._values["uuid"] = uuid
710
+
711
+ @builtins.property
712
+ def family(self) -> builtins.str:
713
+ '''Network family. IPv6 currently not supported.
714
+
715
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#family ManagedObjectStorage#family}
716
+ '''
717
+ result = self._values.get("family")
718
+ assert result is not None, "Required property 'family' is missing"
719
+ return typing.cast(builtins.str, result)
720
+
721
+ @builtins.property
722
+ def name(self) -> builtins.str:
723
+ '''Network name. Must be unique within the service.
724
+
725
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#name ManagedObjectStorage#name}
726
+ '''
727
+ result = self._values.get("name")
728
+ assert result is not None, "Required property 'name' is missing"
729
+ return typing.cast(builtins.str, result)
730
+
731
+ @builtins.property
732
+ def type(self) -> builtins.str:
733
+ '''Network type.
734
+
735
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#type ManagedObjectStorage#type}
736
+ '''
737
+ result = self._values.get("type")
738
+ assert result is not None, "Required property 'type' is missing"
739
+ return typing.cast(builtins.str, result)
740
+
741
+ @builtins.property
742
+ def uuid(self) -> typing.Optional[builtins.str]:
743
+ '''Private network uuid. For public networks the field should be omitted.
744
+
745
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_object_storage#uuid ManagedObjectStorage#uuid}
746
+ '''
747
+ result = self._values.get("uuid")
748
+ return typing.cast(typing.Optional[builtins.str], result)
749
+
750
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
751
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
752
+
753
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
754
+ return not (rhs == self)
755
+
756
+ def __repr__(self) -> str:
757
+ return "ManagedObjectStorageNetwork(%s)" % ", ".join(
758
+ k + "=" + repr(v) for k, v in self._values.items()
759
+ )
760
+
761
+
762
+ class ManagedObjectStorageNetworkList(
763
+ _cdktf_9a9027ec.ComplexList,
764
+ metaclass=jsii.JSIIMeta,
765
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageNetworkList",
766
+ ):
767
+ def __init__(
768
+ self,
769
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
770
+ terraform_attribute: builtins.str,
771
+ wraps_set: builtins.bool,
772
+ ) -> None:
773
+ '''
774
+ :param terraform_resource: The parent resource.
775
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
776
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
777
+ '''
778
+ if __debug__:
779
+ type_hints = typing.get_type_hints(_typecheckingstub__ca386d8b3a621d46fc64b458f19c9c4b1f12ceacaf968cfd7ad1dfe2a5908e88)
780
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
781
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
782
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
783
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
784
+
785
+ @jsii.member(jsii_name="get")
786
+ def get(self, index: jsii.Number) -> "ManagedObjectStorageNetworkOutputReference":
787
+ '''
788
+ :param index: the index of the item to return.
789
+ '''
790
+ if __debug__:
791
+ type_hints = typing.get_type_hints(_typecheckingstub__644b605975a9119aa74c2793c72d834a61739217e7213322e28d11f5e22644f4)
792
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
793
+ return typing.cast("ManagedObjectStorageNetworkOutputReference", jsii.invoke(self, "get", [index]))
794
+
795
+ @builtins.property
796
+ @jsii.member(jsii_name="terraformAttribute")
797
+ def _terraform_attribute(self) -> builtins.str:
798
+ '''The attribute on the parent resource this class is referencing.'''
799
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
800
+
801
+ @_terraform_attribute.setter
802
+ def _terraform_attribute(self, value: builtins.str) -> None:
803
+ if __debug__:
804
+ type_hints = typing.get_type_hints(_typecheckingstub__6185e6ef9a4cf2f62e48a4a1ad1cdc16fffee5ab9692a90dc6a69ff4e6531062)
805
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
806
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
807
+
808
+ @builtins.property
809
+ @jsii.member(jsii_name="terraformResource")
810
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
811
+ '''The parent resource.'''
812
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
813
+
814
+ @_terraform_resource.setter
815
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
816
+ if __debug__:
817
+ type_hints = typing.get_type_hints(_typecheckingstub__bbea232bbb4a761495106b52e2c3f68c1fed160ee33f975219948349c0d24919)
818
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
819
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
820
+
821
+ @builtins.property
822
+ @jsii.member(jsii_name="wrapsSet")
823
+ def _wraps_set(self) -> builtins.bool:
824
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
825
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
826
+
827
+ @_wraps_set.setter
828
+ def _wraps_set(self, value: builtins.bool) -> None:
829
+ if __debug__:
830
+ type_hints = typing.get_type_hints(_typecheckingstub__f3d328a8f658cc608185b14313a26786a6ade78c1b19755a30671d4e03e9f8cb)
831
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
832
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
833
+
834
+ @builtins.property
835
+ @jsii.member(jsii_name="internalValue")
836
+ def internal_value(
837
+ self,
838
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedObjectStorageNetwork]]]:
839
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedObjectStorageNetwork]]], jsii.get(self, "internalValue"))
840
+
841
+ @internal_value.setter
842
+ def internal_value(
843
+ self,
844
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedObjectStorageNetwork]]],
845
+ ) -> None:
846
+ if __debug__:
847
+ type_hints = typing.get_type_hints(_typecheckingstub__5d2354d6739c60ec598f901d3f3b0d2fdd9c6859a6498b2e3e71d31a3d0432a9)
848
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
849
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
850
+
851
+
852
+ class ManagedObjectStorageNetworkOutputReference(
853
+ _cdktf_9a9027ec.ComplexObject,
854
+ metaclass=jsii.JSIIMeta,
855
+ jsii_type="@cdktf/provider-upcloud.managedObjectStorage.ManagedObjectStorageNetworkOutputReference",
856
+ ):
857
+ def __init__(
858
+ self,
859
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
860
+ terraform_attribute: builtins.str,
861
+ complex_object_index: jsii.Number,
862
+ complex_object_is_from_set: builtins.bool,
863
+ ) -> None:
864
+ '''
865
+ :param terraform_resource: The parent resource.
866
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
867
+ :param complex_object_index: the index of this item in the list.
868
+ :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).
869
+ '''
870
+ if __debug__:
871
+ type_hints = typing.get_type_hints(_typecheckingstub__1f6a908e26a18975431f3ccd62269da6bfa2981c227e0800631e98e32da5ffa8)
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 complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
875
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
876
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
877
+
878
+ @jsii.member(jsii_name="resetUuid")
879
+ def reset_uuid(self) -> None:
880
+ return typing.cast(None, jsii.invoke(self, "resetUuid", []))
881
+
882
+ @builtins.property
883
+ @jsii.member(jsii_name="familyInput")
884
+ def family_input(self) -> typing.Optional[builtins.str]:
885
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "familyInput"))
886
+
887
+ @builtins.property
888
+ @jsii.member(jsii_name="nameInput")
889
+ def name_input(self) -> typing.Optional[builtins.str]:
890
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
891
+
892
+ @builtins.property
893
+ @jsii.member(jsii_name="typeInput")
894
+ def type_input(self) -> typing.Optional[builtins.str]:
895
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeInput"))
896
+
897
+ @builtins.property
898
+ @jsii.member(jsii_name="uuidInput")
899
+ def uuid_input(self) -> typing.Optional[builtins.str]:
900
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "uuidInput"))
901
+
902
+ @builtins.property
903
+ @jsii.member(jsii_name="family")
904
+ def family(self) -> builtins.str:
905
+ return typing.cast(builtins.str, jsii.get(self, "family"))
906
+
907
+ @family.setter
908
+ def family(self, value: builtins.str) -> None:
909
+ if __debug__:
910
+ type_hints = typing.get_type_hints(_typecheckingstub__ec449baee2a2ba8a6d8998eae665ebff94ac6a2a82afc57e0d1730c24d5992fb)
911
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
912
+ jsii.set(self, "family", value) # pyright: ignore[reportArgumentType]
913
+
914
+ @builtins.property
915
+ @jsii.member(jsii_name="name")
916
+ def name(self) -> builtins.str:
917
+ return typing.cast(builtins.str, jsii.get(self, "name"))
918
+
919
+ @name.setter
920
+ def name(self, value: builtins.str) -> None:
921
+ if __debug__:
922
+ type_hints = typing.get_type_hints(_typecheckingstub__edd6f5213bbc7b5cb5c2c12ab950d6d16ea450aaa1d7be5003a8399ff7a1ce21)
923
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
924
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
925
+
926
+ @builtins.property
927
+ @jsii.member(jsii_name="type")
928
+ def type(self) -> builtins.str:
929
+ return typing.cast(builtins.str, jsii.get(self, "type"))
930
+
931
+ @type.setter
932
+ def type(self, value: builtins.str) -> None:
933
+ if __debug__:
934
+ type_hints = typing.get_type_hints(_typecheckingstub__c64a51f7f91c4102ed64f62eacabd89c4b9e7ca193105f87437469b0aed03e77)
935
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
936
+ jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
937
+
938
+ @builtins.property
939
+ @jsii.member(jsii_name="uuid")
940
+ def uuid(self) -> builtins.str:
941
+ return typing.cast(builtins.str, jsii.get(self, "uuid"))
942
+
943
+ @uuid.setter
944
+ def uuid(self, value: builtins.str) -> None:
945
+ if __debug__:
946
+ type_hints = typing.get_type_hints(_typecheckingstub__d4009c7501acd081b5e93b493ac8f56a991d85e19b5f4b9ebc112ed37a582b18)
947
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
948
+ jsii.set(self, "uuid", value) # pyright: ignore[reportArgumentType]
949
+
950
+ @builtins.property
951
+ @jsii.member(jsii_name="internalValue")
952
+ def internal_value(
953
+ self,
954
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedObjectStorageNetwork]]:
955
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedObjectStorageNetwork]], jsii.get(self, "internalValue"))
956
+
957
+ @internal_value.setter
958
+ def internal_value(
959
+ self,
960
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedObjectStorageNetwork]],
961
+ ) -> None:
962
+ if __debug__:
963
+ type_hints = typing.get_type_hints(_typecheckingstub__ab46dbb2a530f617db77473160573c41b0070ebfd494085e88ee3efccca3c793)
964
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
965
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
966
+
967
+
968
+ __all__ = [
969
+ "ManagedObjectStorage",
970
+ "ManagedObjectStorageConfig",
971
+ "ManagedObjectStorageEndpoint",
972
+ "ManagedObjectStorageEndpointList",
973
+ "ManagedObjectStorageEndpointOutputReference",
974
+ "ManagedObjectStorageNetwork",
975
+ "ManagedObjectStorageNetworkList",
976
+ "ManagedObjectStorageNetworkOutputReference",
977
+ ]
978
+
979
+ publication.publish()
980
+
981
+ def _typecheckingstub__67eb4894179d4e215bc9d54e20798fee9bfd257ea1bb9f001d710e7f96073c65(
982
+ scope: _constructs_77d1e7e8.Construct,
983
+ id_: builtins.str,
984
+ *,
985
+ configured_status: builtins.str,
986
+ name: builtins.str,
987
+ region: builtins.str,
988
+ id: typing.Optional[builtins.str] = None,
989
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
990
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedObjectStorageNetwork, typing.Dict[builtins.str, typing.Any]]]]] = None,
991
+ 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,
992
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
993
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
994
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
995
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
996
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
997
+ 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,
998
+ ) -> None:
999
+ """Type checking stubs"""
1000
+ pass
1001
+
1002
+ def _typecheckingstub__a5b9595098776276b59a4bbbb694a752e493fcbaf80709d00cc6da6e931aeaa3(
1003
+ scope: _constructs_77d1e7e8.Construct,
1004
+ import_to_id: builtins.str,
1005
+ import_from_id: builtins.str,
1006
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1007
+ ) -> None:
1008
+ """Type checking stubs"""
1009
+ pass
1010
+
1011
+ def _typecheckingstub__24e1b5fd7b19fbac8e1ce286848ff79f1332b22f3d5626dc216b2cb32408e1fe(
1012
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedObjectStorageNetwork, typing.Dict[builtins.str, typing.Any]]]],
1013
+ ) -> None:
1014
+ """Type checking stubs"""
1015
+ pass
1016
+
1017
+ def _typecheckingstub__0e536a769e0c4ea2c1fa642b0d3271f59192d750006e68a3ea01af3c124ce9cb(
1018
+ value: builtins.str,
1019
+ ) -> None:
1020
+ """Type checking stubs"""
1021
+ pass
1022
+
1023
+ def _typecheckingstub__936c1967c2f6d85083875e705cd1723161beda1033048be41ce615d5c3485bd8(
1024
+ value: builtins.str,
1025
+ ) -> None:
1026
+ """Type checking stubs"""
1027
+ pass
1028
+
1029
+ def _typecheckingstub__c1d08e966c69d29e85c936a4475ed3785dcc5cf59d162fd3caaf760849da7bec(
1030
+ value: typing.Mapping[builtins.str, builtins.str],
1031
+ ) -> None:
1032
+ """Type checking stubs"""
1033
+ pass
1034
+
1035
+ def _typecheckingstub__a7b8baec7ca6ff3a10221df9edafc03d4176bc675c53cf766394fa31833f3b2c(
1036
+ value: builtins.str,
1037
+ ) -> None:
1038
+ """Type checking stubs"""
1039
+ pass
1040
+
1041
+ def _typecheckingstub__90842a5303e6e9317bed1eda03f130f6a443f3a01cd23a3ffca3782dec6727eb(
1042
+ value: builtins.str,
1043
+ ) -> None:
1044
+ """Type checking stubs"""
1045
+ pass
1046
+
1047
+ def _typecheckingstub__5bc8c4570f5be205a661cce154acab9795759bf5637ae33f864c49dd16e9968b(
1048
+ *,
1049
+ 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,
1050
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
1051
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
1052
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
1053
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
1054
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
1055
+ 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,
1056
+ configured_status: builtins.str,
1057
+ name: builtins.str,
1058
+ region: builtins.str,
1059
+ id: typing.Optional[builtins.str] = None,
1060
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1061
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedObjectStorageNetwork, typing.Dict[builtins.str, typing.Any]]]]] = None,
1062
+ ) -> None:
1063
+ """Type checking stubs"""
1064
+ pass
1065
+
1066
+ def _typecheckingstub__77e171cfdccb7f0af5e14127b545591933e748abc57bc1e9e3c8011b2b10d60e(
1067
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1068
+ terraform_attribute: builtins.str,
1069
+ wraps_set: builtins.bool,
1070
+ ) -> None:
1071
+ """Type checking stubs"""
1072
+ pass
1073
+
1074
+ def _typecheckingstub__7514ddcdc00e4efc822c232f3362031faf566f79bfae05f9f6ab50f2012b1c31(
1075
+ index: jsii.Number,
1076
+ ) -> None:
1077
+ """Type checking stubs"""
1078
+ pass
1079
+
1080
+ def _typecheckingstub__a16990c61c8bdd6b77cb441fdb203e6be97947af52729fa0e842000f92f243fa(
1081
+ value: builtins.str,
1082
+ ) -> None:
1083
+ """Type checking stubs"""
1084
+ pass
1085
+
1086
+ def _typecheckingstub__84473b7f7c0aa5d9b535c7f027d04d9d84000cd8d0fba8c0b16aa0c341ba671b(
1087
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1088
+ ) -> None:
1089
+ """Type checking stubs"""
1090
+ pass
1091
+
1092
+ def _typecheckingstub__849f484262d362b94fa8188afc80e3fba0b97eb5e5b11b179eabb1c43700b9da(
1093
+ value: builtins.bool,
1094
+ ) -> None:
1095
+ """Type checking stubs"""
1096
+ pass
1097
+
1098
+ def _typecheckingstub__9e55550b8c8405d5527ef3e85c864ed41cb3caf182d820f3f6f9c149835bb4a7(
1099
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1100
+ terraform_attribute: builtins.str,
1101
+ complex_object_index: jsii.Number,
1102
+ complex_object_is_from_set: builtins.bool,
1103
+ ) -> None:
1104
+ """Type checking stubs"""
1105
+ pass
1106
+
1107
+ def _typecheckingstub__d7396e44a15cd8c23d391f8bbd2049ab6b56aefb072fc1c6c90490b983c8a3cb(
1108
+ value: typing.Optional[ManagedObjectStorageEndpoint],
1109
+ ) -> None:
1110
+ """Type checking stubs"""
1111
+ pass
1112
+
1113
+ def _typecheckingstub__e0b4cf2c0c7cafd7ef12c89dc0e6b0cfa51d36f6f4f675bbbf61646c2cf485ca(
1114
+ *,
1115
+ family: builtins.str,
1116
+ name: builtins.str,
1117
+ type: builtins.str,
1118
+ uuid: typing.Optional[builtins.str] = None,
1119
+ ) -> None:
1120
+ """Type checking stubs"""
1121
+ pass
1122
+
1123
+ def _typecheckingstub__ca386d8b3a621d46fc64b458f19c9c4b1f12ceacaf968cfd7ad1dfe2a5908e88(
1124
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1125
+ terraform_attribute: builtins.str,
1126
+ wraps_set: builtins.bool,
1127
+ ) -> None:
1128
+ """Type checking stubs"""
1129
+ pass
1130
+
1131
+ def _typecheckingstub__644b605975a9119aa74c2793c72d834a61739217e7213322e28d11f5e22644f4(
1132
+ index: jsii.Number,
1133
+ ) -> None:
1134
+ """Type checking stubs"""
1135
+ pass
1136
+
1137
+ def _typecheckingstub__6185e6ef9a4cf2f62e48a4a1ad1cdc16fffee5ab9692a90dc6a69ff4e6531062(
1138
+ value: builtins.str,
1139
+ ) -> None:
1140
+ """Type checking stubs"""
1141
+ pass
1142
+
1143
+ def _typecheckingstub__bbea232bbb4a761495106b52e2c3f68c1fed160ee33f975219948349c0d24919(
1144
+ value: _cdktf_9a9027ec.IInterpolatingParent,
1145
+ ) -> None:
1146
+ """Type checking stubs"""
1147
+ pass
1148
+
1149
+ def _typecheckingstub__f3d328a8f658cc608185b14313a26786a6ade78c1b19755a30671d4e03e9f8cb(
1150
+ value: builtins.bool,
1151
+ ) -> None:
1152
+ """Type checking stubs"""
1153
+ pass
1154
+
1155
+ def _typecheckingstub__5d2354d6739c60ec598f901d3f3b0d2fdd9c6859a6498b2e3e71d31a3d0432a9(
1156
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedObjectStorageNetwork]]],
1157
+ ) -> None:
1158
+ """Type checking stubs"""
1159
+ pass
1160
+
1161
+ def _typecheckingstub__1f6a908e26a18975431f3ccd62269da6bfa2981c227e0800631e98e32da5ffa8(
1162
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1163
+ terraform_attribute: builtins.str,
1164
+ complex_object_index: jsii.Number,
1165
+ complex_object_is_from_set: builtins.bool,
1166
+ ) -> None:
1167
+ """Type checking stubs"""
1168
+ pass
1169
+
1170
+ def _typecheckingstub__ec449baee2a2ba8a6d8998eae665ebff94ac6a2a82afc57e0d1730c24d5992fb(
1171
+ value: builtins.str,
1172
+ ) -> None:
1173
+ """Type checking stubs"""
1174
+ pass
1175
+
1176
+ def _typecheckingstub__edd6f5213bbc7b5cb5c2c12ab950d6d16ea450aaa1d7be5003a8399ff7a1ce21(
1177
+ value: builtins.str,
1178
+ ) -> None:
1179
+ """Type checking stubs"""
1180
+ pass
1181
+
1182
+ def _typecheckingstub__c64a51f7f91c4102ed64f62eacabd89c4b9e7ca193105f87437469b0aed03e77(
1183
+ value: builtins.str,
1184
+ ) -> None:
1185
+ """Type checking stubs"""
1186
+ pass
1187
+
1188
+ def _typecheckingstub__d4009c7501acd081b5e93b493ac8f56a991d85e19b5f4b9ebc112ed37a582b18(
1189
+ value: builtins.str,
1190
+ ) -> None:
1191
+ """Type checking stubs"""
1192
+ pass
1193
+
1194
+ def _typecheckingstub__ab46dbb2a530f617db77473160573c41b0070ebfd494085e88ee3efccca3c793(
1195
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedObjectStorageNetwork]],
1196
+ ) -> None:
1197
+ """Type checking stubs"""
1198
+ pass