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,717 @@
1
+ r'''
2
+ # `data_upcloud_managed_database_opensearch_indices`
3
+
4
+ Refer to the Terraform Registry for docs: [`data_upcloud_managed_database_opensearch_indices`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices).
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 DataUpcloudManagedDatabaseOpensearchIndices(
43
+ _cdktf_9a9027ec.TerraformDataSource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudManagedDatabaseOpensearchIndices.DataUpcloudManagedDatabaseOpensearchIndices",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices upcloud_managed_database_opensearch_indices}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id_: builtins.str,
53
+ *,
54
+ service: builtins.str,
55
+ id: typing.Optional[builtins.str] = None,
56
+ indices: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudManagedDatabaseOpensearchIndicesIndices", typing.Dict[builtins.str, typing.Any]]]]] = None,
57
+ 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,
58
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
59
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
60
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
61
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
62
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
63
+ 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,
64
+ ) -> None:
65
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices upcloud_managed_database_opensearch_indices} Data Source.
66
+
67
+ :param scope: The scope in which to define this construct.
68
+ :param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
69
+ :param service: Service's UUID for which these indices belongs to. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#service DataUpcloudManagedDatabaseOpensearchIndices#service}
70
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#id DataUpcloudManagedDatabaseOpensearchIndices#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.
71
+ :param indices: indices block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#indices DataUpcloudManagedDatabaseOpensearchIndices#indices}
72
+ :param connection:
73
+ :param count:
74
+ :param depends_on:
75
+ :param for_each:
76
+ :param lifecycle:
77
+ :param provider:
78
+ :param provisioners:
79
+ '''
80
+ if __debug__:
81
+ type_hints = typing.get_type_hints(_typecheckingstub__d81a09e39d7f239f813bb74fa4472f71a088f36fbf6e2007bb1d3f0ff41bb8f1)
82
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
83
+ check_type(argname="argument id_", value=id_, expected_type=type_hints["id_"])
84
+ config = DataUpcloudManagedDatabaseOpensearchIndicesConfig(
85
+ service=service,
86
+ id=id,
87
+ indices=indices,
88
+ connection=connection,
89
+ count=count,
90
+ depends_on=depends_on,
91
+ for_each=for_each,
92
+ lifecycle=lifecycle,
93
+ provider=provider,
94
+ provisioners=provisioners,
95
+ )
96
+
97
+ jsii.create(self.__class__, self, [scope, id_, config])
98
+
99
+ @jsii.member(jsii_name="generateConfigForImport")
100
+ @builtins.classmethod
101
+ def generate_config_for_import(
102
+ cls,
103
+ scope: _constructs_77d1e7e8.Construct,
104
+ import_to_id: builtins.str,
105
+ import_from_id: builtins.str,
106
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
107
+ ) -> _cdktf_9a9027ec.ImportableResource:
108
+ '''Generates CDKTF code for importing a DataUpcloudManagedDatabaseOpensearchIndices resource upon running "cdktf plan ".
109
+
110
+ :param scope: The scope in which to define this construct.
111
+ :param import_to_id: The construct id used in the generated config for the DataUpcloudManagedDatabaseOpensearchIndices to import.
112
+ :param import_from_id: The id of the existing DataUpcloudManagedDatabaseOpensearchIndices that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#import import section} in the documentation of this resource for the id to use
113
+ :param provider: ? Optional instance of the provider where the DataUpcloudManagedDatabaseOpensearchIndices to import is found.
114
+ '''
115
+ if __debug__:
116
+ type_hints = typing.get_type_hints(_typecheckingstub__4e4d9a57080f1f8893975536c294ec181e050474f481319e44aa466f2da9b60a)
117
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
118
+ check_type(argname="argument import_to_id", value=import_to_id, expected_type=type_hints["import_to_id"])
119
+ check_type(argname="argument import_from_id", value=import_from_id, expected_type=type_hints["import_from_id"])
120
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
121
+ return typing.cast(_cdktf_9a9027ec.ImportableResource, jsii.sinvoke(cls, "generateConfigForImport", [scope, import_to_id, import_from_id, provider]))
122
+
123
+ @jsii.member(jsii_name="putIndices")
124
+ def put_indices(
125
+ self,
126
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudManagedDatabaseOpensearchIndicesIndices", typing.Dict[builtins.str, typing.Any]]]],
127
+ ) -> None:
128
+ '''
129
+ :param value: -
130
+ '''
131
+ if __debug__:
132
+ type_hints = typing.get_type_hints(_typecheckingstub__e4a4b8724112bb66991ca086527335207d3e1eba04a50fb1117b564fe2864b2c)
133
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
134
+ return typing.cast(None, jsii.invoke(self, "putIndices", [value]))
135
+
136
+ @jsii.member(jsii_name="resetId")
137
+ def reset_id(self) -> None:
138
+ return typing.cast(None, jsii.invoke(self, "resetId", []))
139
+
140
+ @jsii.member(jsii_name="resetIndices")
141
+ def reset_indices(self) -> None:
142
+ return typing.cast(None, jsii.invoke(self, "resetIndices", []))
143
+
144
+ @jsii.member(jsii_name="synthesizeAttributes")
145
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
146
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
147
+
148
+ @jsii.member(jsii_name="synthesizeHclAttributes")
149
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
150
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
151
+
152
+ @jsii.python.classproperty
153
+ @jsii.member(jsii_name="tfResourceType")
154
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
155
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
156
+
157
+ @builtins.property
158
+ @jsii.member(jsii_name="indices")
159
+ def indices(self) -> "DataUpcloudManagedDatabaseOpensearchIndicesIndicesList":
160
+ return typing.cast("DataUpcloudManagedDatabaseOpensearchIndicesIndicesList", jsii.get(self, "indices"))
161
+
162
+ @builtins.property
163
+ @jsii.member(jsii_name="idInput")
164
+ def id_input(self) -> typing.Optional[builtins.str]:
165
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idInput"))
166
+
167
+ @builtins.property
168
+ @jsii.member(jsii_name="indicesInput")
169
+ def indices_input(
170
+ self,
171
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudManagedDatabaseOpensearchIndicesIndices"]]]:
172
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudManagedDatabaseOpensearchIndicesIndices"]]], jsii.get(self, "indicesInput"))
173
+
174
+ @builtins.property
175
+ @jsii.member(jsii_name="serviceInput")
176
+ def service_input(self) -> typing.Optional[builtins.str]:
177
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serviceInput"))
178
+
179
+ @builtins.property
180
+ @jsii.member(jsii_name="id")
181
+ def id(self) -> builtins.str:
182
+ return typing.cast(builtins.str, jsii.get(self, "id"))
183
+
184
+ @id.setter
185
+ def id(self, value: builtins.str) -> None:
186
+ if __debug__:
187
+ type_hints = typing.get_type_hints(_typecheckingstub__2b0c75aa68ef9576baa91a709dfd54879ff8ba8ca66c3a321ccd8b10559551a8)
188
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
189
+ jsii.set(self, "id", value) # pyright: ignore[reportArgumentType]
190
+
191
+ @builtins.property
192
+ @jsii.member(jsii_name="service")
193
+ def service(self) -> builtins.str:
194
+ return typing.cast(builtins.str, jsii.get(self, "service"))
195
+
196
+ @service.setter
197
+ def service(self, value: builtins.str) -> None:
198
+ if __debug__:
199
+ type_hints = typing.get_type_hints(_typecheckingstub__16d701509bffa959b58fc8dcfcddcca7bd0c89d3fe837406f2518f695c9ce168)
200
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
201
+ jsii.set(self, "service", value) # pyright: ignore[reportArgumentType]
202
+
203
+
204
+ @jsii.data_type(
205
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudManagedDatabaseOpensearchIndices.DataUpcloudManagedDatabaseOpensearchIndicesConfig",
206
+ jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
207
+ name_mapping={
208
+ "connection": "connection",
209
+ "count": "count",
210
+ "depends_on": "dependsOn",
211
+ "for_each": "forEach",
212
+ "lifecycle": "lifecycle",
213
+ "provider": "provider",
214
+ "provisioners": "provisioners",
215
+ "service": "service",
216
+ "id": "id",
217
+ "indices": "indices",
218
+ },
219
+ )
220
+ class DataUpcloudManagedDatabaseOpensearchIndicesConfig(
221
+ _cdktf_9a9027ec.TerraformMetaArguments,
222
+ ):
223
+ def __init__(
224
+ self,
225
+ *,
226
+ 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,
227
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
228
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
229
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
230
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
231
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
232
+ 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,
233
+ service: builtins.str,
234
+ id: typing.Optional[builtins.str] = None,
235
+ indices: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["DataUpcloudManagedDatabaseOpensearchIndicesIndices", typing.Dict[builtins.str, typing.Any]]]]] = None,
236
+ ) -> None:
237
+ '''
238
+ :param connection:
239
+ :param count:
240
+ :param depends_on:
241
+ :param for_each:
242
+ :param lifecycle:
243
+ :param provider:
244
+ :param provisioners:
245
+ :param service: Service's UUID for which these indices belongs to. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#service DataUpcloudManagedDatabaseOpensearchIndices#service}
246
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#id DataUpcloudManagedDatabaseOpensearchIndices#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.
247
+ :param indices: indices block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#indices DataUpcloudManagedDatabaseOpensearchIndices#indices}
248
+ '''
249
+ if isinstance(lifecycle, dict):
250
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
251
+ if __debug__:
252
+ type_hints = typing.get_type_hints(_typecheckingstub__0a831080d436ea51a1f3f990c830cd19412bd44f44a8457e9fa9505130213d94)
253
+ check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
254
+ check_type(argname="argument count", value=count, expected_type=type_hints["count"])
255
+ check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
256
+ check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
257
+ check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
258
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
259
+ check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
260
+ check_type(argname="argument service", value=service, expected_type=type_hints["service"])
261
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
262
+ check_type(argname="argument indices", value=indices, expected_type=type_hints["indices"])
263
+ self._values: typing.Dict[builtins.str, typing.Any] = {
264
+ "service": service,
265
+ }
266
+ if connection is not None:
267
+ self._values["connection"] = connection
268
+ if count is not None:
269
+ self._values["count"] = count
270
+ if depends_on is not None:
271
+ self._values["depends_on"] = depends_on
272
+ if for_each is not None:
273
+ self._values["for_each"] = for_each
274
+ if lifecycle is not None:
275
+ self._values["lifecycle"] = lifecycle
276
+ if provider is not None:
277
+ self._values["provider"] = provider
278
+ if provisioners is not None:
279
+ self._values["provisioners"] = provisioners
280
+ if id is not None:
281
+ self._values["id"] = id
282
+ if indices is not None:
283
+ self._values["indices"] = indices
284
+
285
+ @builtins.property
286
+ def connection(
287
+ self,
288
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
289
+ '''
290
+ :stability: experimental
291
+ '''
292
+ result = self._values.get("connection")
293
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
294
+
295
+ @builtins.property
296
+ def count(
297
+ self,
298
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
299
+ '''
300
+ :stability: experimental
301
+ '''
302
+ result = self._values.get("count")
303
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
304
+
305
+ @builtins.property
306
+ def depends_on(
307
+ self,
308
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
309
+ '''
310
+ :stability: experimental
311
+ '''
312
+ result = self._values.get("depends_on")
313
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
314
+
315
+ @builtins.property
316
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
317
+ '''
318
+ :stability: experimental
319
+ '''
320
+ result = self._values.get("for_each")
321
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
322
+
323
+ @builtins.property
324
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
325
+ '''
326
+ :stability: experimental
327
+ '''
328
+ result = self._values.get("lifecycle")
329
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
330
+
331
+ @builtins.property
332
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
333
+ '''
334
+ :stability: experimental
335
+ '''
336
+ result = self._values.get("provider")
337
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
338
+
339
+ @builtins.property
340
+ def provisioners(
341
+ self,
342
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
343
+ '''
344
+ :stability: experimental
345
+ '''
346
+ result = self._values.get("provisioners")
347
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
348
+
349
+ @builtins.property
350
+ def service(self) -> builtins.str:
351
+ '''Service's UUID for which these indices belongs to.
352
+
353
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#service DataUpcloudManagedDatabaseOpensearchIndices#service}
354
+ '''
355
+ result = self._values.get("service")
356
+ assert result is not None, "Required property 'service' is missing"
357
+ return typing.cast(builtins.str, result)
358
+
359
+ @builtins.property
360
+ def id(self) -> typing.Optional[builtins.str]:
361
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#id DataUpcloudManagedDatabaseOpensearchIndices#id}.
362
+
363
+ Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
364
+ 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.
365
+ '''
366
+ result = self._values.get("id")
367
+ return typing.cast(typing.Optional[builtins.str], result)
368
+
369
+ @builtins.property
370
+ def indices(
371
+ self,
372
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudManagedDatabaseOpensearchIndicesIndices"]]]:
373
+ '''indices block.
374
+
375
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/data-sources/managed_database_opensearch_indices#indices DataUpcloudManagedDatabaseOpensearchIndices#indices}
376
+ '''
377
+ result = self._values.get("indices")
378
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["DataUpcloudManagedDatabaseOpensearchIndicesIndices"]]], result)
379
+
380
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
381
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
382
+
383
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
384
+ return not (rhs == self)
385
+
386
+ def __repr__(self) -> str:
387
+ return "DataUpcloudManagedDatabaseOpensearchIndicesConfig(%s)" % ", ".join(
388
+ k + "=" + repr(v) for k, v in self._values.items()
389
+ )
390
+
391
+
392
+ @jsii.data_type(
393
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudManagedDatabaseOpensearchIndices.DataUpcloudManagedDatabaseOpensearchIndicesIndices",
394
+ jsii_struct_bases=[],
395
+ name_mapping={},
396
+ )
397
+ class DataUpcloudManagedDatabaseOpensearchIndicesIndices:
398
+ def __init__(self) -> None:
399
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
400
+
401
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
402
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
403
+
404
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
405
+ return not (rhs == self)
406
+
407
+ def __repr__(self) -> str:
408
+ return "DataUpcloudManagedDatabaseOpensearchIndicesIndices(%s)" % ", ".join(
409
+ k + "=" + repr(v) for k, v in self._values.items()
410
+ )
411
+
412
+
413
+ class DataUpcloudManagedDatabaseOpensearchIndicesIndicesList(
414
+ _cdktf_9a9027ec.ComplexList,
415
+ metaclass=jsii.JSIIMeta,
416
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudManagedDatabaseOpensearchIndices.DataUpcloudManagedDatabaseOpensearchIndicesIndicesList",
417
+ ):
418
+ def __init__(
419
+ self,
420
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
421
+ terraform_attribute: builtins.str,
422
+ wraps_set: builtins.bool,
423
+ ) -> None:
424
+ '''
425
+ :param terraform_resource: The parent resource.
426
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
427
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
428
+ '''
429
+ if __debug__:
430
+ type_hints = typing.get_type_hints(_typecheckingstub__50637e002ac1662576b91300ca47e29fc981fb3dd4f5d9f883d32b6330390dd1)
431
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
432
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
433
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
434
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
435
+
436
+ @jsii.member(jsii_name="get")
437
+ def get(
438
+ self,
439
+ index: jsii.Number,
440
+ ) -> "DataUpcloudManagedDatabaseOpensearchIndicesIndicesOutputReference":
441
+ '''
442
+ :param index: the index of the item to return.
443
+ '''
444
+ if __debug__:
445
+ type_hints = typing.get_type_hints(_typecheckingstub__d6c16690ec7b140474d4ec3075999bdfe447eea69e75e39a5754b671fdce1d1a)
446
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
447
+ return typing.cast("DataUpcloudManagedDatabaseOpensearchIndicesIndicesOutputReference", jsii.invoke(self, "get", [index]))
448
+
449
+ @builtins.property
450
+ @jsii.member(jsii_name="terraformAttribute")
451
+ def _terraform_attribute(self) -> builtins.str:
452
+ '''The attribute on the parent resource this class is referencing.'''
453
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
454
+
455
+ @_terraform_attribute.setter
456
+ def _terraform_attribute(self, value: builtins.str) -> None:
457
+ if __debug__:
458
+ type_hints = typing.get_type_hints(_typecheckingstub__9b358b88d2b28429fed269d7766ced2aba803e0d7caa16669d8656b6f7171c28)
459
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
460
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
461
+
462
+ @builtins.property
463
+ @jsii.member(jsii_name="terraformResource")
464
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
465
+ '''The parent resource.'''
466
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
467
+
468
+ @_terraform_resource.setter
469
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
470
+ if __debug__:
471
+ type_hints = typing.get_type_hints(_typecheckingstub__4dec76e04a047cbf22687bd71024d9add33393d891f19b34b9a62ef75036458c)
472
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
473
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
474
+
475
+ @builtins.property
476
+ @jsii.member(jsii_name="wrapsSet")
477
+ def _wraps_set(self) -> builtins.bool:
478
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
479
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
480
+
481
+ @_wraps_set.setter
482
+ def _wraps_set(self, value: builtins.bool) -> None:
483
+ if __debug__:
484
+ type_hints = typing.get_type_hints(_typecheckingstub__ff2bf75b5929e5c69f2efd1639e8687f2300d614c7b1a9758cb94da56fd1aef3)
485
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
486
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
487
+
488
+ @builtins.property
489
+ @jsii.member(jsii_name="internalValue")
490
+ def internal_value(
491
+ self,
492
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudManagedDatabaseOpensearchIndicesIndices]]]:
493
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudManagedDatabaseOpensearchIndicesIndices]]], jsii.get(self, "internalValue"))
494
+
495
+ @internal_value.setter
496
+ def internal_value(
497
+ self,
498
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudManagedDatabaseOpensearchIndicesIndices]]],
499
+ ) -> None:
500
+ if __debug__:
501
+ type_hints = typing.get_type_hints(_typecheckingstub__ffb468395dc9b9d3a23a5b02a41a3ec5005adee976596fbec91083fb0bc40e1a)
502
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
503
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
504
+
505
+
506
+ class DataUpcloudManagedDatabaseOpensearchIndicesIndicesOutputReference(
507
+ _cdktf_9a9027ec.ComplexObject,
508
+ metaclass=jsii.JSIIMeta,
509
+ jsii_type="@cdktf/provider-upcloud.dataUpcloudManagedDatabaseOpensearchIndices.DataUpcloudManagedDatabaseOpensearchIndicesIndicesOutputReference",
510
+ ):
511
+ def __init__(
512
+ self,
513
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
514
+ terraform_attribute: builtins.str,
515
+ complex_object_index: jsii.Number,
516
+ complex_object_is_from_set: builtins.bool,
517
+ ) -> None:
518
+ '''
519
+ :param terraform_resource: The parent resource.
520
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
521
+ :param complex_object_index: the index of this item in the list.
522
+ :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).
523
+ '''
524
+ if __debug__:
525
+ type_hints = typing.get_type_hints(_typecheckingstub__5d6758393c626a6d33d19f5c2c2e5142aa3779240032b02003cfa65de60238cd)
526
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
527
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
528
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
529
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
530
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
531
+
532
+ @builtins.property
533
+ @jsii.member(jsii_name="createTime")
534
+ def create_time(self) -> builtins.str:
535
+ return typing.cast(builtins.str, jsii.get(self, "createTime"))
536
+
537
+ @builtins.property
538
+ @jsii.member(jsii_name="docs")
539
+ def docs(self) -> jsii.Number:
540
+ return typing.cast(jsii.Number, jsii.get(self, "docs"))
541
+
542
+ @builtins.property
543
+ @jsii.member(jsii_name="health")
544
+ def health(self) -> builtins.str:
545
+ return typing.cast(builtins.str, jsii.get(self, "health"))
546
+
547
+ @builtins.property
548
+ @jsii.member(jsii_name="indexName")
549
+ def index_name(self) -> builtins.str:
550
+ return typing.cast(builtins.str, jsii.get(self, "indexName"))
551
+
552
+ @builtins.property
553
+ @jsii.member(jsii_name="numberOfReplicas")
554
+ def number_of_replicas(self) -> jsii.Number:
555
+ return typing.cast(jsii.Number, jsii.get(self, "numberOfReplicas"))
556
+
557
+ @builtins.property
558
+ @jsii.member(jsii_name="numberOfShards")
559
+ def number_of_shards(self) -> jsii.Number:
560
+ return typing.cast(jsii.Number, jsii.get(self, "numberOfShards"))
561
+
562
+ @builtins.property
563
+ @jsii.member(jsii_name="readOnlyAllowDelete")
564
+ def read_only_allow_delete(self) -> _cdktf_9a9027ec.IResolvable:
565
+ return typing.cast(_cdktf_9a9027ec.IResolvable, jsii.get(self, "readOnlyAllowDelete"))
566
+
567
+ @builtins.property
568
+ @jsii.member(jsii_name="size")
569
+ def size(self) -> jsii.Number:
570
+ return typing.cast(jsii.Number, jsii.get(self, "size"))
571
+
572
+ @builtins.property
573
+ @jsii.member(jsii_name="status")
574
+ def status(self) -> builtins.str:
575
+ return typing.cast(builtins.str, jsii.get(self, "status"))
576
+
577
+ @builtins.property
578
+ @jsii.member(jsii_name="internalValue")
579
+ def internal_value(
580
+ self,
581
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudManagedDatabaseOpensearchIndicesIndices]]:
582
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudManagedDatabaseOpensearchIndicesIndices]], jsii.get(self, "internalValue"))
583
+
584
+ @internal_value.setter
585
+ def internal_value(
586
+ self,
587
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudManagedDatabaseOpensearchIndicesIndices]],
588
+ ) -> None:
589
+ if __debug__:
590
+ type_hints = typing.get_type_hints(_typecheckingstub__8f5256c7d209ad1af303e3a9a2486fa9f524cd536909a19cddb13be7f30f8272)
591
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
592
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
593
+
594
+
595
+ __all__ = [
596
+ "DataUpcloudManagedDatabaseOpensearchIndices",
597
+ "DataUpcloudManagedDatabaseOpensearchIndicesConfig",
598
+ "DataUpcloudManagedDatabaseOpensearchIndicesIndices",
599
+ "DataUpcloudManagedDatabaseOpensearchIndicesIndicesList",
600
+ "DataUpcloudManagedDatabaseOpensearchIndicesIndicesOutputReference",
601
+ ]
602
+
603
+ publication.publish()
604
+
605
+ def _typecheckingstub__d81a09e39d7f239f813bb74fa4472f71a088f36fbf6e2007bb1d3f0ff41bb8f1(
606
+ scope: _constructs_77d1e7e8.Construct,
607
+ id_: builtins.str,
608
+ *,
609
+ service: builtins.str,
610
+ id: typing.Optional[builtins.str] = None,
611
+ indices: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudManagedDatabaseOpensearchIndicesIndices, typing.Dict[builtins.str, typing.Any]]]]] = None,
612
+ 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,
613
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
614
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
615
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
616
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
617
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
618
+ 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,
619
+ ) -> None:
620
+ """Type checking stubs"""
621
+ pass
622
+
623
+ def _typecheckingstub__4e4d9a57080f1f8893975536c294ec181e050474f481319e44aa466f2da9b60a(
624
+ scope: _constructs_77d1e7e8.Construct,
625
+ import_to_id: builtins.str,
626
+ import_from_id: builtins.str,
627
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
628
+ ) -> None:
629
+ """Type checking stubs"""
630
+ pass
631
+
632
+ def _typecheckingstub__e4a4b8724112bb66991ca086527335207d3e1eba04a50fb1117b564fe2864b2c(
633
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudManagedDatabaseOpensearchIndicesIndices, typing.Dict[builtins.str, typing.Any]]]],
634
+ ) -> None:
635
+ """Type checking stubs"""
636
+ pass
637
+
638
+ def _typecheckingstub__2b0c75aa68ef9576baa91a709dfd54879ff8ba8ca66c3a321ccd8b10559551a8(
639
+ value: builtins.str,
640
+ ) -> None:
641
+ """Type checking stubs"""
642
+ pass
643
+
644
+ def _typecheckingstub__16d701509bffa959b58fc8dcfcddcca7bd0c89d3fe837406f2518f695c9ce168(
645
+ value: builtins.str,
646
+ ) -> None:
647
+ """Type checking stubs"""
648
+ pass
649
+
650
+ def _typecheckingstub__0a831080d436ea51a1f3f990c830cd19412bd44f44a8457e9fa9505130213d94(
651
+ *,
652
+ 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,
653
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
654
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
655
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
656
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
657
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
658
+ 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,
659
+ service: builtins.str,
660
+ id: typing.Optional[builtins.str] = None,
661
+ indices: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[DataUpcloudManagedDatabaseOpensearchIndicesIndices, typing.Dict[builtins.str, typing.Any]]]]] = None,
662
+ ) -> None:
663
+ """Type checking stubs"""
664
+ pass
665
+
666
+ def _typecheckingstub__50637e002ac1662576b91300ca47e29fc981fb3dd4f5d9f883d32b6330390dd1(
667
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
668
+ terraform_attribute: builtins.str,
669
+ wraps_set: builtins.bool,
670
+ ) -> None:
671
+ """Type checking stubs"""
672
+ pass
673
+
674
+ def _typecheckingstub__d6c16690ec7b140474d4ec3075999bdfe447eea69e75e39a5754b671fdce1d1a(
675
+ index: jsii.Number,
676
+ ) -> None:
677
+ """Type checking stubs"""
678
+ pass
679
+
680
+ def _typecheckingstub__9b358b88d2b28429fed269d7766ced2aba803e0d7caa16669d8656b6f7171c28(
681
+ value: builtins.str,
682
+ ) -> None:
683
+ """Type checking stubs"""
684
+ pass
685
+
686
+ def _typecheckingstub__4dec76e04a047cbf22687bd71024d9add33393d891f19b34b9a62ef75036458c(
687
+ value: _cdktf_9a9027ec.IInterpolatingParent,
688
+ ) -> None:
689
+ """Type checking stubs"""
690
+ pass
691
+
692
+ def _typecheckingstub__ff2bf75b5929e5c69f2efd1639e8687f2300d614c7b1a9758cb94da56fd1aef3(
693
+ value: builtins.bool,
694
+ ) -> None:
695
+ """Type checking stubs"""
696
+ pass
697
+
698
+ def _typecheckingstub__ffb468395dc9b9d3a23a5b02a41a3ec5005adee976596fbec91083fb0bc40e1a(
699
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[DataUpcloudManagedDatabaseOpensearchIndicesIndices]]],
700
+ ) -> None:
701
+ """Type checking stubs"""
702
+ pass
703
+
704
+ def _typecheckingstub__5d6758393c626a6d33d19f5c2c2e5142aa3779240032b02003cfa65de60238cd(
705
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
706
+ terraform_attribute: builtins.str,
707
+ complex_object_index: jsii.Number,
708
+ complex_object_is_from_set: builtins.bool,
709
+ ) -> None:
710
+ """Type checking stubs"""
711
+ pass
712
+
713
+ def _typecheckingstub__8f5256c7d209ad1af303e3a9a2486fa9f524cd536909a19cddb13be7f30f8272(
714
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, DataUpcloudManagedDatabaseOpensearchIndicesIndices]],
715
+ ) -> None:
716
+ """Type checking stubs"""
717
+ pass