cdktf-cdktf-provider-upcloud 6.0.2__py3-none-any.whl → 7.0.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.
Potentially problematic release.
This version of cdktf-cdktf-provider-upcloud might be problematic. Click here for more details.
- cdktf_cdktf_provider_upcloud/__init__.py +4 -0
- cdktf_cdktf_provider_upcloud/_jsii/__init__.py +2 -2
- cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@7.0.0.jsii.tgz +0 -0
- cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +662 -0
- cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +12 -12
- cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +25 -25
- cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +6 -6
- cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +40 -40
- cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +19 -19
- cdktf_cdktf_provider_upcloud/gateway/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +78 -20
- cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +44 -44
- cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +36 -36
- cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +48 -48
- cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +15 -15
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +35 -35
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +164 -164
- cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +15 -15
- cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +18 -18
- cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +30 -30
- cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +27 -27
- cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +18 -18
- cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +175 -173
- cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +2017 -0
- cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +292 -290
- cdktf_cdktf_provider_upcloud/managed_database_redis/__init__.py +100 -98
- cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +529 -39
- cdktf_cdktf_provider_upcloud/network/__init__.py +37 -37
- cdktf_cdktf_provider_upcloud/object_storage/__init__.py +30 -30
- cdktf_cdktf_provider_upcloud/provider/__init__.py +21 -21
- cdktf_cdktf_provider_upcloud/router/__init__.py +9 -9
- cdktf_cdktf_provider_upcloud/server/__init__.py +265 -124
- cdktf_cdktf_provider_upcloud/server_group/__init__.py +57 -59
- cdktf_cdktf_provider_upcloud/storage/__init__.py +55 -55
- cdktf_cdktf_provider_upcloud/tag/__init__.py +15 -15
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/METADATA +3 -3
- cdktf_cdktf_provider_upcloud-7.0.0.dist-info/RECORD +47 -0
- cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@6.0.2.jsii.tgz +0 -0
- cdktf_cdktf_provider_upcloud-6.0.2.dist-info/RECORD +0 -45
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/LICENSE +0 -0
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/WHEEL +0 -0
- {cdktf_cdktf_provider_upcloud-6.0.2.dist-info → cdktf_cdktf_provider_upcloud-7.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2017 @@
|
|
|
1
|
+
'''
|
|
2
|
+
# `upcloud_managed_database_opensearch`
|
|
3
|
+
|
|
4
|
+
Refer to the Terraform Registory for docs: [`upcloud_managed_database_opensearch`](https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch).
|
|
5
|
+
'''
|
|
6
|
+
import abc
|
|
7
|
+
import builtins
|
|
8
|
+
import datetime
|
|
9
|
+
import enum
|
|
10
|
+
import typing
|
|
11
|
+
|
|
12
|
+
import jsii
|
|
13
|
+
import publication
|
|
14
|
+
import typing_extensions
|
|
15
|
+
|
|
16
|
+
from typeguard import check_type
|
|
17
|
+
|
|
18
|
+
from .._jsii import *
|
|
19
|
+
|
|
20
|
+
import cdktf as _cdktf_9a9027ec
|
|
21
|
+
import constructs as _constructs_77d1e7e8
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class ManagedDatabaseOpensearch(
|
|
25
|
+
_cdktf_9a9027ec.TerraformResource,
|
|
26
|
+
metaclass=jsii.JSIIMeta,
|
|
27
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearch",
|
|
28
|
+
):
|
|
29
|
+
'''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch upcloud_managed_database_opensearch}.'''
|
|
30
|
+
|
|
31
|
+
def __init__(
|
|
32
|
+
self,
|
|
33
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
34
|
+
id_: builtins.str,
|
|
35
|
+
*,
|
|
36
|
+
name: builtins.str,
|
|
37
|
+
plan: builtins.str,
|
|
38
|
+
zone: builtins.str,
|
|
39
|
+
access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
40
|
+
extended_access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
41
|
+
id: typing.Optional[builtins.str] = None,
|
|
42
|
+
maintenance_window_dow: typing.Optional[builtins.str] = None,
|
|
43
|
+
maintenance_window_time: typing.Optional[builtins.str] = None,
|
|
44
|
+
powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
45
|
+
properties: typing.Optional[typing.Union["ManagedDatabaseOpensearchProperties", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
46
|
+
title: typing.Optional[builtins.str] = None,
|
|
47
|
+
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,
|
|
48
|
+
count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
|
|
49
|
+
depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
|
|
50
|
+
for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
|
|
51
|
+
lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
52
|
+
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
53
|
+
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,
|
|
54
|
+
) -> None:
|
|
55
|
+
'''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch upcloud_managed_database_opensearch} Resource.
|
|
56
|
+
|
|
57
|
+
:param scope: The scope in which to define this construct.
|
|
58
|
+
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
59
|
+
:param name: Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#name ManagedDatabaseOpensearch#name}
|
|
60
|
+
:param plan: Service plan to use. This determines how much resources the instance will have. You can list available plans with ``upctl database plans <type>``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#plan ManagedDatabaseOpensearch#plan}
|
|
61
|
+
:param zone: Zone where the instance resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#zone ManagedDatabaseOpensearch#zone}
|
|
62
|
+
:param access_control: Enables users access control for OpenSearch service. User access control rules will only be enforced if this attribute is enabled. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#access_control ManagedDatabaseOpensearch#access_control}
|
|
63
|
+
:param extended_access_control: Grant access to top-level ``_mget``, ``_msearch`` and ``_bulk`` APIs. Users are limited to perform operations on indices based on the user-specific access control rules. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#extended_access_control ManagedDatabaseOpensearch#extended_access_control}
|
|
64
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#id ManagedDatabaseOpensearch#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.
|
|
65
|
+
:param maintenance_window_dow: Maintenance window day of week. Lower case weekday name (monday, tuesday, ...). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_dow ManagedDatabaseOpensearch#maintenance_window_dow}
|
|
66
|
+
:param maintenance_window_time: Maintenance window UTC time in hh:mm:ss format. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_time ManagedDatabaseOpensearch#maintenance_window_time}
|
|
67
|
+
:param powered: The administrative power state of the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#powered ManagedDatabaseOpensearch#powered}
|
|
68
|
+
:param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#properties ManagedDatabaseOpensearch#properties}
|
|
69
|
+
:param title: Title of a managed database instance. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#title ManagedDatabaseOpensearch#title}
|
|
70
|
+
:param connection:
|
|
71
|
+
:param count:
|
|
72
|
+
:param depends_on:
|
|
73
|
+
:param for_each:
|
|
74
|
+
:param lifecycle:
|
|
75
|
+
:param provider:
|
|
76
|
+
:param provisioners:
|
|
77
|
+
'''
|
|
78
|
+
if __debug__:
|
|
79
|
+
type_hints = typing.get_type_hints(_typecheckingstub__64a04d8da6e4f1b319a40ace3990acecec34666de7dc4b9125beebfecfa929af)
|
|
80
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
81
|
+
check_type(argname="argument id_", value=id_, expected_type=type_hints["id_"])
|
|
82
|
+
config = ManagedDatabaseOpensearchConfig(
|
|
83
|
+
name=name,
|
|
84
|
+
plan=plan,
|
|
85
|
+
zone=zone,
|
|
86
|
+
access_control=access_control,
|
|
87
|
+
extended_access_control=extended_access_control,
|
|
88
|
+
id=id,
|
|
89
|
+
maintenance_window_dow=maintenance_window_dow,
|
|
90
|
+
maintenance_window_time=maintenance_window_time,
|
|
91
|
+
powered=powered,
|
|
92
|
+
properties=properties,
|
|
93
|
+
title=title,
|
|
94
|
+
connection=connection,
|
|
95
|
+
count=count,
|
|
96
|
+
depends_on=depends_on,
|
|
97
|
+
for_each=for_each,
|
|
98
|
+
lifecycle=lifecycle,
|
|
99
|
+
provider=provider,
|
|
100
|
+
provisioners=provisioners,
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
jsii.create(self.__class__, self, [scope, id_, config])
|
|
104
|
+
|
|
105
|
+
@jsii.member(jsii_name="putProperties")
|
|
106
|
+
def put_properties(
|
|
107
|
+
self,
|
|
108
|
+
*,
|
|
109
|
+
automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
110
|
+
ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
111
|
+
migration: typing.Optional[typing.Union["ManagedDatabaseOpensearchPropertiesMigration", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
112
|
+
public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
113
|
+
version: typing.Optional[builtins.str] = None,
|
|
114
|
+
) -> None:
|
|
115
|
+
'''
|
|
116
|
+
:param automatic_utility_network_ip_filter: Automatic utility network IP Filter. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#automatic_utility_network_ip_filter ManagedDatabaseOpensearch#automatic_utility_network_ip_filter}
|
|
117
|
+
:param ip_filter: IP filter. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ip_filter ManagedDatabaseOpensearch#ip_filter}
|
|
118
|
+
:param migration: migration block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#migration ManagedDatabaseOpensearch#migration}
|
|
119
|
+
:param public_access: Public access allows connections to your Managed Database services via the public internet. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#public_access ManagedDatabaseOpensearch#public_access}
|
|
120
|
+
:param version: OpenSearch major version. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#version ManagedDatabaseOpensearch#version}
|
|
121
|
+
'''
|
|
122
|
+
value = ManagedDatabaseOpensearchProperties(
|
|
123
|
+
automatic_utility_network_ip_filter=automatic_utility_network_ip_filter,
|
|
124
|
+
ip_filter=ip_filter,
|
|
125
|
+
migration=migration,
|
|
126
|
+
public_access=public_access,
|
|
127
|
+
version=version,
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
return typing.cast(None, jsii.invoke(self, "putProperties", [value]))
|
|
131
|
+
|
|
132
|
+
@jsii.member(jsii_name="resetAccessControl")
|
|
133
|
+
def reset_access_control(self) -> None:
|
|
134
|
+
return typing.cast(None, jsii.invoke(self, "resetAccessControl", []))
|
|
135
|
+
|
|
136
|
+
@jsii.member(jsii_name="resetExtendedAccessControl")
|
|
137
|
+
def reset_extended_access_control(self) -> None:
|
|
138
|
+
return typing.cast(None, jsii.invoke(self, "resetExtendedAccessControl", []))
|
|
139
|
+
|
|
140
|
+
@jsii.member(jsii_name="resetId")
|
|
141
|
+
def reset_id(self) -> None:
|
|
142
|
+
return typing.cast(None, jsii.invoke(self, "resetId", []))
|
|
143
|
+
|
|
144
|
+
@jsii.member(jsii_name="resetMaintenanceWindowDow")
|
|
145
|
+
def reset_maintenance_window_dow(self) -> None:
|
|
146
|
+
return typing.cast(None, jsii.invoke(self, "resetMaintenanceWindowDow", []))
|
|
147
|
+
|
|
148
|
+
@jsii.member(jsii_name="resetMaintenanceWindowTime")
|
|
149
|
+
def reset_maintenance_window_time(self) -> None:
|
|
150
|
+
return typing.cast(None, jsii.invoke(self, "resetMaintenanceWindowTime", []))
|
|
151
|
+
|
|
152
|
+
@jsii.member(jsii_name="resetPowered")
|
|
153
|
+
def reset_powered(self) -> None:
|
|
154
|
+
return typing.cast(None, jsii.invoke(self, "resetPowered", []))
|
|
155
|
+
|
|
156
|
+
@jsii.member(jsii_name="resetProperties")
|
|
157
|
+
def reset_properties(self) -> None:
|
|
158
|
+
return typing.cast(None, jsii.invoke(self, "resetProperties", []))
|
|
159
|
+
|
|
160
|
+
@jsii.member(jsii_name="resetTitle")
|
|
161
|
+
def reset_title(self) -> None:
|
|
162
|
+
return typing.cast(None, jsii.invoke(self, "resetTitle", []))
|
|
163
|
+
|
|
164
|
+
@jsii.member(jsii_name="synthesizeAttributes")
|
|
165
|
+
def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
166
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
|
|
167
|
+
|
|
168
|
+
@jsii.python.classproperty
|
|
169
|
+
@jsii.member(jsii_name="tfResourceType")
|
|
170
|
+
def TF_RESOURCE_TYPE(cls) -> builtins.str:
|
|
171
|
+
return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
|
|
172
|
+
|
|
173
|
+
@builtins.property
|
|
174
|
+
@jsii.member(jsii_name="components")
|
|
175
|
+
def components(self) -> "ManagedDatabaseOpensearchComponentsList":
|
|
176
|
+
return typing.cast("ManagedDatabaseOpensearchComponentsList", jsii.get(self, "components"))
|
|
177
|
+
|
|
178
|
+
@builtins.property
|
|
179
|
+
@jsii.member(jsii_name="nodeStates")
|
|
180
|
+
def node_states(self) -> "ManagedDatabaseOpensearchNodeStatesList":
|
|
181
|
+
return typing.cast("ManagedDatabaseOpensearchNodeStatesList", jsii.get(self, "nodeStates"))
|
|
182
|
+
|
|
183
|
+
@builtins.property
|
|
184
|
+
@jsii.member(jsii_name="primaryDatabase")
|
|
185
|
+
def primary_database(self) -> builtins.str:
|
|
186
|
+
return typing.cast(builtins.str, jsii.get(self, "primaryDatabase"))
|
|
187
|
+
|
|
188
|
+
@builtins.property
|
|
189
|
+
@jsii.member(jsii_name="properties")
|
|
190
|
+
def properties(self) -> "ManagedDatabaseOpensearchPropertiesOutputReference":
|
|
191
|
+
return typing.cast("ManagedDatabaseOpensearchPropertiesOutputReference", jsii.get(self, "properties"))
|
|
192
|
+
|
|
193
|
+
@builtins.property
|
|
194
|
+
@jsii.member(jsii_name="serviceHost")
|
|
195
|
+
def service_host(self) -> builtins.str:
|
|
196
|
+
return typing.cast(builtins.str, jsii.get(self, "serviceHost"))
|
|
197
|
+
|
|
198
|
+
@builtins.property
|
|
199
|
+
@jsii.member(jsii_name="servicePassword")
|
|
200
|
+
def service_password(self) -> builtins.str:
|
|
201
|
+
return typing.cast(builtins.str, jsii.get(self, "servicePassword"))
|
|
202
|
+
|
|
203
|
+
@builtins.property
|
|
204
|
+
@jsii.member(jsii_name="servicePort")
|
|
205
|
+
def service_port(self) -> builtins.str:
|
|
206
|
+
return typing.cast(builtins.str, jsii.get(self, "servicePort"))
|
|
207
|
+
|
|
208
|
+
@builtins.property
|
|
209
|
+
@jsii.member(jsii_name="serviceUri")
|
|
210
|
+
def service_uri(self) -> builtins.str:
|
|
211
|
+
return typing.cast(builtins.str, jsii.get(self, "serviceUri"))
|
|
212
|
+
|
|
213
|
+
@builtins.property
|
|
214
|
+
@jsii.member(jsii_name="serviceUsername")
|
|
215
|
+
def service_username(self) -> builtins.str:
|
|
216
|
+
return typing.cast(builtins.str, jsii.get(self, "serviceUsername"))
|
|
217
|
+
|
|
218
|
+
@builtins.property
|
|
219
|
+
@jsii.member(jsii_name="state")
|
|
220
|
+
def state(self) -> builtins.str:
|
|
221
|
+
return typing.cast(builtins.str, jsii.get(self, "state"))
|
|
222
|
+
|
|
223
|
+
@builtins.property
|
|
224
|
+
@jsii.member(jsii_name="type")
|
|
225
|
+
def type(self) -> builtins.str:
|
|
226
|
+
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
227
|
+
|
|
228
|
+
@builtins.property
|
|
229
|
+
@jsii.member(jsii_name="accessControlInput")
|
|
230
|
+
def access_control_input(
|
|
231
|
+
self,
|
|
232
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
233
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "accessControlInput"))
|
|
234
|
+
|
|
235
|
+
@builtins.property
|
|
236
|
+
@jsii.member(jsii_name="extendedAccessControlInput")
|
|
237
|
+
def extended_access_control_input(
|
|
238
|
+
self,
|
|
239
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
240
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "extendedAccessControlInput"))
|
|
241
|
+
|
|
242
|
+
@builtins.property
|
|
243
|
+
@jsii.member(jsii_name="idInput")
|
|
244
|
+
def id_input(self) -> typing.Optional[builtins.str]:
|
|
245
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idInput"))
|
|
246
|
+
|
|
247
|
+
@builtins.property
|
|
248
|
+
@jsii.member(jsii_name="maintenanceWindowDowInput")
|
|
249
|
+
def maintenance_window_dow_input(self) -> typing.Optional[builtins.str]:
|
|
250
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "maintenanceWindowDowInput"))
|
|
251
|
+
|
|
252
|
+
@builtins.property
|
|
253
|
+
@jsii.member(jsii_name="maintenanceWindowTimeInput")
|
|
254
|
+
def maintenance_window_time_input(self) -> typing.Optional[builtins.str]:
|
|
255
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "maintenanceWindowTimeInput"))
|
|
256
|
+
|
|
257
|
+
@builtins.property
|
|
258
|
+
@jsii.member(jsii_name="nameInput")
|
|
259
|
+
def name_input(self) -> typing.Optional[builtins.str]:
|
|
260
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
|
|
261
|
+
|
|
262
|
+
@builtins.property
|
|
263
|
+
@jsii.member(jsii_name="planInput")
|
|
264
|
+
def plan_input(self) -> typing.Optional[builtins.str]:
|
|
265
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "planInput"))
|
|
266
|
+
|
|
267
|
+
@builtins.property
|
|
268
|
+
@jsii.member(jsii_name="poweredInput")
|
|
269
|
+
def powered_input(
|
|
270
|
+
self,
|
|
271
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
272
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "poweredInput"))
|
|
273
|
+
|
|
274
|
+
@builtins.property
|
|
275
|
+
@jsii.member(jsii_name="propertiesInput")
|
|
276
|
+
def properties_input(
|
|
277
|
+
self,
|
|
278
|
+
) -> typing.Optional["ManagedDatabaseOpensearchProperties"]:
|
|
279
|
+
return typing.cast(typing.Optional["ManagedDatabaseOpensearchProperties"], jsii.get(self, "propertiesInput"))
|
|
280
|
+
|
|
281
|
+
@builtins.property
|
|
282
|
+
@jsii.member(jsii_name="titleInput")
|
|
283
|
+
def title_input(self) -> typing.Optional[builtins.str]:
|
|
284
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "titleInput"))
|
|
285
|
+
|
|
286
|
+
@builtins.property
|
|
287
|
+
@jsii.member(jsii_name="zoneInput")
|
|
288
|
+
def zone_input(self) -> typing.Optional[builtins.str]:
|
|
289
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "zoneInput"))
|
|
290
|
+
|
|
291
|
+
@builtins.property
|
|
292
|
+
@jsii.member(jsii_name="accessControl")
|
|
293
|
+
def access_control(
|
|
294
|
+
self,
|
|
295
|
+
) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
296
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "accessControl"))
|
|
297
|
+
|
|
298
|
+
@access_control.setter
|
|
299
|
+
def access_control(
|
|
300
|
+
self,
|
|
301
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
302
|
+
) -> None:
|
|
303
|
+
if __debug__:
|
|
304
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cc380db9b723b44538f0654f873b7e6938e7f77a5500c11f59172853bb812451)
|
|
305
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
306
|
+
jsii.set(self, "accessControl", value)
|
|
307
|
+
|
|
308
|
+
@builtins.property
|
|
309
|
+
@jsii.member(jsii_name="extendedAccessControl")
|
|
310
|
+
def extended_access_control(
|
|
311
|
+
self,
|
|
312
|
+
) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
313
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "extendedAccessControl"))
|
|
314
|
+
|
|
315
|
+
@extended_access_control.setter
|
|
316
|
+
def extended_access_control(
|
|
317
|
+
self,
|
|
318
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
319
|
+
) -> None:
|
|
320
|
+
if __debug__:
|
|
321
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a861bcb5d8f073071a3fc6c246b46bb262c59eb6ed230613542b683d9ed7c266)
|
|
322
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
323
|
+
jsii.set(self, "extendedAccessControl", value)
|
|
324
|
+
|
|
325
|
+
@builtins.property
|
|
326
|
+
@jsii.member(jsii_name="id")
|
|
327
|
+
def id(self) -> builtins.str:
|
|
328
|
+
return typing.cast(builtins.str, jsii.get(self, "id"))
|
|
329
|
+
|
|
330
|
+
@id.setter
|
|
331
|
+
def id(self, value: builtins.str) -> None:
|
|
332
|
+
if __debug__:
|
|
333
|
+
type_hints = typing.get_type_hints(_typecheckingstub__03c43ec7ae33e6b60985ef2de80521f4f4ad3629a44711cd102de73bdede18b7)
|
|
334
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
335
|
+
jsii.set(self, "id", value)
|
|
336
|
+
|
|
337
|
+
@builtins.property
|
|
338
|
+
@jsii.member(jsii_name="maintenanceWindowDow")
|
|
339
|
+
def maintenance_window_dow(self) -> builtins.str:
|
|
340
|
+
return typing.cast(builtins.str, jsii.get(self, "maintenanceWindowDow"))
|
|
341
|
+
|
|
342
|
+
@maintenance_window_dow.setter
|
|
343
|
+
def maintenance_window_dow(self, value: builtins.str) -> None:
|
|
344
|
+
if __debug__:
|
|
345
|
+
type_hints = typing.get_type_hints(_typecheckingstub__778bfd3bad1122cec5c9a8b1233c9c30f21e60cdc07d7a6dcd73160f3e8f3e9c)
|
|
346
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
347
|
+
jsii.set(self, "maintenanceWindowDow", value)
|
|
348
|
+
|
|
349
|
+
@builtins.property
|
|
350
|
+
@jsii.member(jsii_name="maintenanceWindowTime")
|
|
351
|
+
def maintenance_window_time(self) -> builtins.str:
|
|
352
|
+
return typing.cast(builtins.str, jsii.get(self, "maintenanceWindowTime"))
|
|
353
|
+
|
|
354
|
+
@maintenance_window_time.setter
|
|
355
|
+
def maintenance_window_time(self, value: builtins.str) -> None:
|
|
356
|
+
if __debug__:
|
|
357
|
+
type_hints = typing.get_type_hints(_typecheckingstub__530a55728ead99da54d717ec010026a48f653d62a58301fef9f9b7df2338770b)
|
|
358
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
359
|
+
jsii.set(self, "maintenanceWindowTime", value)
|
|
360
|
+
|
|
361
|
+
@builtins.property
|
|
362
|
+
@jsii.member(jsii_name="name")
|
|
363
|
+
def name(self) -> builtins.str:
|
|
364
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
365
|
+
|
|
366
|
+
@name.setter
|
|
367
|
+
def name(self, value: builtins.str) -> None:
|
|
368
|
+
if __debug__:
|
|
369
|
+
type_hints = typing.get_type_hints(_typecheckingstub__483f921db7c5dfd553cc7ae4edbed08bbf6e087ac61e5e73e3d36d5d28906fd7)
|
|
370
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
371
|
+
jsii.set(self, "name", value)
|
|
372
|
+
|
|
373
|
+
@builtins.property
|
|
374
|
+
@jsii.member(jsii_name="plan")
|
|
375
|
+
def plan(self) -> builtins.str:
|
|
376
|
+
return typing.cast(builtins.str, jsii.get(self, "plan"))
|
|
377
|
+
|
|
378
|
+
@plan.setter
|
|
379
|
+
def plan(self, value: builtins.str) -> None:
|
|
380
|
+
if __debug__:
|
|
381
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aaae0df4ce6f9b86602301afc165377558c6979c9d648f5b3b8a28f1427c34e3)
|
|
382
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
383
|
+
jsii.set(self, "plan", value)
|
|
384
|
+
|
|
385
|
+
@builtins.property
|
|
386
|
+
@jsii.member(jsii_name="powered")
|
|
387
|
+
def powered(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
388
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "powered"))
|
|
389
|
+
|
|
390
|
+
@powered.setter
|
|
391
|
+
def powered(
|
|
392
|
+
self,
|
|
393
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
394
|
+
) -> None:
|
|
395
|
+
if __debug__:
|
|
396
|
+
type_hints = typing.get_type_hints(_typecheckingstub__45778f8cc87e5d7b6f2d7c690dc5f0615c03f6d3acfd1258fa752f26e3f8740b)
|
|
397
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
398
|
+
jsii.set(self, "powered", value)
|
|
399
|
+
|
|
400
|
+
@builtins.property
|
|
401
|
+
@jsii.member(jsii_name="title")
|
|
402
|
+
def title(self) -> builtins.str:
|
|
403
|
+
return typing.cast(builtins.str, jsii.get(self, "title"))
|
|
404
|
+
|
|
405
|
+
@title.setter
|
|
406
|
+
def title(self, value: builtins.str) -> None:
|
|
407
|
+
if __debug__:
|
|
408
|
+
type_hints = typing.get_type_hints(_typecheckingstub__579f921500d29592dd476a83479c64100aa52fd4cc27afa5eae53e2740c76556)
|
|
409
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
410
|
+
jsii.set(self, "title", value)
|
|
411
|
+
|
|
412
|
+
@builtins.property
|
|
413
|
+
@jsii.member(jsii_name="zone")
|
|
414
|
+
def zone(self) -> builtins.str:
|
|
415
|
+
return typing.cast(builtins.str, jsii.get(self, "zone"))
|
|
416
|
+
|
|
417
|
+
@zone.setter
|
|
418
|
+
def zone(self, value: builtins.str) -> None:
|
|
419
|
+
if __debug__:
|
|
420
|
+
type_hints = typing.get_type_hints(_typecheckingstub__71dbfb4b6bef08098f6a9392298bab540d9d5a48287b7ff1514dbdef9db71b1c)
|
|
421
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
422
|
+
jsii.set(self, "zone", value)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
@jsii.data_type(
|
|
426
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchComponents",
|
|
427
|
+
jsii_struct_bases=[],
|
|
428
|
+
name_mapping={},
|
|
429
|
+
)
|
|
430
|
+
class ManagedDatabaseOpensearchComponents:
|
|
431
|
+
def __init__(self) -> None:
|
|
432
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
433
|
+
|
|
434
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
435
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
436
|
+
|
|
437
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
438
|
+
return not (rhs == self)
|
|
439
|
+
|
|
440
|
+
def __repr__(self) -> str:
|
|
441
|
+
return "ManagedDatabaseOpensearchComponents(%s)" % ", ".join(
|
|
442
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class ManagedDatabaseOpensearchComponentsList(
|
|
447
|
+
_cdktf_9a9027ec.ComplexList,
|
|
448
|
+
metaclass=jsii.JSIIMeta,
|
|
449
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchComponentsList",
|
|
450
|
+
):
|
|
451
|
+
def __init__(
|
|
452
|
+
self,
|
|
453
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
454
|
+
terraform_attribute: builtins.str,
|
|
455
|
+
wraps_set: builtins.bool,
|
|
456
|
+
) -> None:
|
|
457
|
+
'''
|
|
458
|
+
:param terraform_resource: The parent resource.
|
|
459
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
460
|
+
:param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
|
461
|
+
'''
|
|
462
|
+
if __debug__:
|
|
463
|
+
type_hints = typing.get_type_hints(_typecheckingstub__05e0104604c6d119c33be2ffc1295050857aba0fbf9013e5d6022408797e700e)
|
|
464
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
465
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
466
|
+
check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
|
|
467
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
|
|
468
|
+
|
|
469
|
+
@jsii.member(jsii_name="get")
|
|
470
|
+
def get(
|
|
471
|
+
self,
|
|
472
|
+
index: jsii.Number,
|
|
473
|
+
) -> "ManagedDatabaseOpensearchComponentsOutputReference":
|
|
474
|
+
'''
|
|
475
|
+
:param index: the index of the item to return.
|
|
476
|
+
'''
|
|
477
|
+
if __debug__:
|
|
478
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3df9409d3f44676e26c2ca792935f6fef5261571686ce099b21079ee9cbf626c)
|
|
479
|
+
check_type(argname="argument index", value=index, expected_type=type_hints["index"])
|
|
480
|
+
return typing.cast("ManagedDatabaseOpensearchComponentsOutputReference", jsii.invoke(self, "get", [index]))
|
|
481
|
+
|
|
482
|
+
@builtins.property
|
|
483
|
+
@jsii.member(jsii_name="terraformAttribute")
|
|
484
|
+
def _terraform_attribute(self) -> builtins.str:
|
|
485
|
+
'''The attribute on the parent resource this class is referencing.'''
|
|
486
|
+
return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
|
|
487
|
+
|
|
488
|
+
@_terraform_attribute.setter
|
|
489
|
+
def _terraform_attribute(self, value: builtins.str) -> None:
|
|
490
|
+
if __debug__:
|
|
491
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1797fa76f17542a4461981c77c1febde7b7dc7ffbd53ddc05cf07be29a5ae4c8)
|
|
492
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
493
|
+
jsii.set(self, "terraformAttribute", value)
|
|
494
|
+
|
|
495
|
+
@builtins.property
|
|
496
|
+
@jsii.member(jsii_name="terraformResource")
|
|
497
|
+
def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
|
|
498
|
+
'''The parent resource.'''
|
|
499
|
+
return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
|
|
500
|
+
|
|
501
|
+
@_terraform_resource.setter
|
|
502
|
+
def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
|
|
503
|
+
if __debug__:
|
|
504
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6c439c2c67d2cf65e96be6f9aae6aed6b527fa71224a5e82d9bfb478b705b43d)
|
|
505
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
506
|
+
jsii.set(self, "terraformResource", value)
|
|
507
|
+
|
|
508
|
+
@builtins.property
|
|
509
|
+
@jsii.member(jsii_name="wrapsSet")
|
|
510
|
+
def _wraps_set(self) -> builtins.bool:
|
|
511
|
+
'''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
|
|
512
|
+
return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
|
|
513
|
+
|
|
514
|
+
@_wraps_set.setter
|
|
515
|
+
def _wraps_set(self, value: builtins.bool) -> None:
|
|
516
|
+
if __debug__:
|
|
517
|
+
type_hints = typing.get_type_hints(_typecheckingstub__90f578c3b7e470de9a79795d445280c0213bf84b88b837792ae7c769b5a24be2)
|
|
518
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
519
|
+
jsii.set(self, "wrapsSet", value)
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
class ManagedDatabaseOpensearchComponentsOutputReference(
|
|
523
|
+
_cdktf_9a9027ec.ComplexObject,
|
|
524
|
+
metaclass=jsii.JSIIMeta,
|
|
525
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchComponentsOutputReference",
|
|
526
|
+
):
|
|
527
|
+
def __init__(
|
|
528
|
+
self,
|
|
529
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
530
|
+
terraform_attribute: builtins.str,
|
|
531
|
+
complex_object_index: jsii.Number,
|
|
532
|
+
complex_object_is_from_set: builtins.bool,
|
|
533
|
+
) -> None:
|
|
534
|
+
'''
|
|
535
|
+
:param terraform_resource: The parent resource.
|
|
536
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
537
|
+
:param complex_object_index: the index of this item in the list.
|
|
538
|
+
: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).
|
|
539
|
+
'''
|
|
540
|
+
if __debug__:
|
|
541
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a85bd4824a9de6b259bc7ccba33f22669db6f14724268fea2997edfec3db5c36)
|
|
542
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
543
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
544
|
+
check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
|
|
545
|
+
check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
|
|
546
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
|
|
547
|
+
|
|
548
|
+
@builtins.property
|
|
549
|
+
@jsii.member(jsii_name="component")
|
|
550
|
+
def component(self) -> builtins.str:
|
|
551
|
+
return typing.cast(builtins.str, jsii.get(self, "component"))
|
|
552
|
+
|
|
553
|
+
@builtins.property
|
|
554
|
+
@jsii.member(jsii_name="host")
|
|
555
|
+
def host(self) -> builtins.str:
|
|
556
|
+
return typing.cast(builtins.str, jsii.get(self, "host"))
|
|
557
|
+
|
|
558
|
+
@builtins.property
|
|
559
|
+
@jsii.member(jsii_name="port")
|
|
560
|
+
def port(self) -> jsii.Number:
|
|
561
|
+
return typing.cast(jsii.Number, jsii.get(self, "port"))
|
|
562
|
+
|
|
563
|
+
@builtins.property
|
|
564
|
+
@jsii.member(jsii_name="route")
|
|
565
|
+
def route(self) -> builtins.str:
|
|
566
|
+
return typing.cast(builtins.str, jsii.get(self, "route"))
|
|
567
|
+
|
|
568
|
+
@builtins.property
|
|
569
|
+
@jsii.member(jsii_name="usage")
|
|
570
|
+
def usage(self) -> builtins.str:
|
|
571
|
+
return typing.cast(builtins.str, jsii.get(self, "usage"))
|
|
572
|
+
|
|
573
|
+
@builtins.property
|
|
574
|
+
@jsii.member(jsii_name="internalValue")
|
|
575
|
+
def internal_value(self) -> typing.Optional[ManagedDatabaseOpensearchComponents]:
|
|
576
|
+
return typing.cast(typing.Optional[ManagedDatabaseOpensearchComponents], jsii.get(self, "internalValue"))
|
|
577
|
+
|
|
578
|
+
@internal_value.setter
|
|
579
|
+
def internal_value(
|
|
580
|
+
self,
|
|
581
|
+
value: typing.Optional[ManagedDatabaseOpensearchComponents],
|
|
582
|
+
) -> None:
|
|
583
|
+
if __debug__:
|
|
584
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3927b44417f2561e30157a8e7bbae613a717e7583e7952dae4442c4727ed67b2)
|
|
585
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
586
|
+
jsii.set(self, "internalValue", value)
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
@jsii.data_type(
|
|
590
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchConfig",
|
|
591
|
+
jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
|
|
592
|
+
name_mapping={
|
|
593
|
+
"connection": "connection",
|
|
594
|
+
"count": "count",
|
|
595
|
+
"depends_on": "dependsOn",
|
|
596
|
+
"for_each": "forEach",
|
|
597
|
+
"lifecycle": "lifecycle",
|
|
598
|
+
"provider": "provider",
|
|
599
|
+
"provisioners": "provisioners",
|
|
600
|
+
"name": "name",
|
|
601
|
+
"plan": "plan",
|
|
602
|
+
"zone": "zone",
|
|
603
|
+
"access_control": "accessControl",
|
|
604
|
+
"extended_access_control": "extendedAccessControl",
|
|
605
|
+
"id": "id",
|
|
606
|
+
"maintenance_window_dow": "maintenanceWindowDow",
|
|
607
|
+
"maintenance_window_time": "maintenanceWindowTime",
|
|
608
|
+
"powered": "powered",
|
|
609
|
+
"properties": "properties",
|
|
610
|
+
"title": "title",
|
|
611
|
+
},
|
|
612
|
+
)
|
|
613
|
+
class ManagedDatabaseOpensearchConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
614
|
+
def __init__(
|
|
615
|
+
self,
|
|
616
|
+
*,
|
|
617
|
+
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,
|
|
618
|
+
count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
|
|
619
|
+
depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
|
|
620
|
+
for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
|
|
621
|
+
lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
622
|
+
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
623
|
+
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,
|
|
624
|
+
name: builtins.str,
|
|
625
|
+
plan: builtins.str,
|
|
626
|
+
zone: builtins.str,
|
|
627
|
+
access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
628
|
+
extended_access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
629
|
+
id: typing.Optional[builtins.str] = None,
|
|
630
|
+
maintenance_window_dow: typing.Optional[builtins.str] = None,
|
|
631
|
+
maintenance_window_time: typing.Optional[builtins.str] = None,
|
|
632
|
+
powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
633
|
+
properties: typing.Optional[typing.Union["ManagedDatabaseOpensearchProperties", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
634
|
+
title: typing.Optional[builtins.str] = None,
|
|
635
|
+
) -> None:
|
|
636
|
+
'''
|
|
637
|
+
:param connection:
|
|
638
|
+
:param count:
|
|
639
|
+
:param depends_on:
|
|
640
|
+
:param for_each:
|
|
641
|
+
:param lifecycle:
|
|
642
|
+
:param provider:
|
|
643
|
+
:param provisioners:
|
|
644
|
+
:param name: Name of the service. The name is used as a prefix for the logical hostname. Must be unique within an account Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#name ManagedDatabaseOpensearch#name}
|
|
645
|
+
:param plan: Service plan to use. This determines how much resources the instance will have. You can list available plans with ``upctl database plans <type>``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#plan ManagedDatabaseOpensearch#plan}
|
|
646
|
+
:param zone: Zone where the instance resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#zone ManagedDatabaseOpensearch#zone}
|
|
647
|
+
:param access_control: Enables users access control for OpenSearch service. User access control rules will only be enforced if this attribute is enabled. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#access_control ManagedDatabaseOpensearch#access_control}
|
|
648
|
+
:param extended_access_control: Grant access to top-level ``_mget``, ``_msearch`` and ``_bulk`` APIs. Users are limited to perform operations on indices based on the user-specific access control rules. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#extended_access_control ManagedDatabaseOpensearch#extended_access_control}
|
|
649
|
+
:param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#id ManagedDatabaseOpensearch#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.
|
|
650
|
+
:param maintenance_window_dow: Maintenance window day of week. Lower case weekday name (monday, tuesday, ...). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_dow ManagedDatabaseOpensearch#maintenance_window_dow}
|
|
651
|
+
:param maintenance_window_time: Maintenance window UTC time in hh:mm:ss format. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_time ManagedDatabaseOpensearch#maintenance_window_time}
|
|
652
|
+
:param powered: The administrative power state of the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#powered ManagedDatabaseOpensearch#powered}
|
|
653
|
+
:param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#properties ManagedDatabaseOpensearch#properties}
|
|
654
|
+
:param title: Title of a managed database instance. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#title ManagedDatabaseOpensearch#title}
|
|
655
|
+
'''
|
|
656
|
+
if isinstance(lifecycle, dict):
|
|
657
|
+
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
|
658
|
+
if isinstance(properties, dict):
|
|
659
|
+
properties = ManagedDatabaseOpensearchProperties(**properties)
|
|
660
|
+
if __debug__:
|
|
661
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d5005f5a996eb4e5ca1f0d2c27e74393a05028526f22e88c6ac2dc4e0b094b28)
|
|
662
|
+
check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
|
|
663
|
+
check_type(argname="argument count", value=count, expected_type=type_hints["count"])
|
|
664
|
+
check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
|
|
665
|
+
check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
|
|
666
|
+
check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
|
|
667
|
+
check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
|
|
668
|
+
check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
|
|
669
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
670
|
+
check_type(argname="argument plan", value=plan, expected_type=type_hints["plan"])
|
|
671
|
+
check_type(argname="argument zone", value=zone, expected_type=type_hints["zone"])
|
|
672
|
+
check_type(argname="argument access_control", value=access_control, expected_type=type_hints["access_control"])
|
|
673
|
+
check_type(argname="argument extended_access_control", value=extended_access_control, expected_type=type_hints["extended_access_control"])
|
|
674
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
675
|
+
check_type(argname="argument maintenance_window_dow", value=maintenance_window_dow, expected_type=type_hints["maintenance_window_dow"])
|
|
676
|
+
check_type(argname="argument maintenance_window_time", value=maintenance_window_time, expected_type=type_hints["maintenance_window_time"])
|
|
677
|
+
check_type(argname="argument powered", value=powered, expected_type=type_hints["powered"])
|
|
678
|
+
check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
|
|
679
|
+
check_type(argname="argument title", value=title, expected_type=type_hints["title"])
|
|
680
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
681
|
+
"name": name,
|
|
682
|
+
"plan": plan,
|
|
683
|
+
"zone": zone,
|
|
684
|
+
}
|
|
685
|
+
if connection is not None:
|
|
686
|
+
self._values["connection"] = connection
|
|
687
|
+
if count is not None:
|
|
688
|
+
self._values["count"] = count
|
|
689
|
+
if depends_on is not None:
|
|
690
|
+
self._values["depends_on"] = depends_on
|
|
691
|
+
if for_each is not None:
|
|
692
|
+
self._values["for_each"] = for_each
|
|
693
|
+
if lifecycle is not None:
|
|
694
|
+
self._values["lifecycle"] = lifecycle
|
|
695
|
+
if provider is not None:
|
|
696
|
+
self._values["provider"] = provider
|
|
697
|
+
if provisioners is not None:
|
|
698
|
+
self._values["provisioners"] = provisioners
|
|
699
|
+
if access_control is not None:
|
|
700
|
+
self._values["access_control"] = access_control
|
|
701
|
+
if extended_access_control is not None:
|
|
702
|
+
self._values["extended_access_control"] = extended_access_control
|
|
703
|
+
if id is not None:
|
|
704
|
+
self._values["id"] = id
|
|
705
|
+
if maintenance_window_dow is not None:
|
|
706
|
+
self._values["maintenance_window_dow"] = maintenance_window_dow
|
|
707
|
+
if maintenance_window_time is not None:
|
|
708
|
+
self._values["maintenance_window_time"] = maintenance_window_time
|
|
709
|
+
if powered is not None:
|
|
710
|
+
self._values["powered"] = powered
|
|
711
|
+
if properties is not None:
|
|
712
|
+
self._values["properties"] = properties
|
|
713
|
+
if title is not None:
|
|
714
|
+
self._values["title"] = title
|
|
715
|
+
|
|
716
|
+
@builtins.property
|
|
717
|
+
def connection(
|
|
718
|
+
self,
|
|
719
|
+
) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
|
|
720
|
+
'''
|
|
721
|
+
:stability: experimental
|
|
722
|
+
'''
|
|
723
|
+
result = self._values.get("connection")
|
|
724
|
+
return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
|
|
725
|
+
|
|
726
|
+
@builtins.property
|
|
727
|
+
def count(
|
|
728
|
+
self,
|
|
729
|
+
) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
|
|
730
|
+
'''
|
|
731
|
+
:stability: experimental
|
|
732
|
+
'''
|
|
733
|
+
result = self._values.get("count")
|
|
734
|
+
return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
|
|
735
|
+
|
|
736
|
+
@builtins.property
|
|
737
|
+
def depends_on(
|
|
738
|
+
self,
|
|
739
|
+
) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
|
|
740
|
+
'''
|
|
741
|
+
:stability: experimental
|
|
742
|
+
'''
|
|
743
|
+
result = self._values.get("depends_on")
|
|
744
|
+
return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
|
|
745
|
+
|
|
746
|
+
@builtins.property
|
|
747
|
+
def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
|
|
748
|
+
'''
|
|
749
|
+
:stability: experimental
|
|
750
|
+
'''
|
|
751
|
+
result = self._values.get("for_each")
|
|
752
|
+
return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
|
|
753
|
+
|
|
754
|
+
@builtins.property
|
|
755
|
+
def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
|
|
756
|
+
'''
|
|
757
|
+
:stability: experimental
|
|
758
|
+
'''
|
|
759
|
+
result = self._values.get("lifecycle")
|
|
760
|
+
return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
|
|
761
|
+
|
|
762
|
+
@builtins.property
|
|
763
|
+
def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
|
|
764
|
+
'''
|
|
765
|
+
:stability: experimental
|
|
766
|
+
'''
|
|
767
|
+
result = self._values.get("provider")
|
|
768
|
+
return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
|
|
769
|
+
|
|
770
|
+
@builtins.property
|
|
771
|
+
def provisioners(
|
|
772
|
+
self,
|
|
773
|
+
) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
|
|
774
|
+
'''
|
|
775
|
+
:stability: experimental
|
|
776
|
+
'''
|
|
777
|
+
result = self._values.get("provisioners")
|
|
778
|
+
return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
|
|
779
|
+
|
|
780
|
+
@builtins.property
|
|
781
|
+
def name(self) -> builtins.str:
|
|
782
|
+
'''Name of the service.
|
|
783
|
+
|
|
784
|
+
The name is used as a prefix for the logical hostname. Must be unique within an account
|
|
785
|
+
|
|
786
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#name ManagedDatabaseOpensearch#name}
|
|
787
|
+
'''
|
|
788
|
+
result = self._values.get("name")
|
|
789
|
+
assert result is not None, "Required property 'name' is missing"
|
|
790
|
+
return typing.cast(builtins.str, result)
|
|
791
|
+
|
|
792
|
+
@builtins.property
|
|
793
|
+
def plan(self) -> builtins.str:
|
|
794
|
+
'''Service plan to use.
|
|
795
|
+
|
|
796
|
+
This determines how much resources the instance will have. You can list available plans with ``upctl database plans <type>``.
|
|
797
|
+
|
|
798
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#plan ManagedDatabaseOpensearch#plan}
|
|
799
|
+
'''
|
|
800
|
+
result = self._values.get("plan")
|
|
801
|
+
assert result is not None, "Required property 'plan' is missing"
|
|
802
|
+
return typing.cast(builtins.str, result)
|
|
803
|
+
|
|
804
|
+
@builtins.property
|
|
805
|
+
def zone(self) -> builtins.str:
|
|
806
|
+
'''Zone where the instance resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``.
|
|
807
|
+
|
|
808
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#zone ManagedDatabaseOpensearch#zone}
|
|
809
|
+
'''
|
|
810
|
+
result = self._values.get("zone")
|
|
811
|
+
assert result is not None, "Required property 'zone' is missing"
|
|
812
|
+
return typing.cast(builtins.str, result)
|
|
813
|
+
|
|
814
|
+
@builtins.property
|
|
815
|
+
def access_control(
|
|
816
|
+
self,
|
|
817
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
818
|
+
'''Enables users access control for OpenSearch service.
|
|
819
|
+
|
|
820
|
+
User access control rules will only be enforced if this attribute is enabled.
|
|
821
|
+
|
|
822
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#access_control ManagedDatabaseOpensearch#access_control}
|
|
823
|
+
'''
|
|
824
|
+
result = self._values.get("access_control")
|
|
825
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
826
|
+
|
|
827
|
+
@builtins.property
|
|
828
|
+
def extended_access_control(
|
|
829
|
+
self,
|
|
830
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
831
|
+
'''Grant access to top-level ``_mget``, ``_msearch`` and ``_bulk`` APIs.
|
|
832
|
+
|
|
833
|
+
Users are limited to perform operations on indices based on the user-specific access control rules.
|
|
834
|
+
|
|
835
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#extended_access_control ManagedDatabaseOpensearch#extended_access_control}
|
|
836
|
+
'''
|
|
837
|
+
result = self._values.get("extended_access_control")
|
|
838
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
839
|
+
|
|
840
|
+
@builtins.property
|
|
841
|
+
def id(self) -> typing.Optional[builtins.str]:
|
|
842
|
+
'''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#id ManagedDatabaseOpensearch#id}.
|
|
843
|
+
|
|
844
|
+
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
845
|
+
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.
|
|
846
|
+
'''
|
|
847
|
+
result = self._values.get("id")
|
|
848
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
849
|
+
|
|
850
|
+
@builtins.property
|
|
851
|
+
def maintenance_window_dow(self) -> typing.Optional[builtins.str]:
|
|
852
|
+
'''Maintenance window day of week. Lower case weekday name (monday, tuesday, ...).
|
|
853
|
+
|
|
854
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_dow ManagedDatabaseOpensearch#maintenance_window_dow}
|
|
855
|
+
'''
|
|
856
|
+
result = self._values.get("maintenance_window_dow")
|
|
857
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
858
|
+
|
|
859
|
+
@builtins.property
|
|
860
|
+
def maintenance_window_time(self) -> typing.Optional[builtins.str]:
|
|
861
|
+
'''Maintenance window UTC time in hh:mm:ss format.
|
|
862
|
+
|
|
863
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#maintenance_window_time ManagedDatabaseOpensearch#maintenance_window_time}
|
|
864
|
+
'''
|
|
865
|
+
result = self._values.get("maintenance_window_time")
|
|
866
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
867
|
+
|
|
868
|
+
@builtins.property
|
|
869
|
+
def powered(
|
|
870
|
+
self,
|
|
871
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
872
|
+
'''The administrative power state of the service.
|
|
873
|
+
|
|
874
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#powered ManagedDatabaseOpensearch#powered}
|
|
875
|
+
'''
|
|
876
|
+
result = self._values.get("powered")
|
|
877
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
878
|
+
|
|
879
|
+
@builtins.property
|
|
880
|
+
def properties(self) -> typing.Optional["ManagedDatabaseOpensearchProperties"]:
|
|
881
|
+
'''properties block.
|
|
882
|
+
|
|
883
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#properties ManagedDatabaseOpensearch#properties}
|
|
884
|
+
'''
|
|
885
|
+
result = self._values.get("properties")
|
|
886
|
+
return typing.cast(typing.Optional["ManagedDatabaseOpensearchProperties"], result)
|
|
887
|
+
|
|
888
|
+
@builtins.property
|
|
889
|
+
def title(self) -> typing.Optional[builtins.str]:
|
|
890
|
+
'''Title of a managed database instance.
|
|
891
|
+
|
|
892
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#title ManagedDatabaseOpensearch#title}
|
|
893
|
+
'''
|
|
894
|
+
result = self._values.get("title")
|
|
895
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
896
|
+
|
|
897
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
898
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
899
|
+
|
|
900
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
901
|
+
return not (rhs == self)
|
|
902
|
+
|
|
903
|
+
def __repr__(self) -> str:
|
|
904
|
+
return "ManagedDatabaseOpensearchConfig(%s)" % ", ".join(
|
|
905
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
@jsii.data_type(
|
|
910
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchNodeStates",
|
|
911
|
+
jsii_struct_bases=[],
|
|
912
|
+
name_mapping={},
|
|
913
|
+
)
|
|
914
|
+
class ManagedDatabaseOpensearchNodeStates:
|
|
915
|
+
def __init__(self) -> None:
|
|
916
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
917
|
+
|
|
918
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
919
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
920
|
+
|
|
921
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
922
|
+
return not (rhs == self)
|
|
923
|
+
|
|
924
|
+
def __repr__(self) -> str:
|
|
925
|
+
return "ManagedDatabaseOpensearchNodeStates(%s)" % ", ".join(
|
|
926
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
927
|
+
)
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
class ManagedDatabaseOpensearchNodeStatesList(
|
|
931
|
+
_cdktf_9a9027ec.ComplexList,
|
|
932
|
+
metaclass=jsii.JSIIMeta,
|
|
933
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchNodeStatesList",
|
|
934
|
+
):
|
|
935
|
+
def __init__(
|
|
936
|
+
self,
|
|
937
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
938
|
+
terraform_attribute: builtins.str,
|
|
939
|
+
wraps_set: builtins.bool,
|
|
940
|
+
) -> None:
|
|
941
|
+
'''
|
|
942
|
+
:param terraform_resource: The parent resource.
|
|
943
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
944
|
+
:param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
|
945
|
+
'''
|
|
946
|
+
if __debug__:
|
|
947
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6dabf973c57f1eeb683ec41bdb082376b0d3560469ba973ef9241b6d0f7caa7f)
|
|
948
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
949
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
950
|
+
check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
|
|
951
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
|
|
952
|
+
|
|
953
|
+
@jsii.member(jsii_name="get")
|
|
954
|
+
def get(
|
|
955
|
+
self,
|
|
956
|
+
index: jsii.Number,
|
|
957
|
+
) -> "ManagedDatabaseOpensearchNodeStatesOutputReference":
|
|
958
|
+
'''
|
|
959
|
+
:param index: the index of the item to return.
|
|
960
|
+
'''
|
|
961
|
+
if __debug__:
|
|
962
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b36091a7798a7e3cf1e20b74cd929271ac53667c3eb0dffd8c1e02230d698148)
|
|
963
|
+
check_type(argname="argument index", value=index, expected_type=type_hints["index"])
|
|
964
|
+
return typing.cast("ManagedDatabaseOpensearchNodeStatesOutputReference", jsii.invoke(self, "get", [index]))
|
|
965
|
+
|
|
966
|
+
@builtins.property
|
|
967
|
+
@jsii.member(jsii_name="terraformAttribute")
|
|
968
|
+
def _terraform_attribute(self) -> builtins.str:
|
|
969
|
+
'''The attribute on the parent resource this class is referencing.'''
|
|
970
|
+
return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
|
|
971
|
+
|
|
972
|
+
@_terraform_attribute.setter
|
|
973
|
+
def _terraform_attribute(self, value: builtins.str) -> None:
|
|
974
|
+
if __debug__:
|
|
975
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d821842074c66d72233fdba46b159048348bfd6348d4a84352047819b9397ed0)
|
|
976
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
977
|
+
jsii.set(self, "terraformAttribute", value)
|
|
978
|
+
|
|
979
|
+
@builtins.property
|
|
980
|
+
@jsii.member(jsii_name="terraformResource")
|
|
981
|
+
def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
|
|
982
|
+
'''The parent resource.'''
|
|
983
|
+
return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
|
|
984
|
+
|
|
985
|
+
@_terraform_resource.setter
|
|
986
|
+
def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
|
|
987
|
+
if __debug__:
|
|
988
|
+
type_hints = typing.get_type_hints(_typecheckingstub__721b09f1dbc677bfbbdf1acb348a60d81f02d69bddbfc5ea3dc0507161c8745e)
|
|
989
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
990
|
+
jsii.set(self, "terraformResource", value)
|
|
991
|
+
|
|
992
|
+
@builtins.property
|
|
993
|
+
@jsii.member(jsii_name="wrapsSet")
|
|
994
|
+
def _wraps_set(self) -> builtins.bool:
|
|
995
|
+
'''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
|
|
996
|
+
return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
|
|
997
|
+
|
|
998
|
+
@_wraps_set.setter
|
|
999
|
+
def _wraps_set(self, value: builtins.bool) -> None:
|
|
1000
|
+
if __debug__:
|
|
1001
|
+
type_hints = typing.get_type_hints(_typecheckingstub__732002e48eb319c6455b5f536a3f908279777ddbb6aca495c13f3c337f205389)
|
|
1002
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1003
|
+
jsii.set(self, "wrapsSet", value)
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
class ManagedDatabaseOpensearchNodeStatesOutputReference(
|
|
1007
|
+
_cdktf_9a9027ec.ComplexObject,
|
|
1008
|
+
metaclass=jsii.JSIIMeta,
|
|
1009
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchNodeStatesOutputReference",
|
|
1010
|
+
):
|
|
1011
|
+
def __init__(
|
|
1012
|
+
self,
|
|
1013
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1014
|
+
terraform_attribute: builtins.str,
|
|
1015
|
+
complex_object_index: jsii.Number,
|
|
1016
|
+
complex_object_is_from_set: builtins.bool,
|
|
1017
|
+
) -> None:
|
|
1018
|
+
'''
|
|
1019
|
+
:param terraform_resource: The parent resource.
|
|
1020
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
1021
|
+
:param complex_object_index: the index of this item in the list.
|
|
1022
|
+
: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).
|
|
1023
|
+
'''
|
|
1024
|
+
if __debug__:
|
|
1025
|
+
type_hints = typing.get_type_hints(_typecheckingstub__230770a22010afacb40ca84242cbcaf8dc73a365b4513ab7b9b99d283bd1184c)
|
|
1026
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
1027
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
1028
|
+
check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
|
|
1029
|
+
check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
|
|
1030
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
|
|
1031
|
+
|
|
1032
|
+
@builtins.property
|
|
1033
|
+
@jsii.member(jsii_name="name")
|
|
1034
|
+
def name(self) -> builtins.str:
|
|
1035
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
1036
|
+
|
|
1037
|
+
@builtins.property
|
|
1038
|
+
@jsii.member(jsii_name="role")
|
|
1039
|
+
def role(self) -> builtins.str:
|
|
1040
|
+
return typing.cast(builtins.str, jsii.get(self, "role"))
|
|
1041
|
+
|
|
1042
|
+
@builtins.property
|
|
1043
|
+
@jsii.member(jsii_name="state")
|
|
1044
|
+
def state(self) -> builtins.str:
|
|
1045
|
+
return typing.cast(builtins.str, jsii.get(self, "state"))
|
|
1046
|
+
|
|
1047
|
+
@builtins.property
|
|
1048
|
+
@jsii.member(jsii_name="internalValue")
|
|
1049
|
+
def internal_value(self) -> typing.Optional[ManagedDatabaseOpensearchNodeStates]:
|
|
1050
|
+
return typing.cast(typing.Optional[ManagedDatabaseOpensearchNodeStates], jsii.get(self, "internalValue"))
|
|
1051
|
+
|
|
1052
|
+
@internal_value.setter
|
|
1053
|
+
def internal_value(
|
|
1054
|
+
self,
|
|
1055
|
+
value: typing.Optional[ManagedDatabaseOpensearchNodeStates],
|
|
1056
|
+
) -> None:
|
|
1057
|
+
if __debug__:
|
|
1058
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e0f38cb62584f08fe2a0d73b2d546e0165c39f2136e81c6846a602f1affb622c)
|
|
1059
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1060
|
+
jsii.set(self, "internalValue", value)
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
@jsii.data_type(
|
|
1064
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchProperties",
|
|
1065
|
+
jsii_struct_bases=[],
|
|
1066
|
+
name_mapping={
|
|
1067
|
+
"automatic_utility_network_ip_filter": "automaticUtilityNetworkIpFilter",
|
|
1068
|
+
"ip_filter": "ipFilter",
|
|
1069
|
+
"migration": "migration",
|
|
1070
|
+
"public_access": "publicAccess",
|
|
1071
|
+
"version": "version",
|
|
1072
|
+
},
|
|
1073
|
+
)
|
|
1074
|
+
class ManagedDatabaseOpensearchProperties:
|
|
1075
|
+
def __init__(
|
|
1076
|
+
self,
|
|
1077
|
+
*,
|
|
1078
|
+
automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1079
|
+
ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1080
|
+
migration: typing.Optional[typing.Union["ManagedDatabaseOpensearchPropertiesMigration", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1081
|
+
public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1082
|
+
version: typing.Optional[builtins.str] = None,
|
|
1083
|
+
) -> None:
|
|
1084
|
+
'''
|
|
1085
|
+
:param automatic_utility_network_ip_filter: Automatic utility network IP Filter. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#automatic_utility_network_ip_filter ManagedDatabaseOpensearch#automatic_utility_network_ip_filter}
|
|
1086
|
+
:param ip_filter: IP filter. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ip_filter ManagedDatabaseOpensearch#ip_filter}
|
|
1087
|
+
:param migration: migration block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#migration ManagedDatabaseOpensearch#migration}
|
|
1088
|
+
:param public_access: Public access allows connections to your Managed Database services via the public internet. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#public_access ManagedDatabaseOpensearch#public_access}
|
|
1089
|
+
:param version: OpenSearch major version. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#version ManagedDatabaseOpensearch#version}
|
|
1090
|
+
'''
|
|
1091
|
+
if isinstance(migration, dict):
|
|
1092
|
+
migration = ManagedDatabaseOpensearchPropertiesMigration(**migration)
|
|
1093
|
+
if __debug__:
|
|
1094
|
+
type_hints = typing.get_type_hints(_typecheckingstub__de14c8022684ac9416f06b1fd8069683ff6f1b4d90f2879d52bb0843d4b3353d)
|
|
1095
|
+
check_type(argname="argument automatic_utility_network_ip_filter", value=automatic_utility_network_ip_filter, expected_type=type_hints["automatic_utility_network_ip_filter"])
|
|
1096
|
+
check_type(argname="argument ip_filter", value=ip_filter, expected_type=type_hints["ip_filter"])
|
|
1097
|
+
check_type(argname="argument migration", value=migration, expected_type=type_hints["migration"])
|
|
1098
|
+
check_type(argname="argument public_access", value=public_access, expected_type=type_hints["public_access"])
|
|
1099
|
+
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
1100
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1101
|
+
if automatic_utility_network_ip_filter is not None:
|
|
1102
|
+
self._values["automatic_utility_network_ip_filter"] = automatic_utility_network_ip_filter
|
|
1103
|
+
if ip_filter is not None:
|
|
1104
|
+
self._values["ip_filter"] = ip_filter
|
|
1105
|
+
if migration is not None:
|
|
1106
|
+
self._values["migration"] = migration
|
|
1107
|
+
if public_access is not None:
|
|
1108
|
+
self._values["public_access"] = public_access
|
|
1109
|
+
if version is not None:
|
|
1110
|
+
self._values["version"] = version
|
|
1111
|
+
|
|
1112
|
+
@builtins.property
|
|
1113
|
+
def automatic_utility_network_ip_filter(
|
|
1114
|
+
self,
|
|
1115
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1116
|
+
'''Automatic utility network IP Filter.
|
|
1117
|
+
|
|
1118
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#automatic_utility_network_ip_filter ManagedDatabaseOpensearch#automatic_utility_network_ip_filter}
|
|
1119
|
+
'''
|
|
1120
|
+
result = self._values.get("automatic_utility_network_ip_filter")
|
|
1121
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
1122
|
+
|
|
1123
|
+
@builtins.property
|
|
1124
|
+
def ip_filter(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1125
|
+
'''IP filter.
|
|
1126
|
+
|
|
1127
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ip_filter ManagedDatabaseOpensearch#ip_filter}
|
|
1128
|
+
'''
|
|
1129
|
+
result = self._values.get("ip_filter")
|
|
1130
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
1131
|
+
|
|
1132
|
+
@builtins.property
|
|
1133
|
+
def migration(
|
|
1134
|
+
self,
|
|
1135
|
+
) -> typing.Optional["ManagedDatabaseOpensearchPropertiesMigration"]:
|
|
1136
|
+
'''migration block.
|
|
1137
|
+
|
|
1138
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#migration ManagedDatabaseOpensearch#migration}
|
|
1139
|
+
'''
|
|
1140
|
+
result = self._values.get("migration")
|
|
1141
|
+
return typing.cast(typing.Optional["ManagedDatabaseOpensearchPropertiesMigration"], result)
|
|
1142
|
+
|
|
1143
|
+
@builtins.property
|
|
1144
|
+
def public_access(
|
|
1145
|
+
self,
|
|
1146
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1147
|
+
'''Public access allows connections to your Managed Database services via the public internet.
|
|
1148
|
+
|
|
1149
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#public_access ManagedDatabaseOpensearch#public_access}
|
|
1150
|
+
'''
|
|
1151
|
+
result = self._values.get("public_access")
|
|
1152
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
1153
|
+
|
|
1154
|
+
@builtins.property
|
|
1155
|
+
def version(self) -> typing.Optional[builtins.str]:
|
|
1156
|
+
'''OpenSearch major version.
|
|
1157
|
+
|
|
1158
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#version ManagedDatabaseOpensearch#version}
|
|
1159
|
+
'''
|
|
1160
|
+
result = self._values.get("version")
|
|
1161
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1162
|
+
|
|
1163
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1164
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1165
|
+
|
|
1166
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1167
|
+
return not (rhs == self)
|
|
1168
|
+
|
|
1169
|
+
def __repr__(self) -> str:
|
|
1170
|
+
return "ManagedDatabaseOpensearchProperties(%s)" % ", ".join(
|
|
1171
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1172
|
+
)
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
@jsii.data_type(
|
|
1176
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchPropertiesMigration",
|
|
1177
|
+
jsii_struct_bases=[],
|
|
1178
|
+
name_mapping={
|
|
1179
|
+
"dbname": "dbname",
|
|
1180
|
+
"host": "host",
|
|
1181
|
+
"ignore_dbs": "ignoreDbs",
|
|
1182
|
+
"password": "password",
|
|
1183
|
+
"port": "port",
|
|
1184
|
+
"ssl": "ssl",
|
|
1185
|
+
"username": "username",
|
|
1186
|
+
},
|
|
1187
|
+
)
|
|
1188
|
+
class ManagedDatabaseOpensearchPropertiesMigration:
|
|
1189
|
+
def __init__(
|
|
1190
|
+
self,
|
|
1191
|
+
*,
|
|
1192
|
+
dbname: typing.Optional[builtins.str] = None,
|
|
1193
|
+
host: typing.Optional[builtins.str] = None,
|
|
1194
|
+
ignore_dbs: typing.Optional[builtins.str] = None,
|
|
1195
|
+
password: typing.Optional[builtins.str] = None,
|
|
1196
|
+
port: typing.Optional[jsii.Number] = None,
|
|
1197
|
+
ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1198
|
+
username: typing.Optional[builtins.str] = None,
|
|
1199
|
+
) -> None:
|
|
1200
|
+
'''
|
|
1201
|
+
:param dbname: Database name for bootstrapping the initial connection. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#dbname ManagedDatabaseOpensearch#dbname}
|
|
1202
|
+
:param host: Hostname or IP address of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#host ManagedDatabaseOpensearch#host}
|
|
1203
|
+
:param ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ignore_dbs ManagedDatabaseOpensearch#ignore_dbs}
|
|
1204
|
+
:param password: Password for authentication with the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#password ManagedDatabaseOpensearch#password}
|
|
1205
|
+
:param port: Port number of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#port ManagedDatabaseOpensearch#port}
|
|
1206
|
+
:param ssl: The server where to migrate data from is secured with SSL. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ssl ManagedDatabaseOpensearch#ssl}
|
|
1207
|
+
:param username: User name for authentication with the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#username ManagedDatabaseOpensearch#username}
|
|
1208
|
+
'''
|
|
1209
|
+
if __debug__:
|
|
1210
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2e9014e3843f47cac65d6b0b97970b22bea95096ede108c0cb5515df6c4512b0)
|
|
1211
|
+
check_type(argname="argument dbname", value=dbname, expected_type=type_hints["dbname"])
|
|
1212
|
+
check_type(argname="argument host", value=host, expected_type=type_hints["host"])
|
|
1213
|
+
check_type(argname="argument ignore_dbs", value=ignore_dbs, expected_type=type_hints["ignore_dbs"])
|
|
1214
|
+
check_type(argname="argument password", value=password, expected_type=type_hints["password"])
|
|
1215
|
+
check_type(argname="argument port", value=port, expected_type=type_hints["port"])
|
|
1216
|
+
check_type(argname="argument ssl", value=ssl, expected_type=type_hints["ssl"])
|
|
1217
|
+
check_type(argname="argument username", value=username, expected_type=type_hints["username"])
|
|
1218
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1219
|
+
if dbname is not None:
|
|
1220
|
+
self._values["dbname"] = dbname
|
|
1221
|
+
if host is not None:
|
|
1222
|
+
self._values["host"] = host
|
|
1223
|
+
if ignore_dbs is not None:
|
|
1224
|
+
self._values["ignore_dbs"] = ignore_dbs
|
|
1225
|
+
if password is not None:
|
|
1226
|
+
self._values["password"] = password
|
|
1227
|
+
if port is not None:
|
|
1228
|
+
self._values["port"] = port
|
|
1229
|
+
if ssl is not None:
|
|
1230
|
+
self._values["ssl"] = ssl
|
|
1231
|
+
if username is not None:
|
|
1232
|
+
self._values["username"] = username
|
|
1233
|
+
|
|
1234
|
+
@builtins.property
|
|
1235
|
+
def dbname(self) -> typing.Optional[builtins.str]:
|
|
1236
|
+
'''Database name for bootstrapping the initial connection.
|
|
1237
|
+
|
|
1238
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#dbname ManagedDatabaseOpensearch#dbname}
|
|
1239
|
+
'''
|
|
1240
|
+
result = self._values.get("dbname")
|
|
1241
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1242
|
+
|
|
1243
|
+
@builtins.property
|
|
1244
|
+
def host(self) -> typing.Optional[builtins.str]:
|
|
1245
|
+
'''Hostname or IP address of the server where to migrate data from.
|
|
1246
|
+
|
|
1247
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#host ManagedDatabaseOpensearch#host}
|
|
1248
|
+
'''
|
|
1249
|
+
result = self._values.get("host")
|
|
1250
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1251
|
+
|
|
1252
|
+
@builtins.property
|
|
1253
|
+
def ignore_dbs(self) -> typing.Optional[builtins.str]:
|
|
1254
|
+
'''Comma-separated list of databases, which should be ignored during migration (supported by MySQL only at the moment).
|
|
1255
|
+
|
|
1256
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ignore_dbs ManagedDatabaseOpensearch#ignore_dbs}
|
|
1257
|
+
'''
|
|
1258
|
+
result = self._values.get("ignore_dbs")
|
|
1259
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1260
|
+
|
|
1261
|
+
@builtins.property
|
|
1262
|
+
def password(self) -> typing.Optional[builtins.str]:
|
|
1263
|
+
'''Password for authentication with the server where to migrate data from.
|
|
1264
|
+
|
|
1265
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#password ManagedDatabaseOpensearch#password}
|
|
1266
|
+
'''
|
|
1267
|
+
result = self._values.get("password")
|
|
1268
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1269
|
+
|
|
1270
|
+
@builtins.property
|
|
1271
|
+
def port(self) -> typing.Optional[jsii.Number]:
|
|
1272
|
+
'''Port number of the server where to migrate data from.
|
|
1273
|
+
|
|
1274
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#port ManagedDatabaseOpensearch#port}
|
|
1275
|
+
'''
|
|
1276
|
+
result = self._values.get("port")
|
|
1277
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
1278
|
+
|
|
1279
|
+
@builtins.property
|
|
1280
|
+
def ssl(
|
|
1281
|
+
self,
|
|
1282
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1283
|
+
'''The server where to migrate data from is secured with SSL.
|
|
1284
|
+
|
|
1285
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ssl ManagedDatabaseOpensearch#ssl}
|
|
1286
|
+
'''
|
|
1287
|
+
result = self._values.get("ssl")
|
|
1288
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
|
|
1289
|
+
|
|
1290
|
+
@builtins.property
|
|
1291
|
+
def username(self) -> typing.Optional[builtins.str]:
|
|
1292
|
+
'''User name for authentication with the server where to migrate data from.
|
|
1293
|
+
|
|
1294
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#username ManagedDatabaseOpensearch#username}
|
|
1295
|
+
'''
|
|
1296
|
+
result = self._values.get("username")
|
|
1297
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1298
|
+
|
|
1299
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1300
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1301
|
+
|
|
1302
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1303
|
+
return not (rhs == self)
|
|
1304
|
+
|
|
1305
|
+
def __repr__(self) -> str:
|
|
1306
|
+
return "ManagedDatabaseOpensearchPropertiesMigration(%s)" % ", ".join(
|
|
1307
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1308
|
+
)
|
|
1309
|
+
|
|
1310
|
+
|
|
1311
|
+
class ManagedDatabaseOpensearchPropertiesMigrationOutputReference(
|
|
1312
|
+
_cdktf_9a9027ec.ComplexObject,
|
|
1313
|
+
metaclass=jsii.JSIIMeta,
|
|
1314
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchPropertiesMigrationOutputReference",
|
|
1315
|
+
):
|
|
1316
|
+
def __init__(
|
|
1317
|
+
self,
|
|
1318
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1319
|
+
terraform_attribute: builtins.str,
|
|
1320
|
+
) -> None:
|
|
1321
|
+
'''
|
|
1322
|
+
:param terraform_resource: The parent resource.
|
|
1323
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
1324
|
+
'''
|
|
1325
|
+
if __debug__:
|
|
1326
|
+
type_hints = typing.get_type_hints(_typecheckingstub__54fb7afe96f9b59071363067b464df27fc0bd7a66756a35f7740bc47567e86a9)
|
|
1327
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
1328
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
1329
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
|
|
1330
|
+
|
|
1331
|
+
@jsii.member(jsii_name="resetDbname")
|
|
1332
|
+
def reset_dbname(self) -> None:
|
|
1333
|
+
return typing.cast(None, jsii.invoke(self, "resetDbname", []))
|
|
1334
|
+
|
|
1335
|
+
@jsii.member(jsii_name="resetHost")
|
|
1336
|
+
def reset_host(self) -> None:
|
|
1337
|
+
return typing.cast(None, jsii.invoke(self, "resetHost", []))
|
|
1338
|
+
|
|
1339
|
+
@jsii.member(jsii_name="resetIgnoreDbs")
|
|
1340
|
+
def reset_ignore_dbs(self) -> None:
|
|
1341
|
+
return typing.cast(None, jsii.invoke(self, "resetIgnoreDbs", []))
|
|
1342
|
+
|
|
1343
|
+
@jsii.member(jsii_name="resetPassword")
|
|
1344
|
+
def reset_password(self) -> None:
|
|
1345
|
+
return typing.cast(None, jsii.invoke(self, "resetPassword", []))
|
|
1346
|
+
|
|
1347
|
+
@jsii.member(jsii_name="resetPort")
|
|
1348
|
+
def reset_port(self) -> None:
|
|
1349
|
+
return typing.cast(None, jsii.invoke(self, "resetPort", []))
|
|
1350
|
+
|
|
1351
|
+
@jsii.member(jsii_name="resetSsl")
|
|
1352
|
+
def reset_ssl(self) -> None:
|
|
1353
|
+
return typing.cast(None, jsii.invoke(self, "resetSsl", []))
|
|
1354
|
+
|
|
1355
|
+
@jsii.member(jsii_name="resetUsername")
|
|
1356
|
+
def reset_username(self) -> None:
|
|
1357
|
+
return typing.cast(None, jsii.invoke(self, "resetUsername", []))
|
|
1358
|
+
|
|
1359
|
+
@builtins.property
|
|
1360
|
+
@jsii.member(jsii_name="dbnameInput")
|
|
1361
|
+
def dbname_input(self) -> typing.Optional[builtins.str]:
|
|
1362
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "dbnameInput"))
|
|
1363
|
+
|
|
1364
|
+
@builtins.property
|
|
1365
|
+
@jsii.member(jsii_name="hostInput")
|
|
1366
|
+
def host_input(self) -> typing.Optional[builtins.str]:
|
|
1367
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "hostInput"))
|
|
1368
|
+
|
|
1369
|
+
@builtins.property
|
|
1370
|
+
@jsii.member(jsii_name="ignoreDbsInput")
|
|
1371
|
+
def ignore_dbs_input(self) -> typing.Optional[builtins.str]:
|
|
1372
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ignoreDbsInput"))
|
|
1373
|
+
|
|
1374
|
+
@builtins.property
|
|
1375
|
+
@jsii.member(jsii_name="passwordInput")
|
|
1376
|
+
def password_input(self) -> typing.Optional[builtins.str]:
|
|
1377
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "passwordInput"))
|
|
1378
|
+
|
|
1379
|
+
@builtins.property
|
|
1380
|
+
@jsii.member(jsii_name="portInput")
|
|
1381
|
+
def port_input(self) -> typing.Optional[jsii.Number]:
|
|
1382
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "portInput"))
|
|
1383
|
+
|
|
1384
|
+
@builtins.property
|
|
1385
|
+
@jsii.member(jsii_name="sslInput")
|
|
1386
|
+
def ssl_input(
|
|
1387
|
+
self,
|
|
1388
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1389
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "sslInput"))
|
|
1390
|
+
|
|
1391
|
+
@builtins.property
|
|
1392
|
+
@jsii.member(jsii_name="usernameInput")
|
|
1393
|
+
def username_input(self) -> typing.Optional[builtins.str]:
|
|
1394
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "usernameInput"))
|
|
1395
|
+
|
|
1396
|
+
@builtins.property
|
|
1397
|
+
@jsii.member(jsii_name="dbname")
|
|
1398
|
+
def dbname(self) -> builtins.str:
|
|
1399
|
+
return typing.cast(builtins.str, jsii.get(self, "dbname"))
|
|
1400
|
+
|
|
1401
|
+
@dbname.setter
|
|
1402
|
+
def dbname(self, value: builtins.str) -> None:
|
|
1403
|
+
if __debug__:
|
|
1404
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0c83e8e0eb5f57a5689bee015af4f9984a7c55e27cba58a9497bb452fbc4f23a)
|
|
1405
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1406
|
+
jsii.set(self, "dbname", value)
|
|
1407
|
+
|
|
1408
|
+
@builtins.property
|
|
1409
|
+
@jsii.member(jsii_name="host")
|
|
1410
|
+
def host(self) -> builtins.str:
|
|
1411
|
+
return typing.cast(builtins.str, jsii.get(self, "host"))
|
|
1412
|
+
|
|
1413
|
+
@host.setter
|
|
1414
|
+
def host(self, value: builtins.str) -> None:
|
|
1415
|
+
if __debug__:
|
|
1416
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7cd2ee705c8cfefcdf2d0952faf490c3a828c31c9bb609bc0c72fd1f55228f78)
|
|
1417
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1418
|
+
jsii.set(self, "host", value)
|
|
1419
|
+
|
|
1420
|
+
@builtins.property
|
|
1421
|
+
@jsii.member(jsii_name="ignoreDbs")
|
|
1422
|
+
def ignore_dbs(self) -> builtins.str:
|
|
1423
|
+
return typing.cast(builtins.str, jsii.get(self, "ignoreDbs"))
|
|
1424
|
+
|
|
1425
|
+
@ignore_dbs.setter
|
|
1426
|
+
def ignore_dbs(self, value: builtins.str) -> None:
|
|
1427
|
+
if __debug__:
|
|
1428
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f439c6a967cd1c54f98462992a0cd75fc4b7c737b6e4a294a1090f4532ae5af0)
|
|
1429
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1430
|
+
jsii.set(self, "ignoreDbs", value)
|
|
1431
|
+
|
|
1432
|
+
@builtins.property
|
|
1433
|
+
@jsii.member(jsii_name="password")
|
|
1434
|
+
def password(self) -> builtins.str:
|
|
1435
|
+
return typing.cast(builtins.str, jsii.get(self, "password"))
|
|
1436
|
+
|
|
1437
|
+
@password.setter
|
|
1438
|
+
def password(self, value: builtins.str) -> None:
|
|
1439
|
+
if __debug__:
|
|
1440
|
+
type_hints = typing.get_type_hints(_typecheckingstub__805ea2a85737331aa244ddcfb5dd1fcedff1b7615fff0d3b231f43a5a5ecd996)
|
|
1441
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1442
|
+
jsii.set(self, "password", value)
|
|
1443
|
+
|
|
1444
|
+
@builtins.property
|
|
1445
|
+
@jsii.member(jsii_name="port")
|
|
1446
|
+
def port(self) -> jsii.Number:
|
|
1447
|
+
return typing.cast(jsii.Number, jsii.get(self, "port"))
|
|
1448
|
+
|
|
1449
|
+
@port.setter
|
|
1450
|
+
def port(self, value: jsii.Number) -> None:
|
|
1451
|
+
if __debug__:
|
|
1452
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fba0ca94293ec1bef1c79982ba6fd17796b71c729d6dbb63772eb79bffc72753)
|
|
1453
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1454
|
+
jsii.set(self, "port", value)
|
|
1455
|
+
|
|
1456
|
+
@builtins.property
|
|
1457
|
+
@jsii.member(jsii_name="ssl")
|
|
1458
|
+
def ssl(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
1459
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "ssl"))
|
|
1460
|
+
|
|
1461
|
+
@ssl.setter
|
|
1462
|
+
def ssl(
|
|
1463
|
+
self,
|
|
1464
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1465
|
+
) -> None:
|
|
1466
|
+
if __debug__:
|
|
1467
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4339c45894bbaf10a3af5e5a7fbd0b412594b80ebbba029c0148fce30b7a5836)
|
|
1468
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1469
|
+
jsii.set(self, "ssl", value)
|
|
1470
|
+
|
|
1471
|
+
@builtins.property
|
|
1472
|
+
@jsii.member(jsii_name="username")
|
|
1473
|
+
def username(self) -> builtins.str:
|
|
1474
|
+
return typing.cast(builtins.str, jsii.get(self, "username"))
|
|
1475
|
+
|
|
1476
|
+
@username.setter
|
|
1477
|
+
def username(self, value: builtins.str) -> None:
|
|
1478
|
+
if __debug__:
|
|
1479
|
+
type_hints = typing.get_type_hints(_typecheckingstub__552b0a461371f2793ce57f9840ce4cfa6a6cc4be9836aca97d26fc39cf884fad)
|
|
1480
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1481
|
+
jsii.set(self, "username", value)
|
|
1482
|
+
|
|
1483
|
+
@builtins.property
|
|
1484
|
+
@jsii.member(jsii_name="internalValue")
|
|
1485
|
+
def internal_value(
|
|
1486
|
+
self,
|
|
1487
|
+
) -> typing.Optional[ManagedDatabaseOpensearchPropertiesMigration]:
|
|
1488
|
+
return typing.cast(typing.Optional[ManagedDatabaseOpensearchPropertiesMigration], jsii.get(self, "internalValue"))
|
|
1489
|
+
|
|
1490
|
+
@internal_value.setter
|
|
1491
|
+
def internal_value(
|
|
1492
|
+
self,
|
|
1493
|
+
value: typing.Optional[ManagedDatabaseOpensearchPropertiesMigration],
|
|
1494
|
+
) -> None:
|
|
1495
|
+
if __debug__:
|
|
1496
|
+
type_hints = typing.get_type_hints(_typecheckingstub__51d7ef8862acb512ecac2b1da1a97f856fd81a74c8ab5ec0ab5af178fa7756e9)
|
|
1497
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1498
|
+
jsii.set(self, "internalValue", value)
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
class ManagedDatabaseOpensearchPropertiesOutputReference(
|
|
1502
|
+
_cdktf_9a9027ec.ComplexObject,
|
|
1503
|
+
metaclass=jsii.JSIIMeta,
|
|
1504
|
+
jsii_type="@cdktf/provider-upcloud.managedDatabaseOpensearch.ManagedDatabaseOpensearchPropertiesOutputReference",
|
|
1505
|
+
):
|
|
1506
|
+
def __init__(
|
|
1507
|
+
self,
|
|
1508
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1509
|
+
terraform_attribute: builtins.str,
|
|
1510
|
+
) -> None:
|
|
1511
|
+
'''
|
|
1512
|
+
:param terraform_resource: The parent resource.
|
|
1513
|
+
:param terraform_attribute: The attribute on the parent resource this class is referencing.
|
|
1514
|
+
'''
|
|
1515
|
+
if __debug__:
|
|
1516
|
+
type_hints = typing.get_type_hints(_typecheckingstub__751155185e1458cf144b0b3f995bffe965d316250c0fff7682404038d0582237)
|
|
1517
|
+
check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
|
|
1518
|
+
check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
|
|
1519
|
+
jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
|
|
1520
|
+
|
|
1521
|
+
@jsii.member(jsii_name="putMigration")
|
|
1522
|
+
def put_migration(
|
|
1523
|
+
self,
|
|
1524
|
+
*,
|
|
1525
|
+
dbname: typing.Optional[builtins.str] = None,
|
|
1526
|
+
host: typing.Optional[builtins.str] = None,
|
|
1527
|
+
ignore_dbs: typing.Optional[builtins.str] = None,
|
|
1528
|
+
password: typing.Optional[builtins.str] = None,
|
|
1529
|
+
port: typing.Optional[jsii.Number] = None,
|
|
1530
|
+
ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1531
|
+
username: typing.Optional[builtins.str] = None,
|
|
1532
|
+
) -> None:
|
|
1533
|
+
'''
|
|
1534
|
+
:param dbname: Database name for bootstrapping the initial connection. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#dbname ManagedDatabaseOpensearch#dbname}
|
|
1535
|
+
:param host: Hostname or IP address of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#host ManagedDatabaseOpensearch#host}
|
|
1536
|
+
:param ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ignore_dbs ManagedDatabaseOpensearch#ignore_dbs}
|
|
1537
|
+
:param password: Password for authentication with the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#password ManagedDatabaseOpensearch#password}
|
|
1538
|
+
:param port: Port number of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#port ManagedDatabaseOpensearch#port}
|
|
1539
|
+
:param ssl: The server where to migrate data from is secured with SSL. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#ssl ManagedDatabaseOpensearch#ssl}
|
|
1540
|
+
:param username: User name for authentication with the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/2.11.0/docs/resources/managed_database_opensearch#username ManagedDatabaseOpensearch#username}
|
|
1541
|
+
'''
|
|
1542
|
+
value = ManagedDatabaseOpensearchPropertiesMigration(
|
|
1543
|
+
dbname=dbname,
|
|
1544
|
+
host=host,
|
|
1545
|
+
ignore_dbs=ignore_dbs,
|
|
1546
|
+
password=password,
|
|
1547
|
+
port=port,
|
|
1548
|
+
ssl=ssl,
|
|
1549
|
+
username=username,
|
|
1550
|
+
)
|
|
1551
|
+
|
|
1552
|
+
return typing.cast(None, jsii.invoke(self, "putMigration", [value]))
|
|
1553
|
+
|
|
1554
|
+
@jsii.member(jsii_name="resetAutomaticUtilityNetworkIpFilter")
|
|
1555
|
+
def reset_automatic_utility_network_ip_filter(self) -> None:
|
|
1556
|
+
return typing.cast(None, jsii.invoke(self, "resetAutomaticUtilityNetworkIpFilter", []))
|
|
1557
|
+
|
|
1558
|
+
@jsii.member(jsii_name="resetIpFilter")
|
|
1559
|
+
def reset_ip_filter(self) -> None:
|
|
1560
|
+
return typing.cast(None, jsii.invoke(self, "resetIpFilter", []))
|
|
1561
|
+
|
|
1562
|
+
@jsii.member(jsii_name="resetMigration")
|
|
1563
|
+
def reset_migration(self) -> None:
|
|
1564
|
+
return typing.cast(None, jsii.invoke(self, "resetMigration", []))
|
|
1565
|
+
|
|
1566
|
+
@jsii.member(jsii_name="resetPublicAccess")
|
|
1567
|
+
def reset_public_access(self) -> None:
|
|
1568
|
+
return typing.cast(None, jsii.invoke(self, "resetPublicAccess", []))
|
|
1569
|
+
|
|
1570
|
+
@jsii.member(jsii_name="resetVersion")
|
|
1571
|
+
def reset_version(self) -> None:
|
|
1572
|
+
return typing.cast(None, jsii.invoke(self, "resetVersion", []))
|
|
1573
|
+
|
|
1574
|
+
@builtins.property
|
|
1575
|
+
@jsii.member(jsii_name="migration")
|
|
1576
|
+
def migration(self) -> ManagedDatabaseOpensearchPropertiesMigrationOutputReference:
|
|
1577
|
+
return typing.cast(ManagedDatabaseOpensearchPropertiesMigrationOutputReference, jsii.get(self, "migration"))
|
|
1578
|
+
|
|
1579
|
+
@builtins.property
|
|
1580
|
+
@jsii.member(jsii_name="automaticUtilityNetworkIpFilterInput")
|
|
1581
|
+
def automatic_utility_network_ip_filter_input(
|
|
1582
|
+
self,
|
|
1583
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1584
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "automaticUtilityNetworkIpFilterInput"))
|
|
1585
|
+
|
|
1586
|
+
@builtins.property
|
|
1587
|
+
@jsii.member(jsii_name="ipFilterInput")
|
|
1588
|
+
def ip_filter_input(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1589
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "ipFilterInput"))
|
|
1590
|
+
|
|
1591
|
+
@builtins.property
|
|
1592
|
+
@jsii.member(jsii_name="migrationInput")
|
|
1593
|
+
def migration_input(
|
|
1594
|
+
self,
|
|
1595
|
+
) -> typing.Optional[ManagedDatabaseOpensearchPropertiesMigration]:
|
|
1596
|
+
return typing.cast(typing.Optional[ManagedDatabaseOpensearchPropertiesMigration], jsii.get(self, "migrationInput"))
|
|
1597
|
+
|
|
1598
|
+
@builtins.property
|
|
1599
|
+
@jsii.member(jsii_name="publicAccessInput")
|
|
1600
|
+
def public_access_input(
|
|
1601
|
+
self,
|
|
1602
|
+
) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
|
|
1603
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "publicAccessInput"))
|
|
1604
|
+
|
|
1605
|
+
@builtins.property
|
|
1606
|
+
@jsii.member(jsii_name="versionInput")
|
|
1607
|
+
def version_input(self) -> typing.Optional[builtins.str]:
|
|
1608
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "versionInput"))
|
|
1609
|
+
|
|
1610
|
+
@builtins.property
|
|
1611
|
+
@jsii.member(jsii_name="automaticUtilityNetworkIpFilter")
|
|
1612
|
+
def automatic_utility_network_ip_filter(
|
|
1613
|
+
self,
|
|
1614
|
+
) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
1615
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "automaticUtilityNetworkIpFilter"))
|
|
1616
|
+
|
|
1617
|
+
@automatic_utility_network_ip_filter.setter
|
|
1618
|
+
def automatic_utility_network_ip_filter(
|
|
1619
|
+
self,
|
|
1620
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1621
|
+
) -> None:
|
|
1622
|
+
if __debug__:
|
|
1623
|
+
type_hints = typing.get_type_hints(_typecheckingstub__be63faa87856b340f7df4fdaa463d51315ab3cec9d31b97f5c4d5f518b414508)
|
|
1624
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1625
|
+
jsii.set(self, "automaticUtilityNetworkIpFilter", value)
|
|
1626
|
+
|
|
1627
|
+
@builtins.property
|
|
1628
|
+
@jsii.member(jsii_name="ipFilter")
|
|
1629
|
+
def ip_filter(self) -> typing.List[builtins.str]:
|
|
1630
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "ipFilter"))
|
|
1631
|
+
|
|
1632
|
+
@ip_filter.setter
|
|
1633
|
+
def ip_filter(self, value: typing.List[builtins.str]) -> None:
|
|
1634
|
+
if __debug__:
|
|
1635
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5817885ce9a4dfdaf892000c0e8757e89b0d1233e8785edbee32917946b1f379)
|
|
1636
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1637
|
+
jsii.set(self, "ipFilter", value)
|
|
1638
|
+
|
|
1639
|
+
@builtins.property
|
|
1640
|
+
@jsii.member(jsii_name="publicAccess")
|
|
1641
|
+
def public_access(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
|
|
1642
|
+
return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "publicAccess"))
|
|
1643
|
+
|
|
1644
|
+
@public_access.setter
|
|
1645
|
+
def public_access(
|
|
1646
|
+
self,
|
|
1647
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1648
|
+
) -> None:
|
|
1649
|
+
if __debug__:
|
|
1650
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1877b1cae754d3c61d03eab40de84ea8994bc6a8f432702bdad2e544cca0bb93)
|
|
1651
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1652
|
+
jsii.set(self, "publicAccess", value)
|
|
1653
|
+
|
|
1654
|
+
@builtins.property
|
|
1655
|
+
@jsii.member(jsii_name="version")
|
|
1656
|
+
def version(self) -> builtins.str:
|
|
1657
|
+
return typing.cast(builtins.str, jsii.get(self, "version"))
|
|
1658
|
+
|
|
1659
|
+
@version.setter
|
|
1660
|
+
def version(self, value: builtins.str) -> None:
|
|
1661
|
+
if __debug__:
|
|
1662
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3fdf3ac54e30cad1108c45853dba19226fdd8c66b79009b24e04a2bfd594cff5)
|
|
1663
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1664
|
+
jsii.set(self, "version", value)
|
|
1665
|
+
|
|
1666
|
+
@builtins.property
|
|
1667
|
+
@jsii.member(jsii_name="internalValue")
|
|
1668
|
+
def internal_value(self) -> typing.Optional[ManagedDatabaseOpensearchProperties]:
|
|
1669
|
+
return typing.cast(typing.Optional[ManagedDatabaseOpensearchProperties], jsii.get(self, "internalValue"))
|
|
1670
|
+
|
|
1671
|
+
@internal_value.setter
|
|
1672
|
+
def internal_value(
|
|
1673
|
+
self,
|
|
1674
|
+
value: typing.Optional[ManagedDatabaseOpensearchProperties],
|
|
1675
|
+
) -> None:
|
|
1676
|
+
if __debug__:
|
|
1677
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8adbbea4f99ad4d0b9aca6ba9727235da1a05ed87b8c7206bf576514664c1eba)
|
|
1678
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1679
|
+
jsii.set(self, "internalValue", value)
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
__all__ = [
|
|
1683
|
+
"ManagedDatabaseOpensearch",
|
|
1684
|
+
"ManagedDatabaseOpensearchComponents",
|
|
1685
|
+
"ManagedDatabaseOpensearchComponentsList",
|
|
1686
|
+
"ManagedDatabaseOpensearchComponentsOutputReference",
|
|
1687
|
+
"ManagedDatabaseOpensearchConfig",
|
|
1688
|
+
"ManagedDatabaseOpensearchNodeStates",
|
|
1689
|
+
"ManagedDatabaseOpensearchNodeStatesList",
|
|
1690
|
+
"ManagedDatabaseOpensearchNodeStatesOutputReference",
|
|
1691
|
+
"ManagedDatabaseOpensearchProperties",
|
|
1692
|
+
"ManagedDatabaseOpensearchPropertiesMigration",
|
|
1693
|
+
"ManagedDatabaseOpensearchPropertiesMigrationOutputReference",
|
|
1694
|
+
"ManagedDatabaseOpensearchPropertiesOutputReference",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
publication.publish()
|
|
1698
|
+
|
|
1699
|
+
def _typecheckingstub__64a04d8da6e4f1b319a40ace3990acecec34666de7dc4b9125beebfecfa929af(
|
|
1700
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
1701
|
+
id_: builtins.str,
|
|
1702
|
+
*,
|
|
1703
|
+
name: builtins.str,
|
|
1704
|
+
plan: builtins.str,
|
|
1705
|
+
zone: builtins.str,
|
|
1706
|
+
access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1707
|
+
extended_access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1708
|
+
id: typing.Optional[builtins.str] = None,
|
|
1709
|
+
maintenance_window_dow: typing.Optional[builtins.str] = None,
|
|
1710
|
+
maintenance_window_time: typing.Optional[builtins.str] = None,
|
|
1711
|
+
powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1712
|
+
properties: typing.Optional[typing.Union[ManagedDatabaseOpensearchProperties, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1713
|
+
title: typing.Optional[builtins.str] = None,
|
|
1714
|
+
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,
|
|
1715
|
+
count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
|
|
1716
|
+
depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
|
|
1717
|
+
for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
|
|
1718
|
+
lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1719
|
+
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
1720
|
+
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,
|
|
1721
|
+
) -> None:
|
|
1722
|
+
"""Type checking stubs"""
|
|
1723
|
+
pass
|
|
1724
|
+
|
|
1725
|
+
def _typecheckingstub__cc380db9b723b44538f0654f873b7e6938e7f77a5500c11f59172853bb812451(
|
|
1726
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1727
|
+
) -> None:
|
|
1728
|
+
"""Type checking stubs"""
|
|
1729
|
+
pass
|
|
1730
|
+
|
|
1731
|
+
def _typecheckingstub__a861bcb5d8f073071a3fc6c246b46bb262c59eb6ed230613542b683d9ed7c266(
|
|
1732
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1733
|
+
) -> None:
|
|
1734
|
+
"""Type checking stubs"""
|
|
1735
|
+
pass
|
|
1736
|
+
|
|
1737
|
+
def _typecheckingstub__03c43ec7ae33e6b60985ef2de80521f4f4ad3629a44711cd102de73bdede18b7(
|
|
1738
|
+
value: builtins.str,
|
|
1739
|
+
) -> None:
|
|
1740
|
+
"""Type checking stubs"""
|
|
1741
|
+
pass
|
|
1742
|
+
|
|
1743
|
+
def _typecheckingstub__778bfd3bad1122cec5c9a8b1233c9c30f21e60cdc07d7a6dcd73160f3e8f3e9c(
|
|
1744
|
+
value: builtins.str,
|
|
1745
|
+
) -> None:
|
|
1746
|
+
"""Type checking stubs"""
|
|
1747
|
+
pass
|
|
1748
|
+
|
|
1749
|
+
def _typecheckingstub__530a55728ead99da54d717ec010026a48f653d62a58301fef9f9b7df2338770b(
|
|
1750
|
+
value: builtins.str,
|
|
1751
|
+
) -> None:
|
|
1752
|
+
"""Type checking stubs"""
|
|
1753
|
+
pass
|
|
1754
|
+
|
|
1755
|
+
def _typecheckingstub__483f921db7c5dfd553cc7ae4edbed08bbf6e087ac61e5e73e3d36d5d28906fd7(
|
|
1756
|
+
value: builtins.str,
|
|
1757
|
+
) -> None:
|
|
1758
|
+
"""Type checking stubs"""
|
|
1759
|
+
pass
|
|
1760
|
+
|
|
1761
|
+
def _typecheckingstub__aaae0df4ce6f9b86602301afc165377558c6979c9d648f5b3b8a28f1427c34e3(
|
|
1762
|
+
value: builtins.str,
|
|
1763
|
+
) -> None:
|
|
1764
|
+
"""Type checking stubs"""
|
|
1765
|
+
pass
|
|
1766
|
+
|
|
1767
|
+
def _typecheckingstub__45778f8cc87e5d7b6f2d7c690dc5f0615c03f6d3acfd1258fa752f26e3f8740b(
|
|
1768
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1769
|
+
) -> None:
|
|
1770
|
+
"""Type checking stubs"""
|
|
1771
|
+
pass
|
|
1772
|
+
|
|
1773
|
+
def _typecheckingstub__579f921500d29592dd476a83479c64100aa52fd4cc27afa5eae53e2740c76556(
|
|
1774
|
+
value: builtins.str,
|
|
1775
|
+
) -> None:
|
|
1776
|
+
"""Type checking stubs"""
|
|
1777
|
+
pass
|
|
1778
|
+
|
|
1779
|
+
def _typecheckingstub__71dbfb4b6bef08098f6a9392298bab540d9d5a48287b7ff1514dbdef9db71b1c(
|
|
1780
|
+
value: builtins.str,
|
|
1781
|
+
) -> None:
|
|
1782
|
+
"""Type checking stubs"""
|
|
1783
|
+
pass
|
|
1784
|
+
|
|
1785
|
+
def _typecheckingstub__05e0104604c6d119c33be2ffc1295050857aba0fbf9013e5d6022408797e700e(
|
|
1786
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1787
|
+
terraform_attribute: builtins.str,
|
|
1788
|
+
wraps_set: builtins.bool,
|
|
1789
|
+
) -> None:
|
|
1790
|
+
"""Type checking stubs"""
|
|
1791
|
+
pass
|
|
1792
|
+
|
|
1793
|
+
def _typecheckingstub__3df9409d3f44676e26c2ca792935f6fef5261571686ce099b21079ee9cbf626c(
|
|
1794
|
+
index: jsii.Number,
|
|
1795
|
+
) -> None:
|
|
1796
|
+
"""Type checking stubs"""
|
|
1797
|
+
pass
|
|
1798
|
+
|
|
1799
|
+
def _typecheckingstub__1797fa76f17542a4461981c77c1febde7b7dc7ffbd53ddc05cf07be29a5ae4c8(
|
|
1800
|
+
value: builtins.str,
|
|
1801
|
+
) -> None:
|
|
1802
|
+
"""Type checking stubs"""
|
|
1803
|
+
pass
|
|
1804
|
+
|
|
1805
|
+
def _typecheckingstub__6c439c2c67d2cf65e96be6f9aae6aed6b527fa71224a5e82d9bfb478b705b43d(
|
|
1806
|
+
value: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1807
|
+
) -> None:
|
|
1808
|
+
"""Type checking stubs"""
|
|
1809
|
+
pass
|
|
1810
|
+
|
|
1811
|
+
def _typecheckingstub__90f578c3b7e470de9a79795d445280c0213bf84b88b837792ae7c769b5a24be2(
|
|
1812
|
+
value: builtins.bool,
|
|
1813
|
+
) -> None:
|
|
1814
|
+
"""Type checking stubs"""
|
|
1815
|
+
pass
|
|
1816
|
+
|
|
1817
|
+
def _typecheckingstub__a85bd4824a9de6b259bc7ccba33f22669db6f14724268fea2997edfec3db5c36(
|
|
1818
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1819
|
+
terraform_attribute: builtins.str,
|
|
1820
|
+
complex_object_index: jsii.Number,
|
|
1821
|
+
complex_object_is_from_set: builtins.bool,
|
|
1822
|
+
) -> None:
|
|
1823
|
+
"""Type checking stubs"""
|
|
1824
|
+
pass
|
|
1825
|
+
|
|
1826
|
+
def _typecheckingstub__3927b44417f2561e30157a8e7bbae613a717e7583e7952dae4442c4727ed67b2(
|
|
1827
|
+
value: typing.Optional[ManagedDatabaseOpensearchComponents],
|
|
1828
|
+
) -> None:
|
|
1829
|
+
"""Type checking stubs"""
|
|
1830
|
+
pass
|
|
1831
|
+
|
|
1832
|
+
def _typecheckingstub__d5005f5a996eb4e5ca1f0d2c27e74393a05028526f22e88c6ac2dc4e0b094b28(
|
|
1833
|
+
*,
|
|
1834
|
+
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,
|
|
1835
|
+
count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
|
|
1836
|
+
depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
|
|
1837
|
+
for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
|
|
1838
|
+
lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1839
|
+
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
|
1840
|
+
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,
|
|
1841
|
+
name: builtins.str,
|
|
1842
|
+
plan: builtins.str,
|
|
1843
|
+
zone: builtins.str,
|
|
1844
|
+
access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1845
|
+
extended_access_control: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1846
|
+
id: typing.Optional[builtins.str] = None,
|
|
1847
|
+
maintenance_window_dow: typing.Optional[builtins.str] = None,
|
|
1848
|
+
maintenance_window_time: typing.Optional[builtins.str] = None,
|
|
1849
|
+
powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1850
|
+
properties: typing.Optional[typing.Union[ManagedDatabaseOpensearchProperties, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1851
|
+
title: typing.Optional[builtins.str] = None,
|
|
1852
|
+
) -> None:
|
|
1853
|
+
"""Type checking stubs"""
|
|
1854
|
+
pass
|
|
1855
|
+
|
|
1856
|
+
def _typecheckingstub__6dabf973c57f1eeb683ec41bdb082376b0d3560469ba973ef9241b6d0f7caa7f(
|
|
1857
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1858
|
+
terraform_attribute: builtins.str,
|
|
1859
|
+
wraps_set: builtins.bool,
|
|
1860
|
+
) -> None:
|
|
1861
|
+
"""Type checking stubs"""
|
|
1862
|
+
pass
|
|
1863
|
+
|
|
1864
|
+
def _typecheckingstub__b36091a7798a7e3cf1e20b74cd929271ac53667c3eb0dffd8c1e02230d698148(
|
|
1865
|
+
index: jsii.Number,
|
|
1866
|
+
) -> None:
|
|
1867
|
+
"""Type checking stubs"""
|
|
1868
|
+
pass
|
|
1869
|
+
|
|
1870
|
+
def _typecheckingstub__d821842074c66d72233fdba46b159048348bfd6348d4a84352047819b9397ed0(
|
|
1871
|
+
value: builtins.str,
|
|
1872
|
+
) -> None:
|
|
1873
|
+
"""Type checking stubs"""
|
|
1874
|
+
pass
|
|
1875
|
+
|
|
1876
|
+
def _typecheckingstub__721b09f1dbc677bfbbdf1acb348a60d81f02d69bddbfc5ea3dc0507161c8745e(
|
|
1877
|
+
value: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1878
|
+
) -> None:
|
|
1879
|
+
"""Type checking stubs"""
|
|
1880
|
+
pass
|
|
1881
|
+
|
|
1882
|
+
def _typecheckingstub__732002e48eb319c6455b5f536a3f908279777ddbb6aca495c13f3c337f205389(
|
|
1883
|
+
value: builtins.bool,
|
|
1884
|
+
) -> None:
|
|
1885
|
+
"""Type checking stubs"""
|
|
1886
|
+
pass
|
|
1887
|
+
|
|
1888
|
+
def _typecheckingstub__230770a22010afacb40ca84242cbcaf8dc73a365b4513ab7b9b99d283bd1184c(
|
|
1889
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1890
|
+
terraform_attribute: builtins.str,
|
|
1891
|
+
complex_object_index: jsii.Number,
|
|
1892
|
+
complex_object_is_from_set: builtins.bool,
|
|
1893
|
+
) -> None:
|
|
1894
|
+
"""Type checking stubs"""
|
|
1895
|
+
pass
|
|
1896
|
+
|
|
1897
|
+
def _typecheckingstub__e0f38cb62584f08fe2a0d73b2d546e0165c39f2136e81c6846a602f1affb622c(
|
|
1898
|
+
value: typing.Optional[ManagedDatabaseOpensearchNodeStates],
|
|
1899
|
+
) -> None:
|
|
1900
|
+
"""Type checking stubs"""
|
|
1901
|
+
pass
|
|
1902
|
+
|
|
1903
|
+
def _typecheckingstub__de14c8022684ac9416f06b1fd8069683ff6f1b4d90f2879d52bb0843d4b3353d(
|
|
1904
|
+
*,
|
|
1905
|
+
automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1906
|
+
ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1907
|
+
migration: typing.Optional[typing.Union[ManagedDatabaseOpensearchPropertiesMigration, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
1908
|
+
public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1909
|
+
version: typing.Optional[builtins.str] = None,
|
|
1910
|
+
) -> None:
|
|
1911
|
+
"""Type checking stubs"""
|
|
1912
|
+
pass
|
|
1913
|
+
|
|
1914
|
+
def _typecheckingstub__2e9014e3843f47cac65d6b0b97970b22bea95096ede108c0cb5515df6c4512b0(
|
|
1915
|
+
*,
|
|
1916
|
+
dbname: typing.Optional[builtins.str] = None,
|
|
1917
|
+
host: typing.Optional[builtins.str] = None,
|
|
1918
|
+
ignore_dbs: typing.Optional[builtins.str] = None,
|
|
1919
|
+
password: typing.Optional[builtins.str] = None,
|
|
1920
|
+
port: typing.Optional[jsii.Number] = None,
|
|
1921
|
+
ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
|
|
1922
|
+
username: typing.Optional[builtins.str] = None,
|
|
1923
|
+
) -> None:
|
|
1924
|
+
"""Type checking stubs"""
|
|
1925
|
+
pass
|
|
1926
|
+
|
|
1927
|
+
def _typecheckingstub__54fb7afe96f9b59071363067b464df27fc0bd7a66756a35f7740bc47567e86a9(
|
|
1928
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1929
|
+
terraform_attribute: builtins.str,
|
|
1930
|
+
) -> None:
|
|
1931
|
+
"""Type checking stubs"""
|
|
1932
|
+
pass
|
|
1933
|
+
|
|
1934
|
+
def _typecheckingstub__0c83e8e0eb5f57a5689bee015af4f9984a7c55e27cba58a9497bb452fbc4f23a(
|
|
1935
|
+
value: builtins.str,
|
|
1936
|
+
) -> None:
|
|
1937
|
+
"""Type checking stubs"""
|
|
1938
|
+
pass
|
|
1939
|
+
|
|
1940
|
+
def _typecheckingstub__7cd2ee705c8cfefcdf2d0952faf490c3a828c31c9bb609bc0c72fd1f55228f78(
|
|
1941
|
+
value: builtins.str,
|
|
1942
|
+
) -> None:
|
|
1943
|
+
"""Type checking stubs"""
|
|
1944
|
+
pass
|
|
1945
|
+
|
|
1946
|
+
def _typecheckingstub__f439c6a967cd1c54f98462992a0cd75fc4b7c737b6e4a294a1090f4532ae5af0(
|
|
1947
|
+
value: builtins.str,
|
|
1948
|
+
) -> None:
|
|
1949
|
+
"""Type checking stubs"""
|
|
1950
|
+
pass
|
|
1951
|
+
|
|
1952
|
+
def _typecheckingstub__805ea2a85737331aa244ddcfb5dd1fcedff1b7615fff0d3b231f43a5a5ecd996(
|
|
1953
|
+
value: builtins.str,
|
|
1954
|
+
) -> None:
|
|
1955
|
+
"""Type checking stubs"""
|
|
1956
|
+
pass
|
|
1957
|
+
|
|
1958
|
+
def _typecheckingstub__fba0ca94293ec1bef1c79982ba6fd17796b71c729d6dbb63772eb79bffc72753(
|
|
1959
|
+
value: jsii.Number,
|
|
1960
|
+
) -> None:
|
|
1961
|
+
"""Type checking stubs"""
|
|
1962
|
+
pass
|
|
1963
|
+
|
|
1964
|
+
def _typecheckingstub__4339c45894bbaf10a3af5e5a7fbd0b412594b80ebbba029c0148fce30b7a5836(
|
|
1965
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1966
|
+
) -> None:
|
|
1967
|
+
"""Type checking stubs"""
|
|
1968
|
+
pass
|
|
1969
|
+
|
|
1970
|
+
def _typecheckingstub__552b0a461371f2793ce57f9840ce4cfa6a6cc4be9836aca97d26fc39cf884fad(
|
|
1971
|
+
value: builtins.str,
|
|
1972
|
+
) -> None:
|
|
1973
|
+
"""Type checking stubs"""
|
|
1974
|
+
pass
|
|
1975
|
+
|
|
1976
|
+
def _typecheckingstub__51d7ef8862acb512ecac2b1da1a97f856fd81a74c8ab5ec0ab5af178fa7756e9(
|
|
1977
|
+
value: typing.Optional[ManagedDatabaseOpensearchPropertiesMigration],
|
|
1978
|
+
) -> None:
|
|
1979
|
+
"""Type checking stubs"""
|
|
1980
|
+
pass
|
|
1981
|
+
|
|
1982
|
+
def _typecheckingstub__751155185e1458cf144b0b3f995bffe965d316250c0fff7682404038d0582237(
|
|
1983
|
+
terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
|
|
1984
|
+
terraform_attribute: builtins.str,
|
|
1985
|
+
) -> None:
|
|
1986
|
+
"""Type checking stubs"""
|
|
1987
|
+
pass
|
|
1988
|
+
|
|
1989
|
+
def _typecheckingstub__be63faa87856b340f7df4fdaa463d51315ab3cec9d31b97f5c4d5f518b414508(
|
|
1990
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
1991
|
+
) -> None:
|
|
1992
|
+
"""Type checking stubs"""
|
|
1993
|
+
pass
|
|
1994
|
+
|
|
1995
|
+
def _typecheckingstub__5817885ce9a4dfdaf892000c0e8757e89b0d1233e8785edbee32917946b1f379(
|
|
1996
|
+
value: typing.List[builtins.str],
|
|
1997
|
+
) -> None:
|
|
1998
|
+
"""Type checking stubs"""
|
|
1999
|
+
pass
|
|
2000
|
+
|
|
2001
|
+
def _typecheckingstub__1877b1cae754d3c61d03eab40de84ea8994bc6a8f432702bdad2e544cca0bb93(
|
|
2002
|
+
value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
|
|
2003
|
+
) -> None:
|
|
2004
|
+
"""Type checking stubs"""
|
|
2005
|
+
pass
|
|
2006
|
+
|
|
2007
|
+
def _typecheckingstub__3fdf3ac54e30cad1108c45853dba19226fdd8c66b79009b24e04a2bfd594cff5(
|
|
2008
|
+
value: builtins.str,
|
|
2009
|
+
) -> None:
|
|
2010
|
+
"""Type checking stubs"""
|
|
2011
|
+
pass
|
|
2012
|
+
|
|
2013
|
+
def _typecheckingstub__8adbbea4f99ad4d0b9aca6ba9727235da1a05ed87b8c7206bf576514664c1eba(
|
|
2014
|
+
value: typing.Optional[ManagedDatabaseOpensearchProperties],
|
|
2015
|
+
) -> None:
|
|
2016
|
+
"""Type checking stubs"""
|
|
2017
|
+
pass
|