cdktf-cdktf-provider-upcloud 15.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. cdktf_cdktf_provider_upcloud/__init__.py +247 -0
  2. cdktf_cdktf_provider_upcloud/_jsii/__init__.py +45 -0
  3. cdktf_cdktf_provider_upcloud/_jsii/provider-upcloud@15.8.0.jsii.tgz +0 -0
  4. cdktf_cdktf_provider_upcloud/data_upcloud_hosts/__init__.py +894 -0
  5. cdktf_cdktf_provider_upcloud/data_upcloud_ip_addresses/__init__.py +633 -0
  6. cdktf_cdktf_provider_upcloud/data_upcloud_kubernetes_cluster/__init__.py +384 -0
  7. cdktf_cdktf_provider_upcloud/data_upcloud_load_balancer_dns_challenge_domain/__init__.py +319 -0
  8. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_mysql_sessions/__init__.py +853 -0
  9. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_opensearch_indices/__init__.py +717 -0
  10. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_postgresql_sessions/__init__.py +1084 -0
  11. cdktf_cdktf_provider_upcloud/data_upcloud_managed_database_valkey_sessions/__init__.py +898 -0
  12. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_policies/__init__.py +647 -0
  13. cdktf_cdktf_provider_upcloud/data_upcloud_managed_object_storage_regions/__init__.py +600 -0
  14. cdktf_cdktf_provider_upcloud/data_upcloud_networks/__init__.py +1093 -0
  15. cdktf_cdktf_provider_upcloud/data_upcloud_storage/__init__.py +725 -0
  16. cdktf_cdktf_provider_upcloud/data_upcloud_tags/__init__.py +558 -0
  17. cdktf_cdktf_provider_upcloud/data_upcloud_zone/__init__.py +421 -0
  18. cdktf_cdktf_provider_upcloud/data_upcloud_zones/__init__.py +364 -0
  19. cdktf_cdktf_provider_upcloud/file_storage/__init__.py +1683 -0
  20. cdktf_cdktf_provider_upcloud/firewall_rules/__init__.py +1233 -0
  21. cdktf_cdktf_provider_upcloud/floating_ip_address/__init__.py +552 -0
  22. cdktf_cdktf_provider_upcloud/gateway/__init__.py +1167 -0
  23. cdktf_cdktf_provider_upcloud/gateway_connection/__init__.py +1299 -0
  24. cdktf_cdktf_provider_upcloud/gateway_connection_tunnel/__init__.py +1357 -0
  25. cdktf_cdktf_provider_upcloud/kubernetes_cluster/__init__.py +801 -0
  26. cdktf_cdktf_provider_upcloud/kubernetes_node_group/__init__.py +2674 -0
  27. cdktf_cdktf_provider_upcloud/loadbalancer/__init__.py +2113 -0
  28. cdktf_cdktf_provider_upcloud/loadbalancer_backend/__init__.py +1426 -0
  29. cdktf_cdktf_provider_upcloud/loadbalancer_backend_tls_config/__init__.py +442 -0
  30. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_backend_member/__init__.py +633 -0
  31. cdktf_cdktf_provider_upcloud/loadbalancer_dynamic_certificate_bundle/__init__.py +459 -0
  32. cdktf_cdktf_provider_upcloud/loadbalancer_frontend/__init__.py +1290 -0
  33. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_rule/__init__.py +11486 -0
  34. cdktf_cdktf_provider_upcloud/loadbalancer_frontend_tls_config/__init__.py +442 -0
  35. cdktf_cdktf_provider_upcloud/loadbalancer_manual_certificate_bundle/__init__.py +504 -0
  36. cdktf_cdktf_provider_upcloud/loadbalancer_resolver/__init__.py +659 -0
  37. cdktf_cdktf_provider_upcloud/loadbalancer_static_backend_member/__init__.py +633 -0
  38. cdktf_cdktf_provider_upcloud/managed_database_logical_database/__init__.py +536 -0
  39. cdktf_cdktf_provider_upcloud/managed_database_mysql/__init__.py +4644 -0
  40. cdktf_cdktf_provider_upcloud/managed_database_opensearch/__init__.py +13812 -0
  41. cdktf_cdktf_provider_upcloud/managed_database_postgresql/__init__.py +7734 -0
  42. cdktf_cdktf_provider_upcloud/managed_database_user/__init__.py +1541 -0
  43. cdktf_cdktf_provider_upcloud/managed_database_valkey/__init__.py +3355 -0
  44. cdktf_cdktf_provider_upcloud/managed_object_storage/__init__.py +1198 -0
  45. cdktf_cdktf_provider_upcloud/managed_object_storage_bucket/__init__.py +409 -0
  46. cdktf_cdktf_provider_upcloud/managed_object_storage_custom_domain/__init__.py +446 -0
  47. cdktf_cdktf_provider_upcloud/managed_object_storage_policy/__init__.py +521 -0
  48. cdktf_cdktf_provider_upcloud/managed_object_storage_user/__init__.py +454 -0
  49. cdktf_cdktf_provider_upcloud/managed_object_storage_user_access_key/__init__.py +505 -0
  50. cdktf_cdktf_provider_upcloud/managed_object_storage_user_policy/__init__.py +485 -0
  51. cdktf_cdktf_provider_upcloud/network/__init__.py +1554 -0
  52. cdktf_cdktf_provider_upcloud/network_peering/__init__.py +1084 -0
  53. cdktf_cdktf_provider_upcloud/provider/__init__.py +544 -0
  54. cdktf_cdktf_provider_upcloud/py.typed +1 -0
  55. cdktf_cdktf_provider_upcloud/router/__init__.py +1030 -0
  56. cdktf_cdktf_provider_upcloud/server/__init__.py +4542 -0
  57. cdktf_cdktf_provider_upcloud/server_group/__init__.py +571 -0
  58. cdktf_cdktf_provider_upcloud/storage/__init__.py +1850 -0
  59. cdktf_cdktf_provider_upcloud/storage_backup/__init__.py +483 -0
  60. cdktf_cdktf_provider_upcloud/storage_template/__init__.py +478 -0
  61. cdktf_cdktf_provider_upcloud/tag/__init__.py +493 -0
  62. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/LICENSE +355 -0
  63. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/METADATA +120 -0
  64. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/RECORD +66 -0
  65. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/WHEEL +5 -0
  66. cdktf_cdktf_provider_upcloud-15.8.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,4644 @@
1
+ r'''
2
+ # `upcloud_managed_database_mysql`
3
+
4
+ Refer to the Terraform Registry for docs: [`upcloud_managed_database_mysql`](https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql).
5
+ '''
6
+ from pkgutil import extend_path
7
+ __path__ = extend_path(__path__, __name__)
8
+
9
+ import abc
10
+ import builtins
11
+ import datetime
12
+ import enum
13
+ import typing
14
+
15
+ import jsii
16
+ import publication
17
+ import typing_extensions
18
+
19
+ import typeguard
20
+ from importlib.metadata import version as _metadata_package_version
21
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
22
+
23
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
24
+ if TYPEGUARD_MAJOR_VERSION <= 2:
25
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
26
+ else:
27
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
28
+ pass
29
+ else:
30
+ if TYPEGUARD_MAJOR_VERSION == 3:
31
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
32
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
33
+ else:
34
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
35
+
36
+ from .._jsii import *
37
+
38
+ import cdktf as _cdktf_9a9027ec
39
+ import constructs as _constructs_77d1e7e8
40
+
41
+
42
+ class ManagedDatabaseMysql(
43
+ _cdktf_9a9027ec.TerraformResource,
44
+ metaclass=jsii.JSIIMeta,
45
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysql",
46
+ ):
47
+ '''Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql upcloud_managed_database_mysql}.'''
48
+
49
+ def __init__(
50
+ self,
51
+ scope: _constructs_77d1e7e8.Construct,
52
+ id_: builtins.str,
53
+ *,
54
+ name: builtins.str,
55
+ plan: builtins.str,
56
+ title: builtins.str,
57
+ zone: builtins.str,
58
+ additional_disk_space_gib: typing.Optional[jsii.Number] = None,
59
+ id: typing.Optional[builtins.str] = None,
60
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
61
+ maintenance_window_dow: typing.Optional[builtins.str] = None,
62
+ maintenance_window_time: typing.Optional[builtins.str] = None,
63
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedDatabaseMysqlNetwork", typing.Dict[builtins.str, typing.Any]]]]] = None,
64
+ powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
65
+ properties: typing.Optional[typing.Union["ManagedDatabaseMysqlProperties", typing.Dict[builtins.str, typing.Any]]] = None,
66
+ termination_protection: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
67
+ 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,
68
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
69
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
70
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
71
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
72
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
73
+ 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,
74
+ ) -> None:
75
+ '''Create a new {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql upcloud_managed_database_mysql} Resource.
76
+
77
+ :param scope: The scope in which to define this construct.
78
+ :param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
79
+ :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/5.31.0/docs/resources/managed_database_mysql#name ManagedDatabaseMysql#name}
80
+ :param plan: Service plan to use. This determines how much resources the instance will have. You can list available plans with ``upctl database plans mysql``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#plan ManagedDatabaseMysql#plan}
81
+ :param title: Title of a managed database instance. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#title ManagedDatabaseMysql#title}
82
+ :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/5.31.0/docs/resources/managed_database_mysql#zone ManagedDatabaseMysql#zone}
83
+ :param additional_disk_space_gib: Additional disk space in GiB. Note that changes in additional disk space might require disk maintenance. This pending maintenance blocks some operations, such as version upgrades, until the maintenance is completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#additional_disk_space_gib ManagedDatabaseMysql#additional_disk_space_gib}
84
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#id ManagedDatabaseMysql#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.
85
+ :param labels: User defined key-value pairs to classify the managed database. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#labels ManagedDatabaseMysql#labels}
86
+ :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/5.31.0/docs/resources/managed_database_mysql#maintenance_window_dow ManagedDatabaseMysql#maintenance_window_dow}
87
+ :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/5.31.0/docs/resources/managed_database_mysql#maintenance_window_time ManagedDatabaseMysql#maintenance_window_time}
88
+ :param network: network block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#network ManagedDatabaseMysql#network}
89
+ :param powered: The administrative power state of the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#powered ManagedDatabaseMysql#powered}
90
+ :param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#properties ManagedDatabaseMysql#properties}
91
+ :param termination_protection: If set to true, prevents the managed service from being powered off, or deleted. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#termination_protection ManagedDatabaseMysql#termination_protection}
92
+ :param connection:
93
+ :param count:
94
+ :param depends_on:
95
+ :param for_each:
96
+ :param lifecycle:
97
+ :param provider:
98
+ :param provisioners:
99
+ '''
100
+ if __debug__:
101
+ type_hints = typing.get_type_hints(_typecheckingstub__958e87e9d4c67c8f4dc9a92e0864dd5ec7b73c3fe017b196cd999a20a67aec35)
102
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
103
+ check_type(argname="argument id_", value=id_, expected_type=type_hints["id_"])
104
+ config = ManagedDatabaseMysqlConfig(
105
+ name=name,
106
+ plan=plan,
107
+ title=title,
108
+ zone=zone,
109
+ additional_disk_space_gib=additional_disk_space_gib,
110
+ id=id,
111
+ labels=labels,
112
+ maintenance_window_dow=maintenance_window_dow,
113
+ maintenance_window_time=maintenance_window_time,
114
+ network=network,
115
+ powered=powered,
116
+ properties=properties,
117
+ termination_protection=termination_protection,
118
+ connection=connection,
119
+ count=count,
120
+ depends_on=depends_on,
121
+ for_each=for_each,
122
+ lifecycle=lifecycle,
123
+ provider=provider,
124
+ provisioners=provisioners,
125
+ )
126
+
127
+ jsii.create(self.__class__, self, [scope, id_, config])
128
+
129
+ @jsii.member(jsii_name="generateConfigForImport")
130
+ @builtins.classmethod
131
+ def generate_config_for_import(
132
+ cls,
133
+ scope: _constructs_77d1e7e8.Construct,
134
+ import_to_id: builtins.str,
135
+ import_from_id: builtins.str,
136
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
137
+ ) -> _cdktf_9a9027ec.ImportableResource:
138
+ '''Generates CDKTF code for importing a ManagedDatabaseMysql resource upon running "cdktf plan ".
139
+
140
+ :param scope: The scope in which to define this construct.
141
+ :param import_to_id: The construct id used in the generated config for the ManagedDatabaseMysql to import.
142
+ :param import_from_id: The id of the existing ManagedDatabaseMysql that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#import import section} in the documentation of this resource for the id to use
143
+ :param provider: ? Optional instance of the provider where the ManagedDatabaseMysql to import is found.
144
+ '''
145
+ if __debug__:
146
+ type_hints = typing.get_type_hints(_typecheckingstub__dc745a4a2be4154ae040b4398757488ee2a87a34d3b8c1e1f51b52a2a2f60166)
147
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
148
+ check_type(argname="argument import_to_id", value=import_to_id, expected_type=type_hints["import_to_id"])
149
+ check_type(argname="argument import_from_id", value=import_from_id, expected_type=type_hints["import_from_id"])
150
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
151
+ return typing.cast(_cdktf_9a9027ec.ImportableResource, jsii.sinvoke(cls, "generateConfigForImport", [scope, import_to_id, import_from_id, provider]))
152
+
153
+ @jsii.member(jsii_name="putNetwork")
154
+ def put_network(
155
+ self,
156
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedDatabaseMysqlNetwork", typing.Dict[builtins.str, typing.Any]]]],
157
+ ) -> None:
158
+ '''
159
+ :param value: -
160
+ '''
161
+ if __debug__:
162
+ type_hints = typing.get_type_hints(_typecheckingstub__a62fc7161400d7b4f860d59782c7df65db78aee0396e1926e60cae30f5d85e4f)
163
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
164
+ return typing.cast(None, jsii.invoke(self, "putNetwork", [value]))
165
+
166
+ @jsii.member(jsii_name="putProperties")
167
+ def put_properties(
168
+ self,
169
+ *,
170
+ admin_password: typing.Optional[builtins.str] = None,
171
+ admin_username: typing.Optional[builtins.str] = None,
172
+ automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
173
+ backup_hour: typing.Optional[jsii.Number] = None,
174
+ backup_minute: typing.Optional[jsii.Number] = None,
175
+ binlog_retention_period: typing.Optional[jsii.Number] = None,
176
+ connect_timeout: typing.Optional[jsii.Number] = None,
177
+ default_time_zone: typing.Optional[builtins.str] = None,
178
+ group_concat_max_len: typing.Optional[jsii.Number] = None,
179
+ information_schema_stats_expiry: typing.Optional[jsii.Number] = None,
180
+ innodb_change_buffer_max_size: typing.Optional[jsii.Number] = None,
181
+ innodb_flush_neighbors: typing.Optional[jsii.Number] = None,
182
+ innodb_ft_min_token_size: typing.Optional[jsii.Number] = None,
183
+ innodb_ft_server_stopword_table: typing.Optional[builtins.str] = None,
184
+ innodb_lock_wait_timeout: typing.Optional[jsii.Number] = None,
185
+ innodb_log_buffer_size: typing.Optional[jsii.Number] = None,
186
+ innodb_online_alter_log_max_size: typing.Optional[jsii.Number] = None,
187
+ innodb_print_all_deadlocks: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
188
+ innodb_read_io_threads: typing.Optional[jsii.Number] = None,
189
+ innodb_rollback_on_timeout: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
190
+ innodb_thread_concurrency: typing.Optional[jsii.Number] = None,
191
+ innodb_write_io_threads: typing.Optional[jsii.Number] = None,
192
+ interactive_timeout: typing.Optional[jsii.Number] = None,
193
+ internal_tmp_mem_storage_engine: typing.Optional[builtins.str] = None,
194
+ ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
195
+ log_output: typing.Optional[builtins.str] = None,
196
+ long_query_time: typing.Optional[jsii.Number] = None,
197
+ max_allowed_packet: typing.Optional[jsii.Number] = None,
198
+ max_heap_table_size: typing.Optional[jsii.Number] = None,
199
+ migration: typing.Optional[typing.Union["ManagedDatabaseMysqlPropertiesMigration", typing.Dict[builtins.str, typing.Any]]] = None,
200
+ mysql_incremental_backup: typing.Optional[typing.Union["ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup", typing.Dict[builtins.str, typing.Any]]] = None,
201
+ net_buffer_length: typing.Optional[jsii.Number] = None,
202
+ net_read_timeout: typing.Optional[jsii.Number] = None,
203
+ net_write_timeout: typing.Optional[jsii.Number] = None,
204
+ public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
205
+ service_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
206
+ slow_query_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
207
+ sort_buffer_size: typing.Optional[jsii.Number] = None,
208
+ sql_mode: typing.Optional[builtins.str] = None,
209
+ sql_require_primary_key: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
210
+ tmp_table_size: typing.Optional[jsii.Number] = None,
211
+ version: typing.Optional[builtins.str] = None,
212
+ wait_timeout: typing.Optional[jsii.Number] = None,
213
+ ) -> None:
214
+ '''
215
+ :param admin_password: Custom password for admin user. Defaults to random string. This must be set only when a new service is being created. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_password ManagedDatabaseMysql#admin_password}
216
+ :param admin_username: Custom username for admin user. This must be set only when a new service is being created. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_username ManagedDatabaseMysql#admin_username}
217
+ :param automatic_utility_network_ip_filter: Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#automatic_utility_network_ip_filter ManagedDatabaseMysql#automatic_utility_network_ip_filter}
218
+ :param backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_hour ManagedDatabaseMysql#backup_hour}
219
+ :param backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_minute ManagedDatabaseMysql#backup_minute}
220
+ :param binlog_retention_period: The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#binlog_retention_period ManagedDatabaseMysql#binlog_retention_period}
221
+ :param connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#connect_timeout ManagedDatabaseMysql#connect_timeout}
222
+ :param default_time_zone: Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#default_time_zone ManagedDatabaseMysql#default_time_zone}
223
+ :param group_concat_max_len: The maximum permitted result length in bytes for the GROUP_CONCAT() function. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#group_concat_max_len ManagedDatabaseMysql#group_concat_max_len}
224
+ :param information_schema_stats_expiry: The time, in seconds, before cached statistics expire. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#information_schema_stats_expiry ManagedDatabaseMysql#information_schema_stats_expiry}
225
+ :param innodb_change_buffer_max_size: Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_change_buffer_max_size ManagedDatabaseMysql#innodb_change_buffer_max_size}
226
+ :param innodb_flush_neighbors: Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_flush_neighbors ManagedDatabaseMysql#innodb_flush_neighbors}
227
+ :param innodb_ft_min_token_size: Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_min_token_size ManagedDatabaseMysql#innodb_ft_min_token_size}
228
+ :param innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_server_stopword_table ManagedDatabaseMysql#innodb_ft_server_stopword_table}
229
+ :param innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_lock_wait_timeout ManagedDatabaseMysql#innodb_lock_wait_timeout}
230
+ :param innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_log_buffer_size ManagedDatabaseMysql#innodb_log_buffer_size}
231
+ :param innodb_online_alter_log_max_size: The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_online_alter_log_max_size ManagedDatabaseMysql#innodb_online_alter_log_max_size}
232
+ :param innodb_print_all_deadlocks: When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_print_all_deadlocks ManagedDatabaseMysql#innodb_print_all_deadlocks}
233
+ :param innodb_read_io_threads: The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_read_io_threads ManagedDatabaseMysql#innodb_read_io_threads}
234
+ :param innodb_rollback_on_timeout: When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_rollback_on_timeout ManagedDatabaseMysql#innodb_rollback_on_timeout}
235
+ :param innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_thread_concurrency ManagedDatabaseMysql#innodb_thread_concurrency}
236
+ :param innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_write_io_threads ManagedDatabaseMysql#innodb_write_io_threads}
237
+ :param interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#interactive_timeout ManagedDatabaseMysql#interactive_timeout}
238
+ :param internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#internal_tmp_mem_storage_engine ManagedDatabaseMysql#internal_tmp_mem_storage_engine}
239
+ :param ip_filter: IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ip_filter ManagedDatabaseMysql#ip_filter}
240
+ :param log_output: The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#log_output ManagedDatabaseMysql#log_output}
241
+ :param long_query_time: The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#long_query_time ManagedDatabaseMysql#long_query_time}
242
+ :param max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_allowed_packet ManagedDatabaseMysql#max_allowed_packet}
243
+ :param max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_heap_table_size ManagedDatabaseMysql#max_heap_table_size}
244
+ :param migration: migration block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#migration ManagedDatabaseMysql#migration}
245
+ :param mysql_incremental_backup: mysql_incremental_backup block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#mysql_incremental_backup ManagedDatabaseMysql#mysql_incremental_backup}
246
+ :param net_buffer_length: Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_buffer_length ManagedDatabaseMysql#net_buffer_length}
247
+ :param net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_read_timeout ManagedDatabaseMysql#net_read_timeout}
248
+ :param net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_write_timeout ManagedDatabaseMysql#net_write_timeout}
249
+ :param public_access: Public Access. Allow access to the service from the public Internet. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#public_access ManagedDatabaseMysql#public_access}
250
+ :param service_log: Service logging. Store logs for the service so that they are available in the HTTP API and console. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#service_log ManagedDatabaseMysql#service_log}
251
+ :param slow_query_log: Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#slow_query_log ManagedDatabaseMysql#slow_query_log}
252
+ :param sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sort_buffer_size ManagedDatabaseMysql#sort_buffer_size}
253
+ :param sql_mode: Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_mode ManagedDatabaseMysql#sql_mode}
254
+ :param sql_require_primary_key: Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_require_primary_key ManagedDatabaseMysql#sql_require_primary_key}
255
+ :param tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#tmp_table_size ManagedDatabaseMysql#tmp_table_size}
256
+ :param version: MySQL major version. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#version ManagedDatabaseMysql#version}
257
+ :param wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#wait_timeout ManagedDatabaseMysql#wait_timeout}
258
+ '''
259
+ value = ManagedDatabaseMysqlProperties(
260
+ admin_password=admin_password,
261
+ admin_username=admin_username,
262
+ automatic_utility_network_ip_filter=automatic_utility_network_ip_filter,
263
+ backup_hour=backup_hour,
264
+ backup_minute=backup_minute,
265
+ binlog_retention_period=binlog_retention_period,
266
+ connect_timeout=connect_timeout,
267
+ default_time_zone=default_time_zone,
268
+ group_concat_max_len=group_concat_max_len,
269
+ information_schema_stats_expiry=information_schema_stats_expiry,
270
+ innodb_change_buffer_max_size=innodb_change_buffer_max_size,
271
+ innodb_flush_neighbors=innodb_flush_neighbors,
272
+ innodb_ft_min_token_size=innodb_ft_min_token_size,
273
+ innodb_ft_server_stopword_table=innodb_ft_server_stopword_table,
274
+ innodb_lock_wait_timeout=innodb_lock_wait_timeout,
275
+ innodb_log_buffer_size=innodb_log_buffer_size,
276
+ innodb_online_alter_log_max_size=innodb_online_alter_log_max_size,
277
+ innodb_print_all_deadlocks=innodb_print_all_deadlocks,
278
+ innodb_read_io_threads=innodb_read_io_threads,
279
+ innodb_rollback_on_timeout=innodb_rollback_on_timeout,
280
+ innodb_thread_concurrency=innodb_thread_concurrency,
281
+ innodb_write_io_threads=innodb_write_io_threads,
282
+ interactive_timeout=interactive_timeout,
283
+ internal_tmp_mem_storage_engine=internal_tmp_mem_storage_engine,
284
+ ip_filter=ip_filter,
285
+ log_output=log_output,
286
+ long_query_time=long_query_time,
287
+ max_allowed_packet=max_allowed_packet,
288
+ max_heap_table_size=max_heap_table_size,
289
+ migration=migration,
290
+ mysql_incremental_backup=mysql_incremental_backup,
291
+ net_buffer_length=net_buffer_length,
292
+ net_read_timeout=net_read_timeout,
293
+ net_write_timeout=net_write_timeout,
294
+ public_access=public_access,
295
+ service_log=service_log,
296
+ slow_query_log=slow_query_log,
297
+ sort_buffer_size=sort_buffer_size,
298
+ sql_mode=sql_mode,
299
+ sql_require_primary_key=sql_require_primary_key,
300
+ tmp_table_size=tmp_table_size,
301
+ version=version,
302
+ wait_timeout=wait_timeout,
303
+ )
304
+
305
+ return typing.cast(None, jsii.invoke(self, "putProperties", [value]))
306
+
307
+ @jsii.member(jsii_name="resetAdditionalDiskSpaceGib")
308
+ def reset_additional_disk_space_gib(self) -> None:
309
+ return typing.cast(None, jsii.invoke(self, "resetAdditionalDiskSpaceGib", []))
310
+
311
+ @jsii.member(jsii_name="resetId")
312
+ def reset_id(self) -> None:
313
+ return typing.cast(None, jsii.invoke(self, "resetId", []))
314
+
315
+ @jsii.member(jsii_name="resetLabels")
316
+ def reset_labels(self) -> None:
317
+ return typing.cast(None, jsii.invoke(self, "resetLabels", []))
318
+
319
+ @jsii.member(jsii_name="resetMaintenanceWindowDow")
320
+ def reset_maintenance_window_dow(self) -> None:
321
+ return typing.cast(None, jsii.invoke(self, "resetMaintenanceWindowDow", []))
322
+
323
+ @jsii.member(jsii_name="resetMaintenanceWindowTime")
324
+ def reset_maintenance_window_time(self) -> None:
325
+ return typing.cast(None, jsii.invoke(self, "resetMaintenanceWindowTime", []))
326
+
327
+ @jsii.member(jsii_name="resetNetwork")
328
+ def reset_network(self) -> None:
329
+ return typing.cast(None, jsii.invoke(self, "resetNetwork", []))
330
+
331
+ @jsii.member(jsii_name="resetPowered")
332
+ def reset_powered(self) -> None:
333
+ return typing.cast(None, jsii.invoke(self, "resetPowered", []))
334
+
335
+ @jsii.member(jsii_name="resetProperties")
336
+ def reset_properties(self) -> None:
337
+ return typing.cast(None, jsii.invoke(self, "resetProperties", []))
338
+
339
+ @jsii.member(jsii_name="resetTerminationProtection")
340
+ def reset_termination_protection(self) -> None:
341
+ return typing.cast(None, jsii.invoke(self, "resetTerminationProtection", []))
342
+
343
+ @jsii.member(jsii_name="synthesizeAttributes")
344
+ def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
345
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
346
+
347
+ @jsii.member(jsii_name="synthesizeHclAttributes")
348
+ def _synthesize_hcl_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
349
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeHclAttributes", []))
350
+
351
+ @jsii.python.classproperty
352
+ @jsii.member(jsii_name="tfResourceType")
353
+ def TF_RESOURCE_TYPE(cls) -> builtins.str:
354
+ return typing.cast(builtins.str, jsii.sget(cls, "tfResourceType"))
355
+
356
+ @builtins.property
357
+ @jsii.member(jsii_name="components")
358
+ def components(self) -> "ManagedDatabaseMysqlComponentsList":
359
+ return typing.cast("ManagedDatabaseMysqlComponentsList", jsii.get(self, "components"))
360
+
361
+ @builtins.property
362
+ @jsii.member(jsii_name="network")
363
+ def network(self) -> "ManagedDatabaseMysqlNetworkList":
364
+ return typing.cast("ManagedDatabaseMysqlNetworkList", jsii.get(self, "network"))
365
+
366
+ @builtins.property
367
+ @jsii.member(jsii_name="nodeStates")
368
+ def node_states(self) -> "ManagedDatabaseMysqlNodeStatesList":
369
+ return typing.cast("ManagedDatabaseMysqlNodeStatesList", jsii.get(self, "nodeStates"))
370
+
371
+ @builtins.property
372
+ @jsii.member(jsii_name="primaryDatabase")
373
+ def primary_database(self) -> builtins.str:
374
+ return typing.cast(builtins.str, jsii.get(self, "primaryDatabase"))
375
+
376
+ @builtins.property
377
+ @jsii.member(jsii_name="properties")
378
+ def properties(self) -> "ManagedDatabaseMysqlPropertiesOutputReference":
379
+ return typing.cast("ManagedDatabaseMysqlPropertiesOutputReference", jsii.get(self, "properties"))
380
+
381
+ @builtins.property
382
+ @jsii.member(jsii_name="serviceHost")
383
+ def service_host(self) -> builtins.str:
384
+ return typing.cast(builtins.str, jsii.get(self, "serviceHost"))
385
+
386
+ @builtins.property
387
+ @jsii.member(jsii_name="servicePassword")
388
+ def service_password(self) -> builtins.str:
389
+ return typing.cast(builtins.str, jsii.get(self, "servicePassword"))
390
+
391
+ @builtins.property
392
+ @jsii.member(jsii_name="servicePort")
393
+ def service_port(self) -> builtins.str:
394
+ return typing.cast(builtins.str, jsii.get(self, "servicePort"))
395
+
396
+ @builtins.property
397
+ @jsii.member(jsii_name="serviceUri")
398
+ def service_uri(self) -> builtins.str:
399
+ return typing.cast(builtins.str, jsii.get(self, "serviceUri"))
400
+
401
+ @builtins.property
402
+ @jsii.member(jsii_name="serviceUsername")
403
+ def service_username(self) -> builtins.str:
404
+ return typing.cast(builtins.str, jsii.get(self, "serviceUsername"))
405
+
406
+ @builtins.property
407
+ @jsii.member(jsii_name="state")
408
+ def state(self) -> builtins.str:
409
+ return typing.cast(builtins.str, jsii.get(self, "state"))
410
+
411
+ @builtins.property
412
+ @jsii.member(jsii_name="type")
413
+ def type(self) -> builtins.str:
414
+ return typing.cast(builtins.str, jsii.get(self, "type"))
415
+
416
+ @builtins.property
417
+ @jsii.member(jsii_name="additionalDiskSpaceGibInput")
418
+ def additional_disk_space_gib_input(self) -> typing.Optional[jsii.Number]:
419
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "additionalDiskSpaceGibInput"))
420
+
421
+ @builtins.property
422
+ @jsii.member(jsii_name="idInput")
423
+ def id_input(self) -> typing.Optional[builtins.str]:
424
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idInput"))
425
+
426
+ @builtins.property
427
+ @jsii.member(jsii_name="labelsInput")
428
+ def labels_input(
429
+ self,
430
+ ) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
431
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "labelsInput"))
432
+
433
+ @builtins.property
434
+ @jsii.member(jsii_name="maintenanceWindowDowInput")
435
+ def maintenance_window_dow_input(self) -> typing.Optional[builtins.str]:
436
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "maintenanceWindowDowInput"))
437
+
438
+ @builtins.property
439
+ @jsii.member(jsii_name="maintenanceWindowTimeInput")
440
+ def maintenance_window_time_input(self) -> typing.Optional[builtins.str]:
441
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "maintenanceWindowTimeInput"))
442
+
443
+ @builtins.property
444
+ @jsii.member(jsii_name="nameInput")
445
+ def name_input(self) -> typing.Optional[builtins.str]:
446
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
447
+
448
+ @builtins.property
449
+ @jsii.member(jsii_name="networkInput")
450
+ def network_input(
451
+ self,
452
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedDatabaseMysqlNetwork"]]]:
453
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedDatabaseMysqlNetwork"]]], jsii.get(self, "networkInput"))
454
+
455
+ @builtins.property
456
+ @jsii.member(jsii_name="planInput")
457
+ def plan_input(self) -> typing.Optional[builtins.str]:
458
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "planInput"))
459
+
460
+ @builtins.property
461
+ @jsii.member(jsii_name="poweredInput")
462
+ def powered_input(
463
+ self,
464
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
465
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "poweredInput"))
466
+
467
+ @builtins.property
468
+ @jsii.member(jsii_name="propertiesInput")
469
+ def properties_input(self) -> typing.Optional["ManagedDatabaseMysqlProperties"]:
470
+ return typing.cast(typing.Optional["ManagedDatabaseMysqlProperties"], jsii.get(self, "propertiesInput"))
471
+
472
+ @builtins.property
473
+ @jsii.member(jsii_name="terminationProtectionInput")
474
+ def termination_protection_input(
475
+ self,
476
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
477
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "terminationProtectionInput"))
478
+
479
+ @builtins.property
480
+ @jsii.member(jsii_name="titleInput")
481
+ def title_input(self) -> typing.Optional[builtins.str]:
482
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "titleInput"))
483
+
484
+ @builtins.property
485
+ @jsii.member(jsii_name="zoneInput")
486
+ def zone_input(self) -> typing.Optional[builtins.str]:
487
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "zoneInput"))
488
+
489
+ @builtins.property
490
+ @jsii.member(jsii_name="additionalDiskSpaceGib")
491
+ def additional_disk_space_gib(self) -> jsii.Number:
492
+ return typing.cast(jsii.Number, jsii.get(self, "additionalDiskSpaceGib"))
493
+
494
+ @additional_disk_space_gib.setter
495
+ def additional_disk_space_gib(self, value: jsii.Number) -> None:
496
+ if __debug__:
497
+ type_hints = typing.get_type_hints(_typecheckingstub__809f94a9c0ea81787b761f3d6773f300f7cefd7dab496b917cef03427280fe8f)
498
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
499
+ jsii.set(self, "additionalDiskSpaceGib", value) # pyright: ignore[reportArgumentType]
500
+
501
+ @builtins.property
502
+ @jsii.member(jsii_name="id")
503
+ def id(self) -> builtins.str:
504
+ return typing.cast(builtins.str, jsii.get(self, "id"))
505
+
506
+ @id.setter
507
+ def id(self, value: builtins.str) -> None:
508
+ if __debug__:
509
+ type_hints = typing.get_type_hints(_typecheckingstub__e7a4fb60d1135c0f8631d36600a5812527c23ae3a5aa4b793722b50e65fd246d)
510
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
511
+ jsii.set(self, "id", value) # pyright: ignore[reportArgumentType]
512
+
513
+ @builtins.property
514
+ @jsii.member(jsii_name="labels")
515
+ def labels(self) -> typing.Mapping[builtins.str, builtins.str]:
516
+ return typing.cast(typing.Mapping[builtins.str, builtins.str], jsii.get(self, "labels"))
517
+
518
+ @labels.setter
519
+ def labels(self, value: typing.Mapping[builtins.str, builtins.str]) -> None:
520
+ if __debug__:
521
+ type_hints = typing.get_type_hints(_typecheckingstub__2fcb88e825a08094ea35b5029118afc3cd252fe3cb6af4672e840930dae68ffb)
522
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
523
+ jsii.set(self, "labels", value) # pyright: ignore[reportArgumentType]
524
+
525
+ @builtins.property
526
+ @jsii.member(jsii_name="maintenanceWindowDow")
527
+ def maintenance_window_dow(self) -> builtins.str:
528
+ return typing.cast(builtins.str, jsii.get(self, "maintenanceWindowDow"))
529
+
530
+ @maintenance_window_dow.setter
531
+ def maintenance_window_dow(self, value: builtins.str) -> None:
532
+ if __debug__:
533
+ type_hints = typing.get_type_hints(_typecheckingstub__48df4258c07649eccd564db2bfea58f2d8c6e7775d42e302c4732ba2a3bfa35e)
534
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
535
+ jsii.set(self, "maintenanceWindowDow", value) # pyright: ignore[reportArgumentType]
536
+
537
+ @builtins.property
538
+ @jsii.member(jsii_name="maintenanceWindowTime")
539
+ def maintenance_window_time(self) -> builtins.str:
540
+ return typing.cast(builtins.str, jsii.get(self, "maintenanceWindowTime"))
541
+
542
+ @maintenance_window_time.setter
543
+ def maintenance_window_time(self, value: builtins.str) -> None:
544
+ if __debug__:
545
+ type_hints = typing.get_type_hints(_typecheckingstub__10c67ec6c447fed554dbe7abe9233193df48d93398b1a1c03b2cc52fc4a56f21)
546
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
547
+ jsii.set(self, "maintenanceWindowTime", value) # pyright: ignore[reportArgumentType]
548
+
549
+ @builtins.property
550
+ @jsii.member(jsii_name="name")
551
+ def name(self) -> builtins.str:
552
+ return typing.cast(builtins.str, jsii.get(self, "name"))
553
+
554
+ @name.setter
555
+ def name(self, value: builtins.str) -> None:
556
+ if __debug__:
557
+ type_hints = typing.get_type_hints(_typecheckingstub__9b3317f4107eb3f0324a64874708fab95f67e816faecf7678312b22212af296f)
558
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
559
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
560
+
561
+ @builtins.property
562
+ @jsii.member(jsii_name="plan")
563
+ def plan(self) -> builtins.str:
564
+ return typing.cast(builtins.str, jsii.get(self, "plan"))
565
+
566
+ @plan.setter
567
+ def plan(self, value: builtins.str) -> None:
568
+ if __debug__:
569
+ type_hints = typing.get_type_hints(_typecheckingstub__4a44dc38d52585561bb352263c2d4c0c7166d02e7d2ba26b1f06b0827bd1645c)
570
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
571
+ jsii.set(self, "plan", value) # pyright: ignore[reportArgumentType]
572
+
573
+ @builtins.property
574
+ @jsii.member(jsii_name="powered")
575
+ def powered(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
576
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "powered"))
577
+
578
+ @powered.setter
579
+ def powered(
580
+ self,
581
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
582
+ ) -> None:
583
+ if __debug__:
584
+ type_hints = typing.get_type_hints(_typecheckingstub__beb13051c8d159249aa225bdbcf28aeb76bc85a1aae08e9c31f60dfe116dfecc)
585
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
586
+ jsii.set(self, "powered", value) # pyright: ignore[reportArgumentType]
587
+
588
+ @builtins.property
589
+ @jsii.member(jsii_name="terminationProtection")
590
+ def termination_protection(
591
+ self,
592
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
593
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "terminationProtection"))
594
+
595
+ @termination_protection.setter
596
+ def termination_protection(
597
+ self,
598
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
599
+ ) -> None:
600
+ if __debug__:
601
+ type_hints = typing.get_type_hints(_typecheckingstub__8c9f7e6065020fa925bf719fbd0aa777653e104f39664706dabe6a435de915cf)
602
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
603
+ jsii.set(self, "terminationProtection", value) # pyright: ignore[reportArgumentType]
604
+
605
+ @builtins.property
606
+ @jsii.member(jsii_name="title")
607
+ def title(self) -> builtins.str:
608
+ return typing.cast(builtins.str, jsii.get(self, "title"))
609
+
610
+ @title.setter
611
+ def title(self, value: builtins.str) -> None:
612
+ if __debug__:
613
+ type_hints = typing.get_type_hints(_typecheckingstub__7141cc36a0c3b744c0e90aacfea1d6055f2e1bb6d23321a515475bd8c72cec64)
614
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
615
+ jsii.set(self, "title", value) # pyright: ignore[reportArgumentType]
616
+
617
+ @builtins.property
618
+ @jsii.member(jsii_name="zone")
619
+ def zone(self) -> builtins.str:
620
+ return typing.cast(builtins.str, jsii.get(self, "zone"))
621
+
622
+ @zone.setter
623
+ def zone(self, value: builtins.str) -> None:
624
+ if __debug__:
625
+ type_hints = typing.get_type_hints(_typecheckingstub__7732a2cf2cda58a00518cf2d610dba1c27c5673a60c4385a62472ceb732076d4)
626
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
627
+ jsii.set(self, "zone", value) # pyright: ignore[reportArgumentType]
628
+
629
+
630
+ @jsii.data_type(
631
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlComponents",
632
+ jsii_struct_bases=[],
633
+ name_mapping={},
634
+ )
635
+ class ManagedDatabaseMysqlComponents:
636
+ def __init__(self) -> None:
637
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
638
+
639
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
640
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
641
+
642
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
643
+ return not (rhs == self)
644
+
645
+ def __repr__(self) -> str:
646
+ return "ManagedDatabaseMysqlComponents(%s)" % ", ".join(
647
+ k + "=" + repr(v) for k, v in self._values.items()
648
+ )
649
+
650
+
651
+ class ManagedDatabaseMysqlComponentsList(
652
+ _cdktf_9a9027ec.ComplexList,
653
+ metaclass=jsii.JSIIMeta,
654
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlComponentsList",
655
+ ):
656
+ def __init__(
657
+ self,
658
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
659
+ terraform_attribute: builtins.str,
660
+ wraps_set: builtins.bool,
661
+ ) -> None:
662
+ '''
663
+ :param terraform_resource: The parent resource.
664
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
665
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
666
+ '''
667
+ if __debug__:
668
+ type_hints = typing.get_type_hints(_typecheckingstub__34b41667608ff4cd5e9008da8d533f9c668a11f12f74531e6d80da050862de08)
669
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
670
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
671
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
672
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
673
+
674
+ @jsii.member(jsii_name="get")
675
+ def get(
676
+ self,
677
+ index: jsii.Number,
678
+ ) -> "ManagedDatabaseMysqlComponentsOutputReference":
679
+ '''
680
+ :param index: the index of the item to return.
681
+ '''
682
+ if __debug__:
683
+ type_hints = typing.get_type_hints(_typecheckingstub__688fdae24b26e710345c109b7473013f94e8839a01038fa5240f646ae832ee6a)
684
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
685
+ return typing.cast("ManagedDatabaseMysqlComponentsOutputReference", jsii.invoke(self, "get", [index]))
686
+
687
+ @builtins.property
688
+ @jsii.member(jsii_name="terraformAttribute")
689
+ def _terraform_attribute(self) -> builtins.str:
690
+ '''The attribute on the parent resource this class is referencing.'''
691
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
692
+
693
+ @_terraform_attribute.setter
694
+ def _terraform_attribute(self, value: builtins.str) -> None:
695
+ if __debug__:
696
+ type_hints = typing.get_type_hints(_typecheckingstub__80d18976397eb5bc969ead28206ee1c2ebb44271012265fe7c6bc2410af32085)
697
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
698
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
699
+
700
+ @builtins.property
701
+ @jsii.member(jsii_name="terraformResource")
702
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
703
+ '''The parent resource.'''
704
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
705
+
706
+ @_terraform_resource.setter
707
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
708
+ if __debug__:
709
+ type_hints = typing.get_type_hints(_typecheckingstub__017d94a1bed5a80567186f11930d76599611f085d87754b6317c3f1d30eac0f1)
710
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
711
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
712
+
713
+ @builtins.property
714
+ @jsii.member(jsii_name="wrapsSet")
715
+ def _wraps_set(self) -> builtins.bool:
716
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
717
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
718
+
719
+ @_wraps_set.setter
720
+ def _wraps_set(self, value: builtins.bool) -> None:
721
+ if __debug__:
722
+ type_hints = typing.get_type_hints(_typecheckingstub__deb58afab231debdc3de38ded6700565608b4d5e89d03bcdea43e26c8f29e2cc)
723
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
724
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
725
+
726
+
727
+ class ManagedDatabaseMysqlComponentsOutputReference(
728
+ _cdktf_9a9027ec.ComplexObject,
729
+ metaclass=jsii.JSIIMeta,
730
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlComponentsOutputReference",
731
+ ):
732
+ def __init__(
733
+ self,
734
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
735
+ terraform_attribute: builtins.str,
736
+ complex_object_index: jsii.Number,
737
+ complex_object_is_from_set: builtins.bool,
738
+ ) -> None:
739
+ '''
740
+ :param terraform_resource: The parent resource.
741
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
742
+ :param complex_object_index: the index of this item in the list.
743
+ :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).
744
+ '''
745
+ if __debug__:
746
+ type_hints = typing.get_type_hints(_typecheckingstub__1ec6165c0e005f2cdab8e4bf91377627b2fee91a4c49330a894a38d618cb266d)
747
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
748
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
749
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
750
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
751
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
752
+
753
+ @builtins.property
754
+ @jsii.member(jsii_name="component")
755
+ def component(self) -> builtins.str:
756
+ return typing.cast(builtins.str, jsii.get(self, "component"))
757
+
758
+ @builtins.property
759
+ @jsii.member(jsii_name="host")
760
+ def host(self) -> builtins.str:
761
+ return typing.cast(builtins.str, jsii.get(self, "host"))
762
+
763
+ @builtins.property
764
+ @jsii.member(jsii_name="port")
765
+ def port(self) -> jsii.Number:
766
+ return typing.cast(jsii.Number, jsii.get(self, "port"))
767
+
768
+ @builtins.property
769
+ @jsii.member(jsii_name="route")
770
+ def route(self) -> builtins.str:
771
+ return typing.cast(builtins.str, jsii.get(self, "route"))
772
+
773
+ @builtins.property
774
+ @jsii.member(jsii_name="usage")
775
+ def usage(self) -> builtins.str:
776
+ return typing.cast(builtins.str, jsii.get(self, "usage"))
777
+
778
+ @builtins.property
779
+ @jsii.member(jsii_name="internalValue")
780
+ def internal_value(self) -> typing.Optional[ManagedDatabaseMysqlComponents]:
781
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlComponents], jsii.get(self, "internalValue"))
782
+
783
+ @internal_value.setter
784
+ def internal_value(
785
+ self,
786
+ value: typing.Optional[ManagedDatabaseMysqlComponents],
787
+ ) -> None:
788
+ if __debug__:
789
+ type_hints = typing.get_type_hints(_typecheckingstub__ae4277256ebc37247795b9bcfd0b223c65762e3553860601183ea80dd360dc0d)
790
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
791
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
792
+
793
+
794
+ @jsii.data_type(
795
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlConfig",
796
+ jsii_struct_bases=[_cdktf_9a9027ec.TerraformMetaArguments],
797
+ name_mapping={
798
+ "connection": "connection",
799
+ "count": "count",
800
+ "depends_on": "dependsOn",
801
+ "for_each": "forEach",
802
+ "lifecycle": "lifecycle",
803
+ "provider": "provider",
804
+ "provisioners": "provisioners",
805
+ "name": "name",
806
+ "plan": "plan",
807
+ "title": "title",
808
+ "zone": "zone",
809
+ "additional_disk_space_gib": "additionalDiskSpaceGib",
810
+ "id": "id",
811
+ "labels": "labels",
812
+ "maintenance_window_dow": "maintenanceWindowDow",
813
+ "maintenance_window_time": "maintenanceWindowTime",
814
+ "network": "network",
815
+ "powered": "powered",
816
+ "properties": "properties",
817
+ "termination_protection": "terminationProtection",
818
+ },
819
+ )
820
+ class ManagedDatabaseMysqlConfig(_cdktf_9a9027ec.TerraformMetaArguments):
821
+ def __init__(
822
+ self,
823
+ *,
824
+ 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,
825
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
826
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
827
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
828
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
829
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
830
+ 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,
831
+ name: builtins.str,
832
+ plan: builtins.str,
833
+ title: builtins.str,
834
+ zone: builtins.str,
835
+ additional_disk_space_gib: typing.Optional[jsii.Number] = None,
836
+ id: typing.Optional[builtins.str] = None,
837
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
838
+ maintenance_window_dow: typing.Optional[builtins.str] = None,
839
+ maintenance_window_time: typing.Optional[builtins.str] = None,
840
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union["ManagedDatabaseMysqlNetwork", typing.Dict[builtins.str, typing.Any]]]]] = None,
841
+ powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
842
+ properties: typing.Optional[typing.Union["ManagedDatabaseMysqlProperties", typing.Dict[builtins.str, typing.Any]]] = None,
843
+ termination_protection: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
844
+ ) -> None:
845
+ '''
846
+ :param connection:
847
+ :param count:
848
+ :param depends_on:
849
+ :param for_each:
850
+ :param lifecycle:
851
+ :param provider:
852
+ :param provisioners:
853
+ :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/5.31.0/docs/resources/managed_database_mysql#name ManagedDatabaseMysql#name}
854
+ :param plan: Service plan to use. This determines how much resources the instance will have. You can list available plans with ``upctl database plans mysql``. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#plan ManagedDatabaseMysql#plan}
855
+ :param title: Title of a managed database instance. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#title ManagedDatabaseMysql#title}
856
+ :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/5.31.0/docs/resources/managed_database_mysql#zone ManagedDatabaseMysql#zone}
857
+ :param additional_disk_space_gib: Additional disk space in GiB. Note that changes in additional disk space might require disk maintenance. This pending maintenance blocks some operations, such as version upgrades, until the maintenance is completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#additional_disk_space_gib ManagedDatabaseMysql#additional_disk_space_gib}
858
+ :param id: Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#id ManagedDatabaseMysql#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.
859
+ :param labels: User defined key-value pairs to classify the managed database. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#labels ManagedDatabaseMysql#labels}
860
+ :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/5.31.0/docs/resources/managed_database_mysql#maintenance_window_dow ManagedDatabaseMysql#maintenance_window_dow}
861
+ :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/5.31.0/docs/resources/managed_database_mysql#maintenance_window_time ManagedDatabaseMysql#maintenance_window_time}
862
+ :param network: network block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#network ManagedDatabaseMysql#network}
863
+ :param powered: The administrative power state of the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#powered ManagedDatabaseMysql#powered}
864
+ :param properties: properties block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#properties ManagedDatabaseMysql#properties}
865
+ :param termination_protection: If set to true, prevents the managed service from being powered off, or deleted. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#termination_protection ManagedDatabaseMysql#termination_protection}
866
+ '''
867
+ if isinstance(lifecycle, dict):
868
+ lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
869
+ if isinstance(properties, dict):
870
+ properties = ManagedDatabaseMysqlProperties(**properties)
871
+ if __debug__:
872
+ type_hints = typing.get_type_hints(_typecheckingstub__10b2894ddd0553e9581d0116772434efafda3295976e9367656213631c5dc624)
873
+ check_type(argname="argument connection", value=connection, expected_type=type_hints["connection"])
874
+ check_type(argname="argument count", value=count, expected_type=type_hints["count"])
875
+ check_type(argname="argument depends_on", value=depends_on, expected_type=type_hints["depends_on"])
876
+ check_type(argname="argument for_each", value=for_each, expected_type=type_hints["for_each"])
877
+ check_type(argname="argument lifecycle", value=lifecycle, expected_type=type_hints["lifecycle"])
878
+ check_type(argname="argument provider", value=provider, expected_type=type_hints["provider"])
879
+ check_type(argname="argument provisioners", value=provisioners, expected_type=type_hints["provisioners"])
880
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
881
+ check_type(argname="argument plan", value=plan, expected_type=type_hints["plan"])
882
+ check_type(argname="argument title", value=title, expected_type=type_hints["title"])
883
+ check_type(argname="argument zone", value=zone, expected_type=type_hints["zone"])
884
+ check_type(argname="argument additional_disk_space_gib", value=additional_disk_space_gib, expected_type=type_hints["additional_disk_space_gib"])
885
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
886
+ check_type(argname="argument labels", value=labels, expected_type=type_hints["labels"])
887
+ check_type(argname="argument maintenance_window_dow", value=maintenance_window_dow, expected_type=type_hints["maintenance_window_dow"])
888
+ check_type(argname="argument maintenance_window_time", value=maintenance_window_time, expected_type=type_hints["maintenance_window_time"])
889
+ check_type(argname="argument network", value=network, expected_type=type_hints["network"])
890
+ check_type(argname="argument powered", value=powered, expected_type=type_hints["powered"])
891
+ check_type(argname="argument properties", value=properties, expected_type=type_hints["properties"])
892
+ check_type(argname="argument termination_protection", value=termination_protection, expected_type=type_hints["termination_protection"])
893
+ self._values: typing.Dict[builtins.str, typing.Any] = {
894
+ "name": name,
895
+ "plan": plan,
896
+ "title": title,
897
+ "zone": zone,
898
+ }
899
+ if connection is not None:
900
+ self._values["connection"] = connection
901
+ if count is not None:
902
+ self._values["count"] = count
903
+ if depends_on is not None:
904
+ self._values["depends_on"] = depends_on
905
+ if for_each is not None:
906
+ self._values["for_each"] = for_each
907
+ if lifecycle is not None:
908
+ self._values["lifecycle"] = lifecycle
909
+ if provider is not None:
910
+ self._values["provider"] = provider
911
+ if provisioners is not None:
912
+ self._values["provisioners"] = provisioners
913
+ if additional_disk_space_gib is not None:
914
+ self._values["additional_disk_space_gib"] = additional_disk_space_gib
915
+ if id is not None:
916
+ self._values["id"] = id
917
+ if labels is not None:
918
+ self._values["labels"] = labels
919
+ if maintenance_window_dow is not None:
920
+ self._values["maintenance_window_dow"] = maintenance_window_dow
921
+ if maintenance_window_time is not None:
922
+ self._values["maintenance_window_time"] = maintenance_window_time
923
+ if network is not None:
924
+ self._values["network"] = network
925
+ if powered is not None:
926
+ self._values["powered"] = powered
927
+ if properties is not None:
928
+ self._values["properties"] = properties
929
+ if termination_protection is not None:
930
+ self._values["termination_protection"] = termination_protection
931
+
932
+ @builtins.property
933
+ def connection(
934
+ self,
935
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]]:
936
+ '''
937
+ :stability: experimental
938
+ '''
939
+ result = self._values.get("connection")
940
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.SSHProvisionerConnection, _cdktf_9a9027ec.WinrmProvisionerConnection]], result)
941
+
942
+ @builtins.property
943
+ def count(
944
+ self,
945
+ ) -> typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]]:
946
+ '''
947
+ :stability: experimental
948
+ '''
949
+ result = self._values.get("count")
950
+ return typing.cast(typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]], result)
951
+
952
+ @builtins.property
953
+ def depends_on(
954
+ self,
955
+ ) -> typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]]:
956
+ '''
957
+ :stability: experimental
958
+ '''
959
+ result = self._values.get("depends_on")
960
+ return typing.cast(typing.Optional[typing.List[_cdktf_9a9027ec.ITerraformDependable]], result)
961
+
962
+ @builtins.property
963
+ def for_each(self) -> typing.Optional[_cdktf_9a9027ec.ITerraformIterator]:
964
+ '''
965
+ :stability: experimental
966
+ '''
967
+ result = self._values.get("for_each")
968
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.ITerraformIterator], result)
969
+
970
+ @builtins.property
971
+ def lifecycle(self) -> typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle]:
972
+ '''
973
+ :stability: experimental
974
+ '''
975
+ result = self._values.get("lifecycle")
976
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformResourceLifecycle], result)
977
+
978
+ @builtins.property
979
+ def provider(self) -> typing.Optional[_cdktf_9a9027ec.TerraformProvider]:
980
+ '''
981
+ :stability: experimental
982
+ '''
983
+ result = self._values.get("provider")
984
+ return typing.cast(typing.Optional[_cdktf_9a9027ec.TerraformProvider], result)
985
+
986
+ @builtins.property
987
+ def provisioners(
988
+ self,
989
+ ) -> typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]]:
990
+ '''
991
+ :stability: experimental
992
+ '''
993
+ result = self._values.get("provisioners")
994
+ return typing.cast(typing.Optional[typing.List[typing.Union[_cdktf_9a9027ec.FileProvisioner, _cdktf_9a9027ec.LocalExecProvisioner, _cdktf_9a9027ec.RemoteExecProvisioner]]], result)
995
+
996
+ @builtins.property
997
+ def name(self) -> builtins.str:
998
+ '''Name of the service.
999
+
1000
+ The name is used as a prefix for the logical hostname. Must be unique within an account
1001
+
1002
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#name ManagedDatabaseMysql#name}
1003
+ '''
1004
+ result = self._values.get("name")
1005
+ assert result is not None, "Required property 'name' is missing"
1006
+ return typing.cast(builtins.str, result)
1007
+
1008
+ @builtins.property
1009
+ def plan(self) -> builtins.str:
1010
+ '''Service plan to use.
1011
+
1012
+ This determines how much resources the instance will have. You can list available plans with ``upctl database plans mysql``.
1013
+
1014
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#plan ManagedDatabaseMysql#plan}
1015
+ '''
1016
+ result = self._values.get("plan")
1017
+ assert result is not None, "Required property 'plan' is missing"
1018
+ return typing.cast(builtins.str, result)
1019
+
1020
+ @builtins.property
1021
+ def title(self) -> builtins.str:
1022
+ '''Title of a managed database instance.
1023
+
1024
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#title ManagedDatabaseMysql#title}
1025
+ '''
1026
+ result = self._values.get("title")
1027
+ assert result is not None, "Required property 'title' is missing"
1028
+ return typing.cast(builtins.str, result)
1029
+
1030
+ @builtins.property
1031
+ def zone(self) -> builtins.str:
1032
+ '''Zone where the instance resides, e.g. ``de-fra1``. You can list available zones with ``upctl zone list``.
1033
+
1034
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#zone ManagedDatabaseMysql#zone}
1035
+ '''
1036
+ result = self._values.get("zone")
1037
+ assert result is not None, "Required property 'zone' is missing"
1038
+ return typing.cast(builtins.str, result)
1039
+
1040
+ @builtins.property
1041
+ def additional_disk_space_gib(self) -> typing.Optional[jsii.Number]:
1042
+ '''Additional disk space in GiB.
1043
+
1044
+ Note that changes in additional disk space might require disk maintenance. This pending maintenance blocks some operations, such as version upgrades, until the maintenance is completed.
1045
+
1046
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#additional_disk_space_gib ManagedDatabaseMysql#additional_disk_space_gib}
1047
+ '''
1048
+ result = self._values.get("additional_disk_space_gib")
1049
+ return typing.cast(typing.Optional[jsii.Number], result)
1050
+
1051
+ @builtins.property
1052
+ def id(self) -> typing.Optional[builtins.str]:
1053
+ '''Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#id ManagedDatabaseMysql#id}.
1054
+
1055
+ Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
1056
+ 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.
1057
+ '''
1058
+ result = self._values.get("id")
1059
+ return typing.cast(typing.Optional[builtins.str], result)
1060
+
1061
+ @builtins.property
1062
+ def labels(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
1063
+ '''User defined key-value pairs to classify the managed database.
1064
+
1065
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#labels ManagedDatabaseMysql#labels}
1066
+ '''
1067
+ result = self._values.get("labels")
1068
+ return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
1069
+
1070
+ @builtins.property
1071
+ def maintenance_window_dow(self) -> typing.Optional[builtins.str]:
1072
+ '''Maintenance window day of week. Lower case weekday name (monday, tuesday, ...).
1073
+
1074
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#maintenance_window_dow ManagedDatabaseMysql#maintenance_window_dow}
1075
+ '''
1076
+ result = self._values.get("maintenance_window_dow")
1077
+ return typing.cast(typing.Optional[builtins.str], result)
1078
+
1079
+ @builtins.property
1080
+ def maintenance_window_time(self) -> typing.Optional[builtins.str]:
1081
+ '''Maintenance window UTC time in hh:mm:ss format.
1082
+
1083
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#maintenance_window_time ManagedDatabaseMysql#maintenance_window_time}
1084
+ '''
1085
+ result = self._values.get("maintenance_window_time")
1086
+ return typing.cast(typing.Optional[builtins.str], result)
1087
+
1088
+ @builtins.property
1089
+ def network(
1090
+ self,
1091
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedDatabaseMysqlNetwork"]]]:
1092
+ '''network block.
1093
+
1094
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#network ManagedDatabaseMysql#network}
1095
+ '''
1096
+ result = self._values.get("network")
1097
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List["ManagedDatabaseMysqlNetwork"]]], result)
1098
+
1099
+ @builtins.property
1100
+ def powered(
1101
+ self,
1102
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
1103
+ '''The administrative power state of the service.
1104
+
1105
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#powered ManagedDatabaseMysql#powered}
1106
+ '''
1107
+ result = self._values.get("powered")
1108
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
1109
+
1110
+ @builtins.property
1111
+ def properties(self) -> typing.Optional["ManagedDatabaseMysqlProperties"]:
1112
+ '''properties block.
1113
+
1114
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#properties ManagedDatabaseMysql#properties}
1115
+ '''
1116
+ result = self._values.get("properties")
1117
+ return typing.cast(typing.Optional["ManagedDatabaseMysqlProperties"], result)
1118
+
1119
+ @builtins.property
1120
+ def termination_protection(
1121
+ self,
1122
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
1123
+ '''If set to true, prevents the managed service from being powered off, or deleted.
1124
+
1125
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#termination_protection ManagedDatabaseMysql#termination_protection}
1126
+ '''
1127
+ result = self._values.get("termination_protection")
1128
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
1129
+
1130
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1131
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1132
+
1133
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1134
+ return not (rhs == self)
1135
+
1136
+ def __repr__(self) -> str:
1137
+ return "ManagedDatabaseMysqlConfig(%s)" % ", ".join(
1138
+ k + "=" + repr(v) for k, v in self._values.items()
1139
+ )
1140
+
1141
+
1142
+ @jsii.data_type(
1143
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNetwork",
1144
+ jsii_struct_bases=[],
1145
+ name_mapping={"family": "family", "name": "name", "type": "type", "uuid": "uuid"},
1146
+ )
1147
+ class ManagedDatabaseMysqlNetwork:
1148
+ def __init__(
1149
+ self,
1150
+ *,
1151
+ family: builtins.str,
1152
+ name: builtins.str,
1153
+ type: builtins.str,
1154
+ uuid: builtins.str,
1155
+ ) -> None:
1156
+ '''
1157
+ :param family: Network family. Currently only ``IPv4`` is supported. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#family ManagedDatabaseMysql#family}
1158
+ :param name: The name of the network. Must be unique within the service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#name ManagedDatabaseMysql#name}
1159
+ :param type: The type of the network. Must be private. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#type ManagedDatabaseMysql#type}
1160
+ :param uuid: Private network UUID. Must reside in the same zone as the database. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#uuid ManagedDatabaseMysql#uuid}
1161
+ '''
1162
+ if __debug__:
1163
+ type_hints = typing.get_type_hints(_typecheckingstub__74301fe81253b8784b9afba8d3a1dda97ee52965714102f2fb71f3cda82c72d9)
1164
+ check_type(argname="argument family", value=family, expected_type=type_hints["family"])
1165
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
1166
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
1167
+ check_type(argname="argument uuid", value=uuid, expected_type=type_hints["uuid"])
1168
+ self._values: typing.Dict[builtins.str, typing.Any] = {
1169
+ "family": family,
1170
+ "name": name,
1171
+ "type": type,
1172
+ "uuid": uuid,
1173
+ }
1174
+
1175
+ @builtins.property
1176
+ def family(self) -> builtins.str:
1177
+ '''Network family. Currently only ``IPv4`` is supported.
1178
+
1179
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#family ManagedDatabaseMysql#family}
1180
+ '''
1181
+ result = self._values.get("family")
1182
+ assert result is not None, "Required property 'family' is missing"
1183
+ return typing.cast(builtins.str, result)
1184
+
1185
+ @builtins.property
1186
+ def name(self) -> builtins.str:
1187
+ '''The name of the network. Must be unique within the service.
1188
+
1189
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#name ManagedDatabaseMysql#name}
1190
+ '''
1191
+ result = self._values.get("name")
1192
+ assert result is not None, "Required property 'name' is missing"
1193
+ return typing.cast(builtins.str, result)
1194
+
1195
+ @builtins.property
1196
+ def type(self) -> builtins.str:
1197
+ '''The type of the network. Must be private.
1198
+
1199
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#type ManagedDatabaseMysql#type}
1200
+ '''
1201
+ result = self._values.get("type")
1202
+ assert result is not None, "Required property 'type' is missing"
1203
+ return typing.cast(builtins.str, result)
1204
+
1205
+ @builtins.property
1206
+ def uuid(self) -> builtins.str:
1207
+ '''Private network UUID. Must reside in the same zone as the database.
1208
+
1209
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#uuid ManagedDatabaseMysql#uuid}
1210
+ '''
1211
+ result = self._values.get("uuid")
1212
+ assert result is not None, "Required property 'uuid' is missing"
1213
+ return typing.cast(builtins.str, result)
1214
+
1215
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1216
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1217
+
1218
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1219
+ return not (rhs == self)
1220
+
1221
+ def __repr__(self) -> str:
1222
+ return "ManagedDatabaseMysqlNetwork(%s)" % ", ".join(
1223
+ k + "=" + repr(v) for k, v in self._values.items()
1224
+ )
1225
+
1226
+
1227
+ class ManagedDatabaseMysqlNetworkList(
1228
+ _cdktf_9a9027ec.ComplexList,
1229
+ metaclass=jsii.JSIIMeta,
1230
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNetworkList",
1231
+ ):
1232
+ def __init__(
1233
+ self,
1234
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1235
+ terraform_attribute: builtins.str,
1236
+ wraps_set: builtins.bool,
1237
+ ) -> None:
1238
+ '''
1239
+ :param terraform_resource: The parent resource.
1240
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
1241
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
1242
+ '''
1243
+ if __debug__:
1244
+ type_hints = typing.get_type_hints(_typecheckingstub__53c76b9a36fa2c5763e2ef8caea118bd60028c1ba65bcd4a2bf797076f44e2f7)
1245
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
1246
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
1247
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
1248
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
1249
+
1250
+ @jsii.member(jsii_name="get")
1251
+ def get(self, index: jsii.Number) -> "ManagedDatabaseMysqlNetworkOutputReference":
1252
+ '''
1253
+ :param index: the index of the item to return.
1254
+ '''
1255
+ if __debug__:
1256
+ type_hints = typing.get_type_hints(_typecheckingstub__127d61284845f513acef2e7d6fe15b6f6cc76e910f2d89ece042176d8bef7967)
1257
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
1258
+ return typing.cast("ManagedDatabaseMysqlNetworkOutputReference", jsii.invoke(self, "get", [index]))
1259
+
1260
+ @builtins.property
1261
+ @jsii.member(jsii_name="terraformAttribute")
1262
+ def _terraform_attribute(self) -> builtins.str:
1263
+ '''The attribute on the parent resource this class is referencing.'''
1264
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
1265
+
1266
+ @_terraform_attribute.setter
1267
+ def _terraform_attribute(self, value: builtins.str) -> None:
1268
+ if __debug__:
1269
+ type_hints = typing.get_type_hints(_typecheckingstub__e6f90b60425a2e38d3af43a492643c17d866cb129ac68edbb3072b9614eb3113)
1270
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1271
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
1272
+
1273
+ @builtins.property
1274
+ @jsii.member(jsii_name="terraformResource")
1275
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
1276
+ '''The parent resource.'''
1277
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
1278
+
1279
+ @_terraform_resource.setter
1280
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
1281
+ if __debug__:
1282
+ type_hints = typing.get_type_hints(_typecheckingstub__00c8b7b77f169dfb8910e16238b1e78991dc8e7e37374ca83ca93de027477e5c)
1283
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1284
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
1285
+
1286
+ @builtins.property
1287
+ @jsii.member(jsii_name="wrapsSet")
1288
+ def _wraps_set(self) -> builtins.bool:
1289
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
1290
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
1291
+
1292
+ @_wraps_set.setter
1293
+ def _wraps_set(self, value: builtins.bool) -> None:
1294
+ if __debug__:
1295
+ type_hints = typing.get_type_hints(_typecheckingstub__f21cfe7d74b33287ba0ab770e586d1d2ccf031bf53abb32c3632361e3061f6a8)
1296
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1297
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
1298
+
1299
+ @builtins.property
1300
+ @jsii.member(jsii_name="internalValue")
1301
+ def internal_value(
1302
+ self,
1303
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedDatabaseMysqlNetwork]]]:
1304
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedDatabaseMysqlNetwork]]], jsii.get(self, "internalValue"))
1305
+
1306
+ @internal_value.setter
1307
+ def internal_value(
1308
+ self,
1309
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedDatabaseMysqlNetwork]]],
1310
+ ) -> None:
1311
+ if __debug__:
1312
+ type_hints = typing.get_type_hints(_typecheckingstub__94c97a6da3042ffb69736a0b72c58cc97a1025de77ce3dea7b71a494beeb8ca7)
1313
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1314
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
1315
+
1316
+
1317
+ class ManagedDatabaseMysqlNetworkOutputReference(
1318
+ _cdktf_9a9027ec.ComplexObject,
1319
+ metaclass=jsii.JSIIMeta,
1320
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNetworkOutputReference",
1321
+ ):
1322
+ def __init__(
1323
+ self,
1324
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1325
+ terraform_attribute: builtins.str,
1326
+ complex_object_index: jsii.Number,
1327
+ complex_object_is_from_set: builtins.bool,
1328
+ ) -> None:
1329
+ '''
1330
+ :param terraform_resource: The parent resource.
1331
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
1332
+ :param complex_object_index: the index of this item in the list.
1333
+ :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).
1334
+ '''
1335
+ if __debug__:
1336
+ type_hints = typing.get_type_hints(_typecheckingstub__2dd5c3a8b28af9ee2d43d563baf32e395fe43a74440a5ce7f47afaec5e1a113a)
1337
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
1338
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
1339
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
1340
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
1341
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
1342
+
1343
+ @builtins.property
1344
+ @jsii.member(jsii_name="familyInput")
1345
+ def family_input(self) -> typing.Optional[builtins.str]:
1346
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "familyInput"))
1347
+
1348
+ @builtins.property
1349
+ @jsii.member(jsii_name="nameInput")
1350
+ def name_input(self) -> typing.Optional[builtins.str]:
1351
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nameInput"))
1352
+
1353
+ @builtins.property
1354
+ @jsii.member(jsii_name="typeInput")
1355
+ def type_input(self) -> typing.Optional[builtins.str]:
1356
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeInput"))
1357
+
1358
+ @builtins.property
1359
+ @jsii.member(jsii_name="uuidInput")
1360
+ def uuid_input(self) -> typing.Optional[builtins.str]:
1361
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "uuidInput"))
1362
+
1363
+ @builtins.property
1364
+ @jsii.member(jsii_name="family")
1365
+ def family(self) -> builtins.str:
1366
+ return typing.cast(builtins.str, jsii.get(self, "family"))
1367
+
1368
+ @family.setter
1369
+ def family(self, value: builtins.str) -> None:
1370
+ if __debug__:
1371
+ type_hints = typing.get_type_hints(_typecheckingstub__32b05c92713a900a94460be120f24b5ea22785668076ee827760f5d736e28ec7)
1372
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1373
+ jsii.set(self, "family", value) # pyright: ignore[reportArgumentType]
1374
+
1375
+ @builtins.property
1376
+ @jsii.member(jsii_name="name")
1377
+ def name(self) -> builtins.str:
1378
+ return typing.cast(builtins.str, jsii.get(self, "name"))
1379
+
1380
+ @name.setter
1381
+ def name(self, value: builtins.str) -> None:
1382
+ if __debug__:
1383
+ type_hints = typing.get_type_hints(_typecheckingstub__927d6daa33e2f827191036084c87fe58d852f38b6a3609825470a2d55c533dc2)
1384
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1385
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
1386
+
1387
+ @builtins.property
1388
+ @jsii.member(jsii_name="type")
1389
+ def type(self) -> builtins.str:
1390
+ return typing.cast(builtins.str, jsii.get(self, "type"))
1391
+
1392
+ @type.setter
1393
+ def type(self, value: builtins.str) -> None:
1394
+ if __debug__:
1395
+ type_hints = typing.get_type_hints(_typecheckingstub__1327b0d72083b5bdf8929efed7cdf969a5d3933e8d9b5192dff0931eb3ba6a9b)
1396
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1397
+ jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
1398
+
1399
+ @builtins.property
1400
+ @jsii.member(jsii_name="uuid")
1401
+ def uuid(self) -> builtins.str:
1402
+ return typing.cast(builtins.str, jsii.get(self, "uuid"))
1403
+
1404
+ @uuid.setter
1405
+ def uuid(self, value: builtins.str) -> None:
1406
+ if __debug__:
1407
+ type_hints = typing.get_type_hints(_typecheckingstub__05b71e4f1fb19a4fffec705975e756f2280605d835c59bdd94a71df18627a8bc)
1408
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1409
+ jsii.set(self, "uuid", value) # pyright: ignore[reportArgumentType]
1410
+
1411
+ @builtins.property
1412
+ @jsii.member(jsii_name="internalValue")
1413
+ def internal_value(
1414
+ self,
1415
+ ) -> typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedDatabaseMysqlNetwork]]:
1416
+ return typing.cast(typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedDatabaseMysqlNetwork]], jsii.get(self, "internalValue"))
1417
+
1418
+ @internal_value.setter
1419
+ def internal_value(
1420
+ self,
1421
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedDatabaseMysqlNetwork]],
1422
+ ) -> None:
1423
+ if __debug__:
1424
+ type_hints = typing.get_type_hints(_typecheckingstub__afce920649c215f1f7f3adde9483ce3407c61af39dfacb0bcaa881777aa4f8dd)
1425
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1426
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
1427
+
1428
+
1429
+ @jsii.data_type(
1430
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNodeStates",
1431
+ jsii_struct_bases=[],
1432
+ name_mapping={},
1433
+ )
1434
+ class ManagedDatabaseMysqlNodeStates:
1435
+ def __init__(self) -> None:
1436
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
1437
+
1438
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1439
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1440
+
1441
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1442
+ return not (rhs == self)
1443
+
1444
+ def __repr__(self) -> str:
1445
+ return "ManagedDatabaseMysqlNodeStates(%s)" % ", ".join(
1446
+ k + "=" + repr(v) for k, v in self._values.items()
1447
+ )
1448
+
1449
+
1450
+ class ManagedDatabaseMysqlNodeStatesList(
1451
+ _cdktf_9a9027ec.ComplexList,
1452
+ metaclass=jsii.JSIIMeta,
1453
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNodeStatesList",
1454
+ ):
1455
+ def __init__(
1456
+ self,
1457
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1458
+ terraform_attribute: builtins.str,
1459
+ wraps_set: builtins.bool,
1460
+ ) -> None:
1461
+ '''
1462
+ :param terraform_resource: The parent resource.
1463
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
1464
+ :param wraps_set: whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
1465
+ '''
1466
+ if __debug__:
1467
+ type_hints = typing.get_type_hints(_typecheckingstub__989e2763cac47db0558f0e09bb2669c13639bb78716a422e8f8c4eb11ef4418a)
1468
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
1469
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
1470
+ check_type(argname="argument wraps_set", value=wraps_set, expected_type=type_hints["wraps_set"])
1471
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, wraps_set])
1472
+
1473
+ @jsii.member(jsii_name="get")
1474
+ def get(
1475
+ self,
1476
+ index: jsii.Number,
1477
+ ) -> "ManagedDatabaseMysqlNodeStatesOutputReference":
1478
+ '''
1479
+ :param index: the index of the item to return.
1480
+ '''
1481
+ if __debug__:
1482
+ type_hints = typing.get_type_hints(_typecheckingstub__03bece7009f60e171555f364ad6c8bd3ebd4909c341071b47f847719e5090152)
1483
+ check_type(argname="argument index", value=index, expected_type=type_hints["index"])
1484
+ return typing.cast("ManagedDatabaseMysqlNodeStatesOutputReference", jsii.invoke(self, "get", [index]))
1485
+
1486
+ @builtins.property
1487
+ @jsii.member(jsii_name="terraformAttribute")
1488
+ def _terraform_attribute(self) -> builtins.str:
1489
+ '''The attribute on the parent resource this class is referencing.'''
1490
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
1491
+
1492
+ @_terraform_attribute.setter
1493
+ def _terraform_attribute(self, value: builtins.str) -> None:
1494
+ if __debug__:
1495
+ type_hints = typing.get_type_hints(_typecheckingstub__6bc42894cd75446060a318bed07cb53e96f5e05d71db1adc1e71664475609f06)
1496
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1497
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
1498
+
1499
+ @builtins.property
1500
+ @jsii.member(jsii_name="terraformResource")
1501
+ def _terraform_resource(self) -> _cdktf_9a9027ec.IInterpolatingParent:
1502
+ '''The parent resource.'''
1503
+ return typing.cast(_cdktf_9a9027ec.IInterpolatingParent, jsii.get(self, "terraformResource"))
1504
+
1505
+ @_terraform_resource.setter
1506
+ def _terraform_resource(self, value: _cdktf_9a9027ec.IInterpolatingParent) -> None:
1507
+ if __debug__:
1508
+ type_hints = typing.get_type_hints(_typecheckingstub__41e9094332f45eaa5d58fe2d5d98992caaa8fba697503fe24ff24b0640684980)
1509
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1510
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
1511
+
1512
+ @builtins.property
1513
+ @jsii.member(jsii_name="wrapsSet")
1514
+ def _wraps_set(self) -> builtins.bool:
1515
+ '''whether the list is wrapping a set (will add tolist() to be able to access an item via an index).'''
1516
+ return typing.cast(builtins.bool, jsii.get(self, "wrapsSet"))
1517
+
1518
+ @_wraps_set.setter
1519
+ def _wraps_set(self, value: builtins.bool) -> None:
1520
+ if __debug__:
1521
+ type_hints = typing.get_type_hints(_typecheckingstub__287baddcdede19148df005876a5ab7752a44533620e042b8c358bd67bd66bc48)
1522
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1523
+ jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
1524
+
1525
+
1526
+ class ManagedDatabaseMysqlNodeStatesOutputReference(
1527
+ _cdktf_9a9027ec.ComplexObject,
1528
+ metaclass=jsii.JSIIMeta,
1529
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlNodeStatesOutputReference",
1530
+ ):
1531
+ def __init__(
1532
+ self,
1533
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
1534
+ terraform_attribute: builtins.str,
1535
+ complex_object_index: jsii.Number,
1536
+ complex_object_is_from_set: builtins.bool,
1537
+ ) -> None:
1538
+ '''
1539
+ :param terraform_resource: The parent resource.
1540
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
1541
+ :param complex_object_index: the index of this item in the list.
1542
+ :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).
1543
+ '''
1544
+ if __debug__:
1545
+ type_hints = typing.get_type_hints(_typecheckingstub__0fa4e7b4eb3edbb0a4e64637e5c937e026f3ebdf8313cb45509c105223b6f1ad)
1546
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
1547
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
1548
+ check_type(argname="argument complex_object_index", value=complex_object_index, expected_type=type_hints["complex_object_index"])
1549
+ check_type(argname="argument complex_object_is_from_set", value=complex_object_is_from_set, expected_type=type_hints["complex_object_is_from_set"])
1550
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute, complex_object_index, complex_object_is_from_set])
1551
+
1552
+ @builtins.property
1553
+ @jsii.member(jsii_name="name")
1554
+ def name(self) -> builtins.str:
1555
+ return typing.cast(builtins.str, jsii.get(self, "name"))
1556
+
1557
+ @builtins.property
1558
+ @jsii.member(jsii_name="role")
1559
+ def role(self) -> builtins.str:
1560
+ return typing.cast(builtins.str, jsii.get(self, "role"))
1561
+
1562
+ @builtins.property
1563
+ @jsii.member(jsii_name="state")
1564
+ def state(self) -> builtins.str:
1565
+ return typing.cast(builtins.str, jsii.get(self, "state"))
1566
+
1567
+ @builtins.property
1568
+ @jsii.member(jsii_name="internalValue")
1569
+ def internal_value(self) -> typing.Optional[ManagedDatabaseMysqlNodeStates]:
1570
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlNodeStates], jsii.get(self, "internalValue"))
1571
+
1572
+ @internal_value.setter
1573
+ def internal_value(
1574
+ self,
1575
+ value: typing.Optional[ManagedDatabaseMysqlNodeStates],
1576
+ ) -> None:
1577
+ if __debug__:
1578
+ type_hints = typing.get_type_hints(_typecheckingstub__7b164fbe1f2de1cd7f849e6d1a275455f99e36b5fea9891f0c6efac51327f5e0)
1579
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1580
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
1581
+
1582
+
1583
+ @jsii.data_type(
1584
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlProperties",
1585
+ jsii_struct_bases=[],
1586
+ name_mapping={
1587
+ "admin_password": "adminPassword",
1588
+ "admin_username": "adminUsername",
1589
+ "automatic_utility_network_ip_filter": "automaticUtilityNetworkIpFilter",
1590
+ "backup_hour": "backupHour",
1591
+ "backup_minute": "backupMinute",
1592
+ "binlog_retention_period": "binlogRetentionPeriod",
1593
+ "connect_timeout": "connectTimeout",
1594
+ "default_time_zone": "defaultTimeZone",
1595
+ "group_concat_max_len": "groupConcatMaxLen",
1596
+ "information_schema_stats_expiry": "informationSchemaStatsExpiry",
1597
+ "innodb_change_buffer_max_size": "innodbChangeBufferMaxSize",
1598
+ "innodb_flush_neighbors": "innodbFlushNeighbors",
1599
+ "innodb_ft_min_token_size": "innodbFtMinTokenSize",
1600
+ "innodb_ft_server_stopword_table": "innodbFtServerStopwordTable",
1601
+ "innodb_lock_wait_timeout": "innodbLockWaitTimeout",
1602
+ "innodb_log_buffer_size": "innodbLogBufferSize",
1603
+ "innodb_online_alter_log_max_size": "innodbOnlineAlterLogMaxSize",
1604
+ "innodb_print_all_deadlocks": "innodbPrintAllDeadlocks",
1605
+ "innodb_read_io_threads": "innodbReadIoThreads",
1606
+ "innodb_rollback_on_timeout": "innodbRollbackOnTimeout",
1607
+ "innodb_thread_concurrency": "innodbThreadConcurrency",
1608
+ "innodb_write_io_threads": "innodbWriteIoThreads",
1609
+ "interactive_timeout": "interactiveTimeout",
1610
+ "internal_tmp_mem_storage_engine": "internalTmpMemStorageEngine",
1611
+ "ip_filter": "ipFilter",
1612
+ "log_output": "logOutput",
1613
+ "long_query_time": "longQueryTime",
1614
+ "max_allowed_packet": "maxAllowedPacket",
1615
+ "max_heap_table_size": "maxHeapTableSize",
1616
+ "migration": "migration",
1617
+ "mysql_incremental_backup": "mysqlIncrementalBackup",
1618
+ "net_buffer_length": "netBufferLength",
1619
+ "net_read_timeout": "netReadTimeout",
1620
+ "net_write_timeout": "netWriteTimeout",
1621
+ "public_access": "publicAccess",
1622
+ "service_log": "serviceLog",
1623
+ "slow_query_log": "slowQueryLog",
1624
+ "sort_buffer_size": "sortBufferSize",
1625
+ "sql_mode": "sqlMode",
1626
+ "sql_require_primary_key": "sqlRequirePrimaryKey",
1627
+ "tmp_table_size": "tmpTableSize",
1628
+ "version": "version",
1629
+ "wait_timeout": "waitTimeout",
1630
+ },
1631
+ )
1632
+ class ManagedDatabaseMysqlProperties:
1633
+ def __init__(
1634
+ self,
1635
+ *,
1636
+ admin_password: typing.Optional[builtins.str] = None,
1637
+ admin_username: typing.Optional[builtins.str] = None,
1638
+ automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1639
+ backup_hour: typing.Optional[jsii.Number] = None,
1640
+ backup_minute: typing.Optional[jsii.Number] = None,
1641
+ binlog_retention_period: typing.Optional[jsii.Number] = None,
1642
+ connect_timeout: typing.Optional[jsii.Number] = None,
1643
+ default_time_zone: typing.Optional[builtins.str] = None,
1644
+ group_concat_max_len: typing.Optional[jsii.Number] = None,
1645
+ information_schema_stats_expiry: typing.Optional[jsii.Number] = None,
1646
+ innodb_change_buffer_max_size: typing.Optional[jsii.Number] = None,
1647
+ innodb_flush_neighbors: typing.Optional[jsii.Number] = None,
1648
+ innodb_ft_min_token_size: typing.Optional[jsii.Number] = None,
1649
+ innodb_ft_server_stopword_table: typing.Optional[builtins.str] = None,
1650
+ innodb_lock_wait_timeout: typing.Optional[jsii.Number] = None,
1651
+ innodb_log_buffer_size: typing.Optional[jsii.Number] = None,
1652
+ innodb_online_alter_log_max_size: typing.Optional[jsii.Number] = None,
1653
+ innodb_print_all_deadlocks: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1654
+ innodb_read_io_threads: typing.Optional[jsii.Number] = None,
1655
+ innodb_rollback_on_timeout: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1656
+ innodb_thread_concurrency: typing.Optional[jsii.Number] = None,
1657
+ innodb_write_io_threads: typing.Optional[jsii.Number] = None,
1658
+ interactive_timeout: typing.Optional[jsii.Number] = None,
1659
+ internal_tmp_mem_storage_engine: typing.Optional[builtins.str] = None,
1660
+ ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
1661
+ log_output: typing.Optional[builtins.str] = None,
1662
+ long_query_time: typing.Optional[jsii.Number] = None,
1663
+ max_allowed_packet: typing.Optional[jsii.Number] = None,
1664
+ max_heap_table_size: typing.Optional[jsii.Number] = None,
1665
+ migration: typing.Optional[typing.Union["ManagedDatabaseMysqlPropertiesMigration", typing.Dict[builtins.str, typing.Any]]] = None,
1666
+ mysql_incremental_backup: typing.Optional[typing.Union["ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup", typing.Dict[builtins.str, typing.Any]]] = None,
1667
+ net_buffer_length: typing.Optional[jsii.Number] = None,
1668
+ net_read_timeout: typing.Optional[jsii.Number] = None,
1669
+ net_write_timeout: typing.Optional[jsii.Number] = None,
1670
+ public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1671
+ service_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1672
+ slow_query_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1673
+ sort_buffer_size: typing.Optional[jsii.Number] = None,
1674
+ sql_mode: typing.Optional[builtins.str] = None,
1675
+ sql_require_primary_key: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
1676
+ tmp_table_size: typing.Optional[jsii.Number] = None,
1677
+ version: typing.Optional[builtins.str] = None,
1678
+ wait_timeout: typing.Optional[jsii.Number] = None,
1679
+ ) -> None:
1680
+ '''
1681
+ :param admin_password: Custom password for admin user. Defaults to random string. This must be set only when a new service is being created. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_password ManagedDatabaseMysql#admin_password}
1682
+ :param admin_username: Custom username for admin user. This must be set only when a new service is being created. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_username ManagedDatabaseMysql#admin_username}
1683
+ :param automatic_utility_network_ip_filter: Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#automatic_utility_network_ip_filter ManagedDatabaseMysql#automatic_utility_network_ip_filter}
1684
+ :param backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_hour ManagedDatabaseMysql#backup_hour}
1685
+ :param backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_minute ManagedDatabaseMysql#backup_minute}
1686
+ :param binlog_retention_period: The minimum amount of time in seconds to keep binlog entries before deletion. This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#binlog_retention_period ManagedDatabaseMysql#binlog_retention_period}
1687
+ :param connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#connect_timeout ManagedDatabaseMysql#connect_timeout}
1688
+ :param default_time_zone: Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#default_time_zone ManagedDatabaseMysql#default_time_zone}
1689
+ :param group_concat_max_len: The maximum permitted result length in bytes for the GROUP_CONCAT() function. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#group_concat_max_len ManagedDatabaseMysql#group_concat_max_len}
1690
+ :param information_schema_stats_expiry: The time, in seconds, before cached statistics expire. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#information_schema_stats_expiry ManagedDatabaseMysql#information_schema_stats_expiry}
1691
+ :param innodb_change_buffer_max_size: Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_change_buffer_max_size ManagedDatabaseMysql#innodb_change_buffer_max_size}
1692
+ :param innodb_flush_neighbors: Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_flush_neighbors ManagedDatabaseMysql#innodb_flush_neighbors}
1693
+ :param innodb_ft_min_token_size: Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_min_token_size ManagedDatabaseMysql#innodb_ft_min_token_size}
1694
+ :param innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_server_stopword_table ManagedDatabaseMysql#innodb_ft_server_stopword_table}
1695
+ :param innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_lock_wait_timeout ManagedDatabaseMysql#innodb_lock_wait_timeout}
1696
+ :param innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_log_buffer_size ManagedDatabaseMysql#innodb_log_buffer_size}
1697
+ :param innodb_online_alter_log_max_size: The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_online_alter_log_max_size ManagedDatabaseMysql#innodb_online_alter_log_max_size}
1698
+ :param innodb_print_all_deadlocks: When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_print_all_deadlocks ManagedDatabaseMysql#innodb_print_all_deadlocks}
1699
+ :param innodb_read_io_threads: The number of I/O threads for read operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_read_io_threads ManagedDatabaseMysql#innodb_read_io_threads}
1700
+ :param innodb_rollback_on_timeout: When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_rollback_on_timeout ManagedDatabaseMysql#innodb_rollback_on_timeout}
1701
+ :param innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_thread_concurrency ManagedDatabaseMysql#innodb_thread_concurrency}
1702
+ :param innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_write_io_threads ManagedDatabaseMysql#innodb_write_io_threads}
1703
+ :param interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#interactive_timeout ManagedDatabaseMysql#interactive_timeout}
1704
+ :param internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#internal_tmp_mem_storage_engine ManagedDatabaseMysql#internal_tmp_mem_storage_engine}
1705
+ :param ip_filter: IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ip_filter ManagedDatabaseMysql#ip_filter}
1706
+ :param log_output: The slow log output destination when slow_query_log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#log_output ManagedDatabaseMysql#log_output}
1707
+ :param long_query_time: The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#long_query_time ManagedDatabaseMysql#long_query_time}
1708
+ :param max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_allowed_packet ManagedDatabaseMysql#max_allowed_packet}
1709
+ :param max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_heap_table_size ManagedDatabaseMysql#max_heap_table_size}
1710
+ :param migration: migration block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#migration ManagedDatabaseMysql#migration}
1711
+ :param mysql_incremental_backup: mysql_incremental_backup block. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#mysql_incremental_backup ManagedDatabaseMysql#mysql_incremental_backup}
1712
+ :param net_buffer_length: Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_buffer_length ManagedDatabaseMysql#net_buffer_length}
1713
+ :param net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_read_timeout ManagedDatabaseMysql#net_read_timeout}
1714
+ :param net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_write_timeout ManagedDatabaseMysql#net_write_timeout}
1715
+ :param public_access: Public Access. Allow access to the service from the public Internet. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#public_access ManagedDatabaseMysql#public_access}
1716
+ :param service_log: Service logging. Store logs for the service so that they are available in the HTTP API and console. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#service_log ManagedDatabaseMysql#service_log}
1717
+ :param slow_query_log: Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#slow_query_log ManagedDatabaseMysql#slow_query_log}
1718
+ :param sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sort_buffer_size ManagedDatabaseMysql#sort_buffer_size}
1719
+ :param sql_mode: Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_mode ManagedDatabaseMysql#sql_mode}
1720
+ :param sql_require_primary_key: Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_require_primary_key ManagedDatabaseMysql#sql_require_primary_key}
1721
+ :param tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#tmp_table_size ManagedDatabaseMysql#tmp_table_size}
1722
+ :param version: MySQL major version. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#version ManagedDatabaseMysql#version}
1723
+ :param wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#wait_timeout ManagedDatabaseMysql#wait_timeout}
1724
+ '''
1725
+ if isinstance(migration, dict):
1726
+ migration = ManagedDatabaseMysqlPropertiesMigration(**migration)
1727
+ if isinstance(mysql_incremental_backup, dict):
1728
+ mysql_incremental_backup = ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup(**mysql_incremental_backup)
1729
+ if __debug__:
1730
+ type_hints = typing.get_type_hints(_typecheckingstub__ce2580325d4e3944249fb431ec4736f99b4a41b6ee968fc06ae03aecf4930601)
1731
+ check_type(argname="argument admin_password", value=admin_password, expected_type=type_hints["admin_password"])
1732
+ check_type(argname="argument admin_username", value=admin_username, expected_type=type_hints["admin_username"])
1733
+ check_type(argname="argument automatic_utility_network_ip_filter", value=automatic_utility_network_ip_filter, expected_type=type_hints["automatic_utility_network_ip_filter"])
1734
+ check_type(argname="argument backup_hour", value=backup_hour, expected_type=type_hints["backup_hour"])
1735
+ check_type(argname="argument backup_minute", value=backup_minute, expected_type=type_hints["backup_minute"])
1736
+ check_type(argname="argument binlog_retention_period", value=binlog_retention_period, expected_type=type_hints["binlog_retention_period"])
1737
+ check_type(argname="argument connect_timeout", value=connect_timeout, expected_type=type_hints["connect_timeout"])
1738
+ check_type(argname="argument default_time_zone", value=default_time_zone, expected_type=type_hints["default_time_zone"])
1739
+ check_type(argname="argument group_concat_max_len", value=group_concat_max_len, expected_type=type_hints["group_concat_max_len"])
1740
+ check_type(argname="argument information_schema_stats_expiry", value=information_schema_stats_expiry, expected_type=type_hints["information_schema_stats_expiry"])
1741
+ check_type(argname="argument innodb_change_buffer_max_size", value=innodb_change_buffer_max_size, expected_type=type_hints["innodb_change_buffer_max_size"])
1742
+ check_type(argname="argument innodb_flush_neighbors", value=innodb_flush_neighbors, expected_type=type_hints["innodb_flush_neighbors"])
1743
+ check_type(argname="argument innodb_ft_min_token_size", value=innodb_ft_min_token_size, expected_type=type_hints["innodb_ft_min_token_size"])
1744
+ check_type(argname="argument innodb_ft_server_stopword_table", value=innodb_ft_server_stopword_table, expected_type=type_hints["innodb_ft_server_stopword_table"])
1745
+ check_type(argname="argument innodb_lock_wait_timeout", value=innodb_lock_wait_timeout, expected_type=type_hints["innodb_lock_wait_timeout"])
1746
+ check_type(argname="argument innodb_log_buffer_size", value=innodb_log_buffer_size, expected_type=type_hints["innodb_log_buffer_size"])
1747
+ check_type(argname="argument innodb_online_alter_log_max_size", value=innodb_online_alter_log_max_size, expected_type=type_hints["innodb_online_alter_log_max_size"])
1748
+ check_type(argname="argument innodb_print_all_deadlocks", value=innodb_print_all_deadlocks, expected_type=type_hints["innodb_print_all_deadlocks"])
1749
+ check_type(argname="argument innodb_read_io_threads", value=innodb_read_io_threads, expected_type=type_hints["innodb_read_io_threads"])
1750
+ check_type(argname="argument innodb_rollback_on_timeout", value=innodb_rollback_on_timeout, expected_type=type_hints["innodb_rollback_on_timeout"])
1751
+ check_type(argname="argument innodb_thread_concurrency", value=innodb_thread_concurrency, expected_type=type_hints["innodb_thread_concurrency"])
1752
+ check_type(argname="argument innodb_write_io_threads", value=innodb_write_io_threads, expected_type=type_hints["innodb_write_io_threads"])
1753
+ check_type(argname="argument interactive_timeout", value=interactive_timeout, expected_type=type_hints["interactive_timeout"])
1754
+ check_type(argname="argument internal_tmp_mem_storage_engine", value=internal_tmp_mem_storage_engine, expected_type=type_hints["internal_tmp_mem_storage_engine"])
1755
+ check_type(argname="argument ip_filter", value=ip_filter, expected_type=type_hints["ip_filter"])
1756
+ check_type(argname="argument log_output", value=log_output, expected_type=type_hints["log_output"])
1757
+ check_type(argname="argument long_query_time", value=long_query_time, expected_type=type_hints["long_query_time"])
1758
+ check_type(argname="argument max_allowed_packet", value=max_allowed_packet, expected_type=type_hints["max_allowed_packet"])
1759
+ check_type(argname="argument max_heap_table_size", value=max_heap_table_size, expected_type=type_hints["max_heap_table_size"])
1760
+ check_type(argname="argument migration", value=migration, expected_type=type_hints["migration"])
1761
+ check_type(argname="argument mysql_incremental_backup", value=mysql_incremental_backup, expected_type=type_hints["mysql_incremental_backup"])
1762
+ check_type(argname="argument net_buffer_length", value=net_buffer_length, expected_type=type_hints["net_buffer_length"])
1763
+ check_type(argname="argument net_read_timeout", value=net_read_timeout, expected_type=type_hints["net_read_timeout"])
1764
+ check_type(argname="argument net_write_timeout", value=net_write_timeout, expected_type=type_hints["net_write_timeout"])
1765
+ check_type(argname="argument public_access", value=public_access, expected_type=type_hints["public_access"])
1766
+ check_type(argname="argument service_log", value=service_log, expected_type=type_hints["service_log"])
1767
+ check_type(argname="argument slow_query_log", value=slow_query_log, expected_type=type_hints["slow_query_log"])
1768
+ check_type(argname="argument sort_buffer_size", value=sort_buffer_size, expected_type=type_hints["sort_buffer_size"])
1769
+ check_type(argname="argument sql_mode", value=sql_mode, expected_type=type_hints["sql_mode"])
1770
+ check_type(argname="argument sql_require_primary_key", value=sql_require_primary_key, expected_type=type_hints["sql_require_primary_key"])
1771
+ check_type(argname="argument tmp_table_size", value=tmp_table_size, expected_type=type_hints["tmp_table_size"])
1772
+ check_type(argname="argument version", value=version, expected_type=type_hints["version"])
1773
+ check_type(argname="argument wait_timeout", value=wait_timeout, expected_type=type_hints["wait_timeout"])
1774
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
1775
+ if admin_password is not None:
1776
+ self._values["admin_password"] = admin_password
1777
+ if admin_username is not None:
1778
+ self._values["admin_username"] = admin_username
1779
+ if automatic_utility_network_ip_filter is not None:
1780
+ self._values["automatic_utility_network_ip_filter"] = automatic_utility_network_ip_filter
1781
+ if backup_hour is not None:
1782
+ self._values["backup_hour"] = backup_hour
1783
+ if backup_minute is not None:
1784
+ self._values["backup_minute"] = backup_minute
1785
+ if binlog_retention_period is not None:
1786
+ self._values["binlog_retention_period"] = binlog_retention_period
1787
+ if connect_timeout is not None:
1788
+ self._values["connect_timeout"] = connect_timeout
1789
+ if default_time_zone is not None:
1790
+ self._values["default_time_zone"] = default_time_zone
1791
+ if group_concat_max_len is not None:
1792
+ self._values["group_concat_max_len"] = group_concat_max_len
1793
+ if information_schema_stats_expiry is not None:
1794
+ self._values["information_schema_stats_expiry"] = information_schema_stats_expiry
1795
+ if innodb_change_buffer_max_size is not None:
1796
+ self._values["innodb_change_buffer_max_size"] = innodb_change_buffer_max_size
1797
+ if innodb_flush_neighbors is not None:
1798
+ self._values["innodb_flush_neighbors"] = innodb_flush_neighbors
1799
+ if innodb_ft_min_token_size is not None:
1800
+ self._values["innodb_ft_min_token_size"] = innodb_ft_min_token_size
1801
+ if innodb_ft_server_stopword_table is not None:
1802
+ self._values["innodb_ft_server_stopword_table"] = innodb_ft_server_stopword_table
1803
+ if innodb_lock_wait_timeout is not None:
1804
+ self._values["innodb_lock_wait_timeout"] = innodb_lock_wait_timeout
1805
+ if innodb_log_buffer_size is not None:
1806
+ self._values["innodb_log_buffer_size"] = innodb_log_buffer_size
1807
+ if innodb_online_alter_log_max_size is not None:
1808
+ self._values["innodb_online_alter_log_max_size"] = innodb_online_alter_log_max_size
1809
+ if innodb_print_all_deadlocks is not None:
1810
+ self._values["innodb_print_all_deadlocks"] = innodb_print_all_deadlocks
1811
+ if innodb_read_io_threads is not None:
1812
+ self._values["innodb_read_io_threads"] = innodb_read_io_threads
1813
+ if innodb_rollback_on_timeout is not None:
1814
+ self._values["innodb_rollback_on_timeout"] = innodb_rollback_on_timeout
1815
+ if innodb_thread_concurrency is not None:
1816
+ self._values["innodb_thread_concurrency"] = innodb_thread_concurrency
1817
+ if innodb_write_io_threads is not None:
1818
+ self._values["innodb_write_io_threads"] = innodb_write_io_threads
1819
+ if interactive_timeout is not None:
1820
+ self._values["interactive_timeout"] = interactive_timeout
1821
+ if internal_tmp_mem_storage_engine is not None:
1822
+ self._values["internal_tmp_mem_storage_engine"] = internal_tmp_mem_storage_engine
1823
+ if ip_filter is not None:
1824
+ self._values["ip_filter"] = ip_filter
1825
+ if log_output is not None:
1826
+ self._values["log_output"] = log_output
1827
+ if long_query_time is not None:
1828
+ self._values["long_query_time"] = long_query_time
1829
+ if max_allowed_packet is not None:
1830
+ self._values["max_allowed_packet"] = max_allowed_packet
1831
+ if max_heap_table_size is not None:
1832
+ self._values["max_heap_table_size"] = max_heap_table_size
1833
+ if migration is not None:
1834
+ self._values["migration"] = migration
1835
+ if mysql_incremental_backup is not None:
1836
+ self._values["mysql_incremental_backup"] = mysql_incremental_backup
1837
+ if net_buffer_length is not None:
1838
+ self._values["net_buffer_length"] = net_buffer_length
1839
+ if net_read_timeout is not None:
1840
+ self._values["net_read_timeout"] = net_read_timeout
1841
+ if net_write_timeout is not None:
1842
+ self._values["net_write_timeout"] = net_write_timeout
1843
+ if public_access is not None:
1844
+ self._values["public_access"] = public_access
1845
+ if service_log is not None:
1846
+ self._values["service_log"] = service_log
1847
+ if slow_query_log is not None:
1848
+ self._values["slow_query_log"] = slow_query_log
1849
+ if sort_buffer_size is not None:
1850
+ self._values["sort_buffer_size"] = sort_buffer_size
1851
+ if sql_mode is not None:
1852
+ self._values["sql_mode"] = sql_mode
1853
+ if sql_require_primary_key is not None:
1854
+ self._values["sql_require_primary_key"] = sql_require_primary_key
1855
+ if tmp_table_size is not None:
1856
+ self._values["tmp_table_size"] = tmp_table_size
1857
+ if version is not None:
1858
+ self._values["version"] = version
1859
+ if wait_timeout is not None:
1860
+ self._values["wait_timeout"] = wait_timeout
1861
+
1862
+ @builtins.property
1863
+ def admin_password(self) -> typing.Optional[builtins.str]:
1864
+ '''Custom password for admin user.
1865
+
1866
+ Defaults to random string. This must be set only when a new service is being created.
1867
+
1868
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_password ManagedDatabaseMysql#admin_password}
1869
+ '''
1870
+ result = self._values.get("admin_password")
1871
+ return typing.cast(typing.Optional[builtins.str], result)
1872
+
1873
+ @builtins.property
1874
+ def admin_username(self) -> typing.Optional[builtins.str]:
1875
+ '''Custom username for admin user. This must be set only when a new service is being created.
1876
+
1877
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#admin_username ManagedDatabaseMysql#admin_username}
1878
+ '''
1879
+ result = self._values.get("admin_username")
1880
+ return typing.cast(typing.Optional[builtins.str], result)
1881
+
1882
+ @builtins.property
1883
+ def automatic_utility_network_ip_filter(
1884
+ self,
1885
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
1886
+ '''Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
1887
+
1888
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#automatic_utility_network_ip_filter ManagedDatabaseMysql#automatic_utility_network_ip_filter}
1889
+ '''
1890
+ result = self._values.get("automatic_utility_network_ip_filter")
1891
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
1892
+
1893
+ @builtins.property
1894
+ def backup_hour(self) -> typing.Optional[jsii.Number]:
1895
+ '''The hour of day (in UTC) when backup for the service is started.
1896
+
1897
+ New backup is only started if previous backup has already completed.
1898
+
1899
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_hour ManagedDatabaseMysql#backup_hour}
1900
+ '''
1901
+ result = self._values.get("backup_hour")
1902
+ return typing.cast(typing.Optional[jsii.Number], result)
1903
+
1904
+ @builtins.property
1905
+ def backup_minute(self) -> typing.Optional[jsii.Number]:
1906
+ '''The minute of an hour when backup for the service is started.
1907
+
1908
+ New backup is only started if previous backup has already completed.
1909
+
1910
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#backup_minute ManagedDatabaseMysql#backup_minute}
1911
+ '''
1912
+ result = self._values.get("backup_minute")
1913
+ return typing.cast(typing.Optional[jsii.Number], result)
1914
+
1915
+ @builtins.property
1916
+ def binlog_retention_period(self) -> typing.Optional[jsii.Number]:
1917
+ '''The minimum amount of time in seconds to keep binlog entries before deletion.
1918
+
1919
+ This may be extended for services that require binlog entries for longer than the default for example if using the MySQL Debezium Kafka connector.
1920
+
1921
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#binlog_retention_period ManagedDatabaseMysql#binlog_retention_period}
1922
+ '''
1923
+ result = self._values.get("binlog_retention_period")
1924
+ return typing.cast(typing.Optional[jsii.Number], result)
1925
+
1926
+ @builtins.property
1927
+ def connect_timeout(self) -> typing.Optional[jsii.Number]:
1928
+ '''The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake.
1929
+
1930
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#connect_timeout ManagedDatabaseMysql#connect_timeout}
1931
+ '''
1932
+ result = self._values.get("connect_timeout")
1933
+ return typing.cast(typing.Optional[jsii.Number], result)
1934
+
1935
+ @builtins.property
1936
+ def default_time_zone(self) -> typing.Optional[builtins.str]:
1937
+ '''Default server time zone as an offset from UTC (from -12:00 to +12:00), a time zone name, or 'SYSTEM' to use the MySQL server default.
1938
+
1939
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#default_time_zone ManagedDatabaseMysql#default_time_zone}
1940
+ '''
1941
+ result = self._values.get("default_time_zone")
1942
+ return typing.cast(typing.Optional[builtins.str], result)
1943
+
1944
+ @builtins.property
1945
+ def group_concat_max_len(self) -> typing.Optional[jsii.Number]:
1946
+ '''The maximum permitted result length in bytes for the GROUP_CONCAT() function.
1947
+
1948
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#group_concat_max_len ManagedDatabaseMysql#group_concat_max_len}
1949
+ '''
1950
+ result = self._values.get("group_concat_max_len")
1951
+ return typing.cast(typing.Optional[jsii.Number], result)
1952
+
1953
+ @builtins.property
1954
+ def information_schema_stats_expiry(self) -> typing.Optional[jsii.Number]:
1955
+ '''The time, in seconds, before cached statistics expire.
1956
+
1957
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#information_schema_stats_expiry ManagedDatabaseMysql#information_schema_stats_expiry}
1958
+ '''
1959
+ result = self._values.get("information_schema_stats_expiry")
1960
+ return typing.cast(typing.Optional[jsii.Number], result)
1961
+
1962
+ @builtins.property
1963
+ def innodb_change_buffer_max_size(self) -> typing.Optional[jsii.Number]:
1964
+ '''Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool.
1965
+
1966
+ Default is 25.
1967
+
1968
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_change_buffer_max_size ManagedDatabaseMysql#innodb_change_buffer_max_size}
1969
+ '''
1970
+ result = self._values.get("innodb_change_buffer_max_size")
1971
+ return typing.cast(typing.Optional[jsii.Number], result)
1972
+
1973
+ @builtins.property
1974
+ def innodb_flush_neighbors(self) -> typing.Optional[jsii.Number]:
1975
+ '''Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent (default is 1): 0 - dirty pages in the same extent are not flushed, 1 - flush contiguous dirty pages in the same extent, 2 - flush dirty pages in the same extent.
1976
+
1977
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_flush_neighbors ManagedDatabaseMysql#innodb_flush_neighbors}
1978
+ '''
1979
+ result = self._values.get("innodb_flush_neighbors")
1980
+ return typing.cast(typing.Optional[jsii.Number], result)
1981
+
1982
+ @builtins.property
1983
+ def innodb_ft_min_token_size(self) -> typing.Optional[jsii.Number]:
1984
+ '''Minimum length of words that are stored in an InnoDB FULLTEXT index.
1985
+
1986
+ Changing this parameter will lead to a restart of the MySQL service.
1987
+
1988
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_min_token_size ManagedDatabaseMysql#innodb_ft_min_token_size}
1989
+ '''
1990
+ result = self._values.get("innodb_ft_min_token_size")
1991
+ return typing.cast(typing.Optional[jsii.Number], result)
1992
+
1993
+ @builtins.property
1994
+ def innodb_ft_server_stopword_table(self) -> typing.Optional[builtins.str]:
1995
+ '''This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables.
1996
+
1997
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_ft_server_stopword_table ManagedDatabaseMysql#innodb_ft_server_stopword_table}
1998
+ '''
1999
+ result = self._values.get("innodb_ft_server_stopword_table")
2000
+ return typing.cast(typing.Optional[builtins.str], result)
2001
+
2002
+ @builtins.property
2003
+ def innodb_lock_wait_timeout(self) -> typing.Optional[jsii.Number]:
2004
+ '''The length of time in seconds an InnoDB transaction waits for a row lock before giving up.
2005
+
2006
+ Default is 120.
2007
+
2008
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_lock_wait_timeout ManagedDatabaseMysql#innodb_lock_wait_timeout}
2009
+ '''
2010
+ result = self._values.get("innodb_lock_wait_timeout")
2011
+ return typing.cast(typing.Optional[jsii.Number], result)
2012
+
2013
+ @builtins.property
2014
+ def innodb_log_buffer_size(self) -> typing.Optional[jsii.Number]:
2015
+ '''The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
2016
+
2017
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_log_buffer_size ManagedDatabaseMysql#innodb_log_buffer_size}
2018
+ '''
2019
+ result = self._values.get("innodb_log_buffer_size")
2020
+ return typing.cast(typing.Optional[jsii.Number], result)
2021
+
2022
+ @builtins.property
2023
+ def innodb_online_alter_log_max_size(self) -> typing.Optional[jsii.Number]:
2024
+ '''The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
2025
+
2026
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_online_alter_log_max_size ManagedDatabaseMysql#innodb_online_alter_log_max_size}
2027
+ '''
2028
+ result = self._values.get("innodb_online_alter_log_max_size")
2029
+ return typing.cast(typing.Optional[jsii.Number], result)
2030
+
2031
+ @builtins.property
2032
+ def innodb_print_all_deadlocks(
2033
+ self,
2034
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2035
+ '''When enabled, information about all deadlocks in InnoDB user transactions is recorded in the error log. Disabled by default.
2036
+
2037
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_print_all_deadlocks ManagedDatabaseMysql#innodb_print_all_deadlocks}
2038
+ '''
2039
+ result = self._values.get("innodb_print_all_deadlocks")
2040
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2041
+
2042
+ @builtins.property
2043
+ def innodb_read_io_threads(self) -> typing.Optional[jsii.Number]:
2044
+ '''The number of I/O threads for read operations in InnoDB.
2045
+
2046
+ Default is 4. Changing this parameter will lead to a restart of the MySQL service.
2047
+
2048
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_read_io_threads ManagedDatabaseMysql#innodb_read_io_threads}
2049
+ '''
2050
+ result = self._values.get("innodb_read_io_threads")
2051
+ return typing.cast(typing.Optional[jsii.Number], result)
2052
+
2053
+ @builtins.property
2054
+ def innodb_rollback_on_timeout(
2055
+ self,
2056
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2057
+ '''When enabled a transaction timeout causes InnoDB to abort and roll back the entire transaction.
2058
+
2059
+ Changing this parameter will lead to a restart of the MySQL service.
2060
+
2061
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_rollback_on_timeout ManagedDatabaseMysql#innodb_rollback_on_timeout}
2062
+ '''
2063
+ result = self._values.get("innodb_rollback_on_timeout")
2064
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2065
+
2066
+ @builtins.property
2067
+ def innodb_thread_concurrency(self) -> typing.Optional[jsii.Number]:
2068
+ '''Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
2069
+
2070
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_thread_concurrency ManagedDatabaseMysql#innodb_thread_concurrency}
2071
+ '''
2072
+ result = self._values.get("innodb_thread_concurrency")
2073
+ return typing.cast(typing.Optional[jsii.Number], result)
2074
+
2075
+ @builtins.property
2076
+ def innodb_write_io_threads(self) -> typing.Optional[jsii.Number]:
2077
+ '''The number of I/O threads for write operations in InnoDB.
2078
+
2079
+ Default is 4. Changing this parameter will lead to a restart of the MySQL service.
2080
+
2081
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#innodb_write_io_threads ManagedDatabaseMysql#innodb_write_io_threads}
2082
+ '''
2083
+ result = self._values.get("innodb_write_io_threads")
2084
+ return typing.cast(typing.Optional[jsii.Number], result)
2085
+
2086
+ @builtins.property
2087
+ def interactive_timeout(self) -> typing.Optional[jsii.Number]:
2088
+ '''The number of seconds the server waits for activity on an interactive connection before closing it.
2089
+
2090
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#interactive_timeout ManagedDatabaseMysql#interactive_timeout}
2091
+ '''
2092
+ result = self._values.get("interactive_timeout")
2093
+ return typing.cast(typing.Optional[jsii.Number], result)
2094
+
2095
+ @builtins.property
2096
+ def internal_tmp_mem_storage_engine(self) -> typing.Optional[builtins.str]:
2097
+ '''The storage engine for in-memory internal temporary tables.
2098
+
2099
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#internal_tmp_mem_storage_engine ManagedDatabaseMysql#internal_tmp_mem_storage_engine}
2100
+ '''
2101
+ result = self._values.get("internal_tmp_mem_storage_engine")
2102
+ return typing.cast(typing.Optional[builtins.str], result)
2103
+
2104
+ @builtins.property
2105
+ def ip_filter(self) -> typing.Optional[typing.List[builtins.str]]:
2106
+ '''IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
2107
+
2108
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ip_filter ManagedDatabaseMysql#ip_filter}
2109
+ '''
2110
+ result = self._values.get("ip_filter")
2111
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2112
+
2113
+ @builtins.property
2114
+ def log_output(self) -> typing.Optional[builtins.str]:
2115
+ '''The slow log output destination when slow_query_log is ON.
2116
+
2117
+ To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow_log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow_log table, choose TABLE. To silence slow logs, choose NONE.
2118
+
2119
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#log_output ManagedDatabaseMysql#log_output}
2120
+ '''
2121
+ result = self._values.get("log_output")
2122
+ return typing.cast(typing.Optional[builtins.str], result)
2123
+
2124
+ @builtins.property
2125
+ def long_query_time(self) -> typing.Optional[jsii.Number]:
2126
+ '''The slow_query_logs work as SQL statements that take more than long_query_time seconds to execute.
2127
+
2128
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#long_query_time ManagedDatabaseMysql#long_query_time}
2129
+ '''
2130
+ result = self._values.get("long_query_time")
2131
+ return typing.cast(typing.Optional[jsii.Number], result)
2132
+
2133
+ @builtins.property
2134
+ def max_allowed_packet(self) -> typing.Optional[jsii.Number]:
2135
+ '''Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
2136
+
2137
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_allowed_packet ManagedDatabaseMysql#max_allowed_packet}
2138
+ '''
2139
+ result = self._values.get("max_allowed_packet")
2140
+ return typing.cast(typing.Optional[jsii.Number], result)
2141
+
2142
+ @builtins.property
2143
+ def max_heap_table_size(self) -> typing.Optional[jsii.Number]:
2144
+ '''Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
2145
+
2146
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#max_heap_table_size ManagedDatabaseMysql#max_heap_table_size}
2147
+ '''
2148
+ result = self._values.get("max_heap_table_size")
2149
+ return typing.cast(typing.Optional[jsii.Number], result)
2150
+
2151
+ @builtins.property
2152
+ def migration(self) -> typing.Optional["ManagedDatabaseMysqlPropertiesMigration"]:
2153
+ '''migration block.
2154
+
2155
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#migration ManagedDatabaseMysql#migration}
2156
+ '''
2157
+ result = self._values.get("migration")
2158
+ return typing.cast(typing.Optional["ManagedDatabaseMysqlPropertiesMigration"], result)
2159
+
2160
+ @builtins.property
2161
+ def mysql_incremental_backup(
2162
+ self,
2163
+ ) -> typing.Optional["ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup"]:
2164
+ '''mysql_incremental_backup block.
2165
+
2166
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#mysql_incremental_backup ManagedDatabaseMysql#mysql_incremental_backup}
2167
+ '''
2168
+ result = self._values.get("mysql_incremental_backup")
2169
+ return typing.cast(typing.Optional["ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup"], result)
2170
+
2171
+ @builtins.property
2172
+ def net_buffer_length(self) -> typing.Optional[jsii.Number]:
2173
+ '''Start sizes of connection buffer and result buffer.
2174
+
2175
+ Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
2176
+
2177
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_buffer_length ManagedDatabaseMysql#net_buffer_length}
2178
+ '''
2179
+ result = self._values.get("net_buffer_length")
2180
+ return typing.cast(typing.Optional[jsii.Number], result)
2181
+
2182
+ @builtins.property
2183
+ def net_read_timeout(self) -> typing.Optional[jsii.Number]:
2184
+ '''The number of seconds to wait for more data from a connection before aborting the read.
2185
+
2186
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_read_timeout ManagedDatabaseMysql#net_read_timeout}
2187
+ '''
2188
+ result = self._values.get("net_read_timeout")
2189
+ return typing.cast(typing.Optional[jsii.Number], result)
2190
+
2191
+ @builtins.property
2192
+ def net_write_timeout(self) -> typing.Optional[jsii.Number]:
2193
+ '''The number of seconds to wait for a block to be written to a connection before aborting the write.
2194
+
2195
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#net_write_timeout ManagedDatabaseMysql#net_write_timeout}
2196
+ '''
2197
+ result = self._values.get("net_write_timeout")
2198
+ return typing.cast(typing.Optional[jsii.Number], result)
2199
+
2200
+ @builtins.property
2201
+ def public_access(
2202
+ self,
2203
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2204
+ '''Public Access. Allow access to the service from the public Internet.
2205
+
2206
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#public_access ManagedDatabaseMysql#public_access}
2207
+ '''
2208
+ result = self._values.get("public_access")
2209
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2210
+
2211
+ @builtins.property
2212
+ def service_log(
2213
+ self,
2214
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2215
+ '''Service logging. Store logs for the service so that they are available in the HTTP API and console.
2216
+
2217
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#service_log ManagedDatabaseMysql#service_log}
2218
+ '''
2219
+ result = self._values.get("service_log")
2220
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2221
+
2222
+ @builtins.property
2223
+ def slow_query_log(
2224
+ self,
2225
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2226
+ '''Slow query log enables capturing of slow queries. Setting slow_query_log to false also truncates the mysql.slow_log table.
2227
+
2228
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#slow_query_log ManagedDatabaseMysql#slow_query_log}
2229
+ '''
2230
+ result = self._values.get("slow_query_log")
2231
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2232
+
2233
+ @builtins.property
2234
+ def sort_buffer_size(self) -> typing.Optional[jsii.Number]:
2235
+ '''Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
2236
+
2237
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sort_buffer_size ManagedDatabaseMysql#sort_buffer_size}
2238
+ '''
2239
+ result = self._values.get("sort_buffer_size")
2240
+ return typing.cast(typing.Optional[jsii.Number], result)
2241
+
2242
+ @builtins.property
2243
+ def sql_mode(self) -> typing.Optional[builtins.str]:
2244
+ '''Global SQL mode.
2245
+
2246
+ Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
2247
+
2248
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_mode ManagedDatabaseMysql#sql_mode}
2249
+ '''
2250
+ result = self._values.get("sql_mode")
2251
+ return typing.cast(typing.Optional[builtins.str], result)
2252
+
2253
+ @builtins.property
2254
+ def sql_require_primary_key(
2255
+ self,
2256
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2257
+ '''Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing.
2258
+
2259
+ It is recommended to always have primary keys because various functionality may break if any large table is missing them.
2260
+
2261
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#sql_require_primary_key ManagedDatabaseMysql#sql_require_primary_key}
2262
+ '''
2263
+ result = self._values.get("sql_require_primary_key")
2264
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2265
+
2266
+ @builtins.property
2267
+ def tmp_table_size(self) -> typing.Optional[jsii.Number]:
2268
+ '''Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
2269
+
2270
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#tmp_table_size ManagedDatabaseMysql#tmp_table_size}
2271
+ '''
2272
+ result = self._values.get("tmp_table_size")
2273
+ return typing.cast(typing.Optional[jsii.Number], result)
2274
+
2275
+ @builtins.property
2276
+ def version(self) -> typing.Optional[builtins.str]:
2277
+ '''MySQL major version.
2278
+
2279
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#version ManagedDatabaseMysql#version}
2280
+ '''
2281
+ result = self._values.get("version")
2282
+ return typing.cast(typing.Optional[builtins.str], result)
2283
+
2284
+ @builtins.property
2285
+ def wait_timeout(self) -> typing.Optional[jsii.Number]:
2286
+ '''The number of seconds the server waits for activity on a noninteractive connection before closing it.
2287
+
2288
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#wait_timeout ManagedDatabaseMysql#wait_timeout}
2289
+ '''
2290
+ result = self._values.get("wait_timeout")
2291
+ return typing.cast(typing.Optional[jsii.Number], result)
2292
+
2293
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2294
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2295
+
2296
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2297
+ return not (rhs == self)
2298
+
2299
+ def __repr__(self) -> str:
2300
+ return "ManagedDatabaseMysqlProperties(%s)" % ", ".join(
2301
+ k + "=" + repr(v) for k, v in self._values.items()
2302
+ )
2303
+
2304
+
2305
+ @jsii.data_type(
2306
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlPropertiesMigration",
2307
+ jsii_struct_bases=[],
2308
+ name_mapping={
2309
+ "dbname": "dbname",
2310
+ "host": "host",
2311
+ "ignore_dbs": "ignoreDbs",
2312
+ "ignore_roles": "ignoreRoles",
2313
+ "method": "method",
2314
+ "password": "password",
2315
+ "port": "port",
2316
+ "ssl": "ssl",
2317
+ "username": "username",
2318
+ },
2319
+ )
2320
+ class ManagedDatabaseMysqlPropertiesMigration:
2321
+ def __init__(
2322
+ self,
2323
+ *,
2324
+ dbname: typing.Optional[builtins.str] = None,
2325
+ host: typing.Optional[builtins.str] = None,
2326
+ ignore_dbs: typing.Optional[builtins.str] = None,
2327
+ ignore_roles: typing.Optional[builtins.str] = None,
2328
+ method: typing.Optional[builtins.str] = None,
2329
+ password: typing.Optional[builtins.str] = None,
2330
+ port: typing.Optional[jsii.Number] = None,
2331
+ ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
2332
+ username: typing.Optional[builtins.str] = None,
2333
+ ) -> None:
2334
+ '''
2335
+ :param dbname: Database name for bootstrapping the initial connection. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#dbname ManagedDatabaseMysql#dbname}
2336
+ :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/5.31.0/docs/resources/managed_database_mysql#host ManagedDatabaseMysql#host}
2337
+ :param ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_dbs ManagedDatabaseMysql#ignore_dbs}
2338
+ :param ignore_roles: Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_roles ManagedDatabaseMysql#ignore_roles}
2339
+ :param method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#method ManagedDatabaseMysql#method}
2340
+ :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/5.31.0/docs/resources/managed_database_mysql#password ManagedDatabaseMysql#password}
2341
+ :param port: Port number of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#port ManagedDatabaseMysql#port}
2342
+ :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/5.31.0/docs/resources/managed_database_mysql#ssl ManagedDatabaseMysql#ssl}
2343
+ :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/5.31.0/docs/resources/managed_database_mysql#username ManagedDatabaseMysql#username}
2344
+ '''
2345
+ if __debug__:
2346
+ type_hints = typing.get_type_hints(_typecheckingstub__ee5a974af6d286f0c9f5d3877bba799be0317b62fea7a2094229566a454f29ae)
2347
+ check_type(argname="argument dbname", value=dbname, expected_type=type_hints["dbname"])
2348
+ check_type(argname="argument host", value=host, expected_type=type_hints["host"])
2349
+ check_type(argname="argument ignore_dbs", value=ignore_dbs, expected_type=type_hints["ignore_dbs"])
2350
+ check_type(argname="argument ignore_roles", value=ignore_roles, expected_type=type_hints["ignore_roles"])
2351
+ check_type(argname="argument method", value=method, expected_type=type_hints["method"])
2352
+ check_type(argname="argument password", value=password, expected_type=type_hints["password"])
2353
+ check_type(argname="argument port", value=port, expected_type=type_hints["port"])
2354
+ check_type(argname="argument ssl", value=ssl, expected_type=type_hints["ssl"])
2355
+ check_type(argname="argument username", value=username, expected_type=type_hints["username"])
2356
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2357
+ if dbname is not None:
2358
+ self._values["dbname"] = dbname
2359
+ if host is not None:
2360
+ self._values["host"] = host
2361
+ if ignore_dbs is not None:
2362
+ self._values["ignore_dbs"] = ignore_dbs
2363
+ if ignore_roles is not None:
2364
+ self._values["ignore_roles"] = ignore_roles
2365
+ if method is not None:
2366
+ self._values["method"] = method
2367
+ if password is not None:
2368
+ self._values["password"] = password
2369
+ if port is not None:
2370
+ self._values["port"] = port
2371
+ if ssl is not None:
2372
+ self._values["ssl"] = ssl
2373
+ if username is not None:
2374
+ self._values["username"] = username
2375
+
2376
+ @builtins.property
2377
+ def dbname(self) -> typing.Optional[builtins.str]:
2378
+ '''Database name for bootstrapping the initial connection.
2379
+
2380
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#dbname ManagedDatabaseMysql#dbname}
2381
+ '''
2382
+ result = self._values.get("dbname")
2383
+ return typing.cast(typing.Optional[builtins.str], result)
2384
+
2385
+ @builtins.property
2386
+ def host(self) -> typing.Optional[builtins.str]:
2387
+ '''Hostname or IP address of the server where to migrate data from.
2388
+
2389
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#host ManagedDatabaseMysql#host}
2390
+ '''
2391
+ result = self._values.get("host")
2392
+ return typing.cast(typing.Optional[builtins.str], result)
2393
+
2394
+ @builtins.property
2395
+ def ignore_dbs(self) -> typing.Optional[builtins.str]:
2396
+ '''Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
2397
+
2398
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_dbs ManagedDatabaseMysql#ignore_dbs}
2399
+ '''
2400
+ result = self._values.get("ignore_dbs")
2401
+ return typing.cast(typing.Optional[builtins.str], result)
2402
+
2403
+ @builtins.property
2404
+ def ignore_roles(self) -> typing.Optional[builtins.str]:
2405
+ '''Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment).
2406
+
2407
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_roles ManagedDatabaseMysql#ignore_roles}
2408
+ '''
2409
+ result = self._values.get("ignore_roles")
2410
+ return typing.cast(typing.Optional[builtins.str], result)
2411
+
2412
+ @builtins.property
2413
+ def method(self) -> typing.Optional[builtins.str]:
2414
+ '''The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).
2415
+
2416
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#method ManagedDatabaseMysql#method}
2417
+ '''
2418
+ result = self._values.get("method")
2419
+ return typing.cast(typing.Optional[builtins.str], result)
2420
+
2421
+ @builtins.property
2422
+ def password(self) -> typing.Optional[builtins.str]:
2423
+ '''Password for authentication with the server where to migrate data from.
2424
+
2425
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#password ManagedDatabaseMysql#password}
2426
+ '''
2427
+ result = self._values.get("password")
2428
+ return typing.cast(typing.Optional[builtins.str], result)
2429
+
2430
+ @builtins.property
2431
+ def port(self) -> typing.Optional[jsii.Number]:
2432
+ '''Port number of the server where to migrate data from.
2433
+
2434
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#port ManagedDatabaseMysql#port}
2435
+ '''
2436
+ result = self._values.get("port")
2437
+ return typing.cast(typing.Optional[jsii.Number], result)
2438
+
2439
+ @builtins.property
2440
+ def ssl(
2441
+ self,
2442
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2443
+ '''The server where to migrate data from is secured with SSL.
2444
+
2445
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ssl ManagedDatabaseMysql#ssl}
2446
+ '''
2447
+ result = self._values.get("ssl")
2448
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2449
+
2450
+ @builtins.property
2451
+ def username(self) -> typing.Optional[builtins.str]:
2452
+ '''User name for authentication with the server where to migrate data from.
2453
+
2454
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#username ManagedDatabaseMysql#username}
2455
+ '''
2456
+ result = self._values.get("username")
2457
+ return typing.cast(typing.Optional[builtins.str], result)
2458
+
2459
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2460
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2461
+
2462
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2463
+ return not (rhs == self)
2464
+
2465
+ def __repr__(self) -> str:
2466
+ return "ManagedDatabaseMysqlPropertiesMigration(%s)" % ", ".join(
2467
+ k + "=" + repr(v) for k, v in self._values.items()
2468
+ )
2469
+
2470
+
2471
+ class ManagedDatabaseMysqlPropertiesMigrationOutputReference(
2472
+ _cdktf_9a9027ec.ComplexObject,
2473
+ metaclass=jsii.JSIIMeta,
2474
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlPropertiesMigrationOutputReference",
2475
+ ):
2476
+ def __init__(
2477
+ self,
2478
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
2479
+ terraform_attribute: builtins.str,
2480
+ ) -> None:
2481
+ '''
2482
+ :param terraform_resource: The parent resource.
2483
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
2484
+ '''
2485
+ if __debug__:
2486
+ type_hints = typing.get_type_hints(_typecheckingstub__6a01fc1b8e4fe6076b8d9bd954ccaba985925db529af16e76d918c88b96b4663)
2487
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
2488
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
2489
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
2490
+
2491
+ @jsii.member(jsii_name="resetDbname")
2492
+ def reset_dbname(self) -> None:
2493
+ return typing.cast(None, jsii.invoke(self, "resetDbname", []))
2494
+
2495
+ @jsii.member(jsii_name="resetHost")
2496
+ def reset_host(self) -> None:
2497
+ return typing.cast(None, jsii.invoke(self, "resetHost", []))
2498
+
2499
+ @jsii.member(jsii_name="resetIgnoreDbs")
2500
+ def reset_ignore_dbs(self) -> None:
2501
+ return typing.cast(None, jsii.invoke(self, "resetIgnoreDbs", []))
2502
+
2503
+ @jsii.member(jsii_name="resetIgnoreRoles")
2504
+ def reset_ignore_roles(self) -> None:
2505
+ return typing.cast(None, jsii.invoke(self, "resetIgnoreRoles", []))
2506
+
2507
+ @jsii.member(jsii_name="resetMethod")
2508
+ def reset_method(self) -> None:
2509
+ return typing.cast(None, jsii.invoke(self, "resetMethod", []))
2510
+
2511
+ @jsii.member(jsii_name="resetPassword")
2512
+ def reset_password(self) -> None:
2513
+ return typing.cast(None, jsii.invoke(self, "resetPassword", []))
2514
+
2515
+ @jsii.member(jsii_name="resetPort")
2516
+ def reset_port(self) -> None:
2517
+ return typing.cast(None, jsii.invoke(self, "resetPort", []))
2518
+
2519
+ @jsii.member(jsii_name="resetSsl")
2520
+ def reset_ssl(self) -> None:
2521
+ return typing.cast(None, jsii.invoke(self, "resetSsl", []))
2522
+
2523
+ @jsii.member(jsii_name="resetUsername")
2524
+ def reset_username(self) -> None:
2525
+ return typing.cast(None, jsii.invoke(self, "resetUsername", []))
2526
+
2527
+ @builtins.property
2528
+ @jsii.member(jsii_name="dbnameInput")
2529
+ def dbname_input(self) -> typing.Optional[builtins.str]:
2530
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "dbnameInput"))
2531
+
2532
+ @builtins.property
2533
+ @jsii.member(jsii_name="hostInput")
2534
+ def host_input(self) -> typing.Optional[builtins.str]:
2535
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "hostInput"))
2536
+
2537
+ @builtins.property
2538
+ @jsii.member(jsii_name="ignoreDbsInput")
2539
+ def ignore_dbs_input(self) -> typing.Optional[builtins.str]:
2540
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ignoreDbsInput"))
2541
+
2542
+ @builtins.property
2543
+ @jsii.member(jsii_name="ignoreRolesInput")
2544
+ def ignore_roles_input(self) -> typing.Optional[builtins.str]:
2545
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ignoreRolesInput"))
2546
+
2547
+ @builtins.property
2548
+ @jsii.member(jsii_name="methodInput")
2549
+ def method_input(self) -> typing.Optional[builtins.str]:
2550
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "methodInput"))
2551
+
2552
+ @builtins.property
2553
+ @jsii.member(jsii_name="passwordInput")
2554
+ def password_input(self) -> typing.Optional[builtins.str]:
2555
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "passwordInput"))
2556
+
2557
+ @builtins.property
2558
+ @jsii.member(jsii_name="portInput")
2559
+ def port_input(self) -> typing.Optional[jsii.Number]:
2560
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "portInput"))
2561
+
2562
+ @builtins.property
2563
+ @jsii.member(jsii_name="sslInput")
2564
+ def ssl_input(
2565
+ self,
2566
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2567
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "sslInput"))
2568
+
2569
+ @builtins.property
2570
+ @jsii.member(jsii_name="usernameInput")
2571
+ def username_input(self) -> typing.Optional[builtins.str]:
2572
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "usernameInput"))
2573
+
2574
+ @builtins.property
2575
+ @jsii.member(jsii_name="dbname")
2576
+ def dbname(self) -> builtins.str:
2577
+ return typing.cast(builtins.str, jsii.get(self, "dbname"))
2578
+
2579
+ @dbname.setter
2580
+ def dbname(self, value: builtins.str) -> None:
2581
+ if __debug__:
2582
+ type_hints = typing.get_type_hints(_typecheckingstub__ed74acd004a8935099f52967944968cb588e434802de042e76563b2d3662a147)
2583
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2584
+ jsii.set(self, "dbname", value) # pyright: ignore[reportArgumentType]
2585
+
2586
+ @builtins.property
2587
+ @jsii.member(jsii_name="host")
2588
+ def host(self) -> builtins.str:
2589
+ return typing.cast(builtins.str, jsii.get(self, "host"))
2590
+
2591
+ @host.setter
2592
+ def host(self, value: builtins.str) -> None:
2593
+ if __debug__:
2594
+ type_hints = typing.get_type_hints(_typecheckingstub__01962d74812e4792ed317a7081fc6b520bffc4c243c3b97aba89b51005d035a4)
2595
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2596
+ jsii.set(self, "host", value) # pyright: ignore[reportArgumentType]
2597
+
2598
+ @builtins.property
2599
+ @jsii.member(jsii_name="ignoreDbs")
2600
+ def ignore_dbs(self) -> builtins.str:
2601
+ return typing.cast(builtins.str, jsii.get(self, "ignoreDbs"))
2602
+
2603
+ @ignore_dbs.setter
2604
+ def ignore_dbs(self, value: builtins.str) -> None:
2605
+ if __debug__:
2606
+ type_hints = typing.get_type_hints(_typecheckingstub__8317a24c10ef2071420b92dfe3c216bab96b5b38b359c59911d72c6053b5b60c)
2607
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2608
+ jsii.set(self, "ignoreDbs", value) # pyright: ignore[reportArgumentType]
2609
+
2610
+ @builtins.property
2611
+ @jsii.member(jsii_name="ignoreRoles")
2612
+ def ignore_roles(self) -> builtins.str:
2613
+ return typing.cast(builtins.str, jsii.get(self, "ignoreRoles"))
2614
+
2615
+ @ignore_roles.setter
2616
+ def ignore_roles(self, value: builtins.str) -> None:
2617
+ if __debug__:
2618
+ type_hints = typing.get_type_hints(_typecheckingstub__83e243984a5d4e4adcc47a7f5ca7da671145c65dfe5b14eccf70edc058f064ab)
2619
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2620
+ jsii.set(self, "ignoreRoles", value) # pyright: ignore[reportArgumentType]
2621
+
2622
+ @builtins.property
2623
+ @jsii.member(jsii_name="method")
2624
+ def method(self) -> builtins.str:
2625
+ return typing.cast(builtins.str, jsii.get(self, "method"))
2626
+
2627
+ @method.setter
2628
+ def method(self, value: builtins.str) -> None:
2629
+ if __debug__:
2630
+ type_hints = typing.get_type_hints(_typecheckingstub__f26b3e2a45bc82a02636d9a7680ead48319e322e80c13fd16d7903680e47f553)
2631
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2632
+ jsii.set(self, "method", value) # pyright: ignore[reportArgumentType]
2633
+
2634
+ @builtins.property
2635
+ @jsii.member(jsii_name="password")
2636
+ def password(self) -> builtins.str:
2637
+ return typing.cast(builtins.str, jsii.get(self, "password"))
2638
+
2639
+ @password.setter
2640
+ def password(self, value: builtins.str) -> None:
2641
+ if __debug__:
2642
+ type_hints = typing.get_type_hints(_typecheckingstub__bd6b4044cd38e70ec4e0635fadb1f1ec5e57e12d13a8b2866cfb7a39398e99bb)
2643
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2644
+ jsii.set(self, "password", value) # pyright: ignore[reportArgumentType]
2645
+
2646
+ @builtins.property
2647
+ @jsii.member(jsii_name="port")
2648
+ def port(self) -> jsii.Number:
2649
+ return typing.cast(jsii.Number, jsii.get(self, "port"))
2650
+
2651
+ @port.setter
2652
+ def port(self, value: jsii.Number) -> None:
2653
+ if __debug__:
2654
+ type_hints = typing.get_type_hints(_typecheckingstub__e3b76b32ace200420e536521de4f6fa3bba38a583e70cee38558f93a74579bbf)
2655
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2656
+ jsii.set(self, "port", value) # pyright: ignore[reportArgumentType]
2657
+
2658
+ @builtins.property
2659
+ @jsii.member(jsii_name="ssl")
2660
+ def ssl(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
2661
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "ssl"))
2662
+
2663
+ @ssl.setter
2664
+ def ssl(
2665
+ self,
2666
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
2667
+ ) -> None:
2668
+ if __debug__:
2669
+ type_hints = typing.get_type_hints(_typecheckingstub__13b5262b5f856305124efe73b5fd349ba8e06aca56657419960a8b0a617e25cc)
2670
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2671
+ jsii.set(self, "ssl", value) # pyright: ignore[reportArgumentType]
2672
+
2673
+ @builtins.property
2674
+ @jsii.member(jsii_name="username")
2675
+ def username(self) -> builtins.str:
2676
+ return typing.cast(builtins.str, jsii.get(self, "username"))
2677
+
2678
+ @username.setter
2679
+ def username(self, value: builtins.str) -> None:
2680
+ if __debug__:
2681
+ type_hints = typing.get_type_hints(_typecheckingstub__fa2b1683b14f90dc010901dec71bf384b67aaa37568f2c9dd270e7fb8eca2230)
2682
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2683
+ jsii.set(self, "username", value) # pyright: ignore[reportArgumentType]
2684
+
2685
+ @builtins.property
2686
+ @jsii.member(jsii_name="internalValue")
2687
+ def internal_value(
2688
+ self,
2689
+ ) -> typing.Optional[ManagedDatabaseMysqlPropertiesMigration]:
2690
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlPropertiesMigration], jsii.get(self, "internalValue"))
2691
+
2692
+ @internal_value.setter
2693
+ def internal_value(
2694
+ self,
2695
+ value: typing.Optional[ManagedDatabaseMysqlPropertiesMigration],
2696
+ ) -> None:
2697
+ if __debug__:
2698
+ type_hints = typing.get_type_hints(_typecheckingstub__14ec505c37370540c64c79ea9b2bfc9828b39dfd6ffbaf4ac56000b8528d5cbd)
2699
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2700
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
2701
+
2702
+
2703
+ @jsii.data_type(
2704
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup",
2705
+ jsii_struct_bases=[],
2706
+ name_mapping={
2707
+ "enabled": "enabled",
2708
+ "full_backup_week_schedule": "fullBackupWeekSchedule",
2709
+ },
2710
+ )
2711
+ class ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup:
2712
+ def __init__(
2713
+ self,
2714
+ *,
2715
+ enabled: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
2716
+ full_backup_week_schedule: typing.Optional[builtins.str] = None,
2717
+ ) -> None:
2718
+ '''
2719
+ :param enabled: Enable incremental backups. Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#enabled ManagedDatabaseMysql#enabled}
2720
+ :param full_backup_week_schedule: Full backup week schedule. Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#full_backup_week_schedule ManagedDatabaseMysql#full_backup_week_schedule}
2721
+ '''
2722
+ if __debug__:
2723
+ type_hints = typing.get_type_hints(_typecheckingstub__1964e1dfe21845d236cd3d7cace81e77064622d963b8c0cd67bd1f44641d8232)
2724
+ check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
2725
+ check_type(argname="argument full_backup_week_schedule", value=full_backup_week_schedule, expected_type=type_hints["full_backup_week_schedule"])
2726
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2727
+ if enabled is not None:
2728
+ self._values["enabled"] = enabled
2729
+ if full_backup_week_schedule is not None:
2730
+ self._values["full_backup_week_schedule"] = full_backup_week_schedule
2731
+
2732
+ @builtins.property
2733
+ def enabled(
2734
+ self,
2735
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2736
+ '''Enable incremental backups.
2737
+
2738
+ Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
2739
+
2740
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#enabled ManagedDatabaseMysql#enabled}
2741
+ '''
2742
+ result = self._values.get("enabled")
2743
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], result)
2744
+
2745
+ @builtins.property
2746
+ def full_backup_week_schedule(self) -> typing.Optional[builtins.str]:
2747
+ '''Full backup week schedule.
2748
+
2749
+ Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun.
2750
+
2751
+ Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#full_backup_week_schedule ManagedDatabaseMysql#full_backup_week_schedule}
2752
+ '''
2753
+ result = self._values.get("full_backup_week_schedule")
2754
+ return typing.cast(typing.Optional[builtins.str], result)
2755
+
2756
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2757
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2758
+
2759
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2760
+ return not (rhs == self)
2761
+
2762
+ def __repr__(self) -> str:
2763
+ return "ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup(%s)" % ", ".join(
2764
+ k + "=" + repr(v) for k, v in self._values.items()
2765
+ )
2766
+
2767
+
2768
+ class ManagedDatabaseMysqlPropertiesMysqlIncrementalBackupOutputReference(
2769
+ _cdktf_9a9027ec.ComplexObject,
2770
+ metaclass=jsii.JSIIMeta,
2771
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlPropertiesMysqlIncrementalBackupOutputReference",
2772
+ ):
2773
+ def __init__(
2774
+ self,
2775
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
2776
+ terraform_attribute: builtins.str,
2777
+ ) -> None:
2778
+ '''
2779
+ :param terraform_resource: The parent resource.
2780
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
2781
+ '''
2782
+ if __debug__:
2783
+ type_hints = typing.get_type_hints(_typecheckingstub__fb845a6b5012c2b17a325a96ad64118ca2a3a1421e9e96b57cafc7d17b34f292)
2784
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
2785
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
2786
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
2787
+
2788
+ @jsii.member(jsii_name="resetEnabled")
2789
+ def reset_enabled(self) -> None:
2790
+ return typing.cast(None, jsii.invoke(self, "resetEnabled", []))
2791
+
2792
+ @jsii.member(jsii_name="resetFullBackupWeekSchedule")
2793
+ def reset_full_backup_week_schedule(self) -> None:
2794
+ return typing.cast(None, jsii.invoke(self, "resetFullBackupWeekSchedule", []))
2795
+
2796
+ @builtins.property
2797
+ @jsii.member(jsii_name="enabledInput")
2798
+ def enabled_input(
2799
+ self,
2800
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
2801
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "enabledInput"))
2802
+
2803
+ @builtins.property
2804
+ @jsii.member(jsii_name="fullBackupWeekScheduleInput")
2805
+ def full_backup_week_schedule_input(self) -> typing.Optional[builtins.str]:
2806
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "fullBackupWeekScheduleInput"))
2807
+
2808
+ @builtins.property
2809
+ @jsii.member(jsii_name="enabled")
2810
+ def enabled(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
2811
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "enabled"))
2812
+
2813
+ @enabled.setter
2814
+ def enabled(
2815
+ self,
2816
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
2817
+ ) -> None:
2818
+ if __debug__:
2819
+ type_hints = typing.get_type_hints(_typecheckingstub__4e00ca2cc46f9276d43329a202dba92fa69a8cab98988d3fa72c39ec0911feaf)
2820
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2821
+ jsii.set(self, "enabled", value) # pyright: ignore[reportArgumentType]
2822
+
2823
+ @builtins.property
2824
+ @jsii.member(jsii_name="fullBackupWeekSchedule")
2825
+ def full_backup_week_schedule(self) -> builtins.str:
2826
+ return typing.cast(builtins.str, jsii.get(self, "fullBackupWeekSchedule"))
2827
+
2828
+ @full_backup_week_schedule.setter
2829
+ def full_backup_week_schedule(self, value: builtins.str) -> None:
2830
+ if __debug__:
2831
+ type_hints = typing.get_type_hints(_typecheckingstub__38553b4e914ae923324afea74d0c621150923b235a44022144561c25951346cc)
2832
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2833
+ jsii.set(self, "fullBackupWeekSchedule", value) # pyright: ignore[reportArgumentType]
2834
+
2835
+ @builtins.property
2836
+ @jsii.member(jsii_name="internalValue")
2837
+ def internal_value(
2838
+ self,
2839
+ ) -> typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup]:
2840
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup], jsii.get(self, "internalValue"))
2841
+
2842
+ @internal_value.setter
2843
+ def internal_value(
2844
+ self,
2845
+ value: typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup],
2846
+ ) -> None:
2847
+ if __debug__:
2848
+ type_hints = typing.get_type_hints(_typecheckingstub__1b885de8733f78cdb8686c81eedaff62ae0a5632ea7e5c1b4383953b8359ff7c)
2849
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2850
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
2851
+
2852
+
2853
+ class ManagedDatabaseMysqlPropertiesOutputReference(
2854
+ _cdktf_9a9027ec.ComplexObject,
2855
+ metaclass=jsii.JSIIMeta,
2856
+ jsii_type="@cdktf/provider-upcloud.managedDatabaseMysql.ManagedDatabaseMysqlPropertiesOutputReference",
2857
+ ):
2858
+ def __init__(
2859
+ self,
2860
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
2861
+ terraform_attribute: builtins.str,
2862
+ ) -> None:
2863
+ '''
2864
+ :param terraform_resource: The parent resource.
2865
+ :param terraform_attribute: The attribute on the parent resource this class is referencing.
2866
+ '''
2867
+ if __debug__:
2868
+ type_hints = typing.get_type_hints(_typecheckingstub__4dd4ed80cb9fd34d7d226704675ed2775db5ea2ccb1b933269edb7e0acd9c4fd)
2869
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
2870
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
2871
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
2872
+
2873
+ @jsii.member(jsii_name="putMigration")
2874
+ def put_migration(
2875
+ self,
2876
+ *,
2877
+ dbname: typing.Optional[builtins.str] = None,
2878
+ host: typing.Optional[builtins.str] = None,
2879
+ ignore_dbs: typing.Optional[builtins.str] = None,
2880
+ ignore_roles: typing.Optional[builtins.str] = None,
2881
+ method: typing.Optional[builtins.str] = None,
2882
+ password: typing.Optional[builtins.str] = None,
2883
+ port: typing.Optional[jsii.Number] = None,
2884
+ ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
2885
+ username: typing.Optional[builtins.str] = None,
2886
+ ) -> None:
2887
+ '''
2888
+ :param dbname: Database name for bootstrapping the initial connection. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#dbname ManagedDatabaseMysql#dbname}
2889
+ :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/5.31.0/docs/resources/managed_database_mysql#host ManagedDatabaseMysql#host}
2890
+ :param ignore_dbs: Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_dbs ManagedDatabaseMysql#ignore_dbs}
2891
+ :param ignore_roles: Comma-separated list of database roles, which should be ignored during migration (supported by PostgreSQL only at the moment). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#ignore_roles ManagedDatabaseMysql#ignore_roles}
2892
+ :param method: The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types). Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#method ManagedDatabaseMysql#method}
2893
+ :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/5.31.0/docs/resources/managed_database_mysql#password ManagedDatabaseMysql#password}
2894
+ :param port: Port number of the server where to migrate data from. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#port ManagedDatabaseMysql#port}
2895
+ :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/5.31.0/docs/resources/managed_database_mysql#ssl ManagedDatabaseMysql#ssl}
2896
+ :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/5.31.0/docs/resources/managed_database_mysql#username ManagedDatabaseMysql#username}
2897
+ '''
2898
+ value = ManagedDatabaseMysqlPropertiesMigration(
2899
+ dbname=dbname,
2900
+ host=host,
2901
+ ignore_dbs=ignore_dbs,
2902
+ ignore_roles=ignore_roles,
2903
+ method=method,
2904
+ password=password,
2905
+ port=port,
2906
+ ssl=ssl,
2907
+ username=username,
2908
+ )
2909
+
2910
+ return typing.cast(None, jsii.invoke(self, "putMigration", [value]))
2911
+
2912
+ @jsii.member(jsii_name="putMysqlIncrementalBackup")
2913
+ def put_mysql_incremental_backup(
2914
+ self,
2915
+ *,
2916
+ enabled: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
2917
+ full_backup_week_schedule: typing.Optional[builtins.str] = None,
2918
+ ) -> None:
2919
+ '''
2920
+ :param enabled: Enable incremental backups. Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#enabled ManagedDatabaseMysql#enabled}
2921
+ :param full_backup_week_schedule: Full backup week schedule. Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.31.0/docs/resources/managed_database_mysql#full_backup_week_schedule ManagedDatabaseMysql#full_backup_week_schedule}
2922
+ '''
2923
+ value = ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup(
2924
+ enabled=enabled, full_backup_week_schedule=full_backup_week_schedule
2925
+ )
2926
+
2927
+ return typing.cast(None, jsii.invoke(self, "putMysqlIncrementalBackup", [value]))
2928
+
2929
+ @jsii.member(jsii_name="resetAdminPassword")
2930
+ def reset_admin_password(self) -> None:
2931
+ return typing.cast(None, jsii.invoke(self, "resetAdminPassword", []))
2932
+
2933
+ @jsii.member(jsii_name="resetAdminUsername")
2934
+ def reset_admin_username(self) -> None:
2935
+ return typing.cast(None, jsii.invoke(self, "resetAdminUsername", []))
2936
+
2937
+ @jsii.member(jsii_name="resetAutomaticUtilityNetworkIpFilter")
2938
+ def reset_automatic_utility_network_ip_filter(self) -> None:
2939
+ return typing.cast(None, jsii.invoke(self, "resetAutomaticUtilityNetworkIpFilter", []))
2940
+
2941
+ @jsii.member(jsii_name="resetBackupHour")
2942
+ def reset_backup_hour(self) -> None:
2943
+ return typing.cast(None, jsii.invoke(self, "resetBackupHour", []))
2944
+
2945
+ @jsii.member(jsii_name="resetBackupMinute")
2946
+ def reset_backup_minute(self) -> None:
2947
+ return typing.cast(None, jsii.invoke(self, "resetBackupMinute", []))
2948
+
2949
+ @jsii.member(jsii_name="resetBinlogRetentionPeriod")
2950
+ def reset_binlog_retention_period(self) -> None:
2951
+ return typing.cast(None, jsii.invoke(self, "resetBinlogRetentionPeriod", []))
2952
+
2953
+ @jsii.member(jsii_name="resetConnectTimeout")
2954
+ def reset_connect_timeout(self) -> None:
2955
+ return typing.cast(None, jsii.invoke(self, "resetConnectTimeout", []))
2956
+
2957
+ @jsii.member(jsii_name="resetDefaultTimeZone")
2958
+ def reset_default_time_zone(self) -> None:
2959
+ return typing.cast(None, jsii.invoke(self, "resetDefaultTimeZone", []))
2960
+
2961
+ @jsii.member(jsii_name="resetGroupConcatMaxLen")
2962
+ def reset_group_concat_max_len(self) -> None:
2963
+ return typing.cast(None, jsii.invoke(self, "resetGroupConcatMaxLen", []))
2964
+
2965
+ @jsii.member(jsii_name="resetInformationSchemaStatsExpiry")
2966
+ def reset_information_schema_stats_expiry(self) -> None:
2967
+ return typing.cast(None, jsii.invoke(self, "resetInformationSchemaStatsExpiry", []))
2968
+
2969
+ @jsii.member(jsii_name="resetInnodbChangeBufferMaxSize")
2970
+ def reset_innodb_change_buffer_max_size(self) -> None:
2971
+ return typing.cast(None, jsii.invoke(self, "resetInnodbChangeBufferMaxSize", []))
2972
+
2973
+ @jsii.member(jsii_name="resetInnodbFlushNeighbors")
2974
+ def reset_innodb_flush_neighbors(self) -> None:
2975
+ return typing.cast(None, jsii.invoke(self, "resetInnodbFlushNeighbors", []))
2976
+
2977
+ @jsii.member(jsii_name="resetInnodbFtMinTokenSize")
2978
+ def reset_innodb_ft_min_token_size(self) -> None:
2979
+ return typing.cast(None, jsii.invoke(self, "resetInnodbFtMinTokenSize", []))
2980
+
2981
+ @jsii.member(jsii_name="resetInnodbFtServerStopwordTable")
2982
+ def reset_innodb_ft_server_stopword_table(self) -> None:
2983
+ return typing.cast(None, jsii.invoke(self, "resetInnodbFtServerStopwordTable", []))
2984
+
2985
+ @jsii.member(jsii_name="resetInnodbLockWaitTimeout")
2986
+ def reset_innodb_lock_wait_timeout(self) -> None:
2987
+ return typing.cast(None, jsii.invoke(self, "resetInnodbLockWaitTimeout", []))
2988
+
2989
+ @jsii.member(jsii_name="resetInnodbLogBufferSize")
2990
+ def reset_innodb_log_buffer_size(self) -> None:
2991
+ return typing.cast(None, jsii.invoke(self, "resetInnodbLogBufferSize", []))
2992
+
2993
+ @jsii.member(jsii_name="resetInnodbOnlineAlterLogMaxSize")
2994
+ def reset_innodb_online_alter_log_max_size(self) -> None:
2995
+ return typing.cast(None, jsii.invoke(self, "resetInnodbOnlineAlterLogMaxSize", []))
2996
+
2997
+ @jsii.member(jsii_name="resetInnodbPrintAllDeadlocks")
2998
+ def reset_innodb_print_all_deadlocks(self) -> None:
2999
+ return typing.cast(None, jsii.invoke(self, "resetInnodbPrintAllDeadlocks", []))
3000
+
3001
+ @jsii.member(jsii_name="resetInnodbReadIoThreads")
3002
+ def reset_innodb_read_io_threads(self) -> None:
3003
+ return typing.cast(None, jsii.invoke(self, "resetInnodbReadIoThreads", []))
3004
+
3005
+ @jsii.member(jsii_name="resetInnodbRollbackOnTimeout")
3006
+ def reset_innodb_rollback_on_timeout(self) -> None:
3007
+ return typing.cast(None, jsii.invoke(self, "resetInnodbRollbackOnTimeout", []))
3008
+
3009
+ @jsii.member(jsii_name="resetInnodbThreadConcurrency")
3010
+ def reset_innodb_thread_concurrency(self) -> None:
3011
+ return typing.cast(None, jsii.invoke(self, "resetInnodbThreadConcurrency", []))
3012
+
3013
+ @jsii.member(jsii_name="resetInnodbWriteIoThreads")
3014
+ def reset_innodb_write_io_threads(self) -> None:
3015
+ return typing.cast(None, jsii.invoke(self, "resetInnodbWriteIoThreads", []))
3016
+
3017
+ @jsii.member(jsii_name="resetInteractiveTimeout")
3018
+ def reset_interactive_timeout(self) -> None:
3019
+ return typing.cast(None, jsii.invoke(self, "resetInteractiveTimeout", []))
3020
+
3021
+ @jsii.member(jsii_name="resetInternalTmpMemStorageEngine")
3022
+ def reset_internal_tmp_mem_storage_engine(self) -> None:
3023
+ return typing.cast(None, jsii.invoke(self, "resetInternalTmpMemStorageEngine", []))
3024
+
3025
+ @jsii.member(jsii_name="resetIpFilter")
3026
+ def reset_ip_filter(self) -> None:
3027
+ return typing.cast(None, jsii.invoke(self, "resetIpFilter", []))
3028
+
3029
+ @jsii.member(jsii_name="resetLogOutput")
3030
+ def reset_log_output(self) -> None:
3031
+ return typing.cast(None, jsii.invoke(self, "resetLogOutput", []))
3032
+
3033
+ @jsii.member(jsii_name="resetLongQueryTime")
3034
+ def reset_long_query_time(self) -> None:
3035
+ return typing.cast(None, jsii.invoke(self, "resetLongQueryTime", []))
3036
+
3037
+ @jsii.member(jsii_name="resetMaxAllowedPacket")
3038
+ def reset_max_allowed_packet(self) -> None:
3039
+ return typing.cast(None, jsii.invoke(self, "resetMaxAllowedPacket", []))
3040
+
3041
+ @jsii.member(jsii_name="resetMaxHeapTableSize")
3042
+ def reset_max_heap_table_size(self) -> None:
3043
+ return typing.cast(None, jsii.invoke(self, "resetMaxHeapTableSize", []))
3044
+
3045
+ @jsii.member(jsii_name="resetMigration")
3046
+ def reset_migration(self) -> None:
3047
+ return typing.cast(None, jsii.invoke(self, "resetMigration", []))
3048
+
3049
+ @jsii.member(jsii_name="resetMysqlIncrementalBackup")
3050
+ def reset_mysql_incremental_backup(self) -> None:
3051
+ return typing.cast(None, jsii.invoke(self, "resetMysqlIncrementalBackup", []))
3052
+
3053
+ @jsii.member(jsii_name="resetNetBufferLength")
3054
+ def reset_net_buffer_length(self) -> None:
3055
+ return typing.cast(None, jsii.invoke(self, "resetNetBufferLength", []))
3056
+
3057
+ @jsii.member(jsii_name="resetNetReadTimeout")
3058
+ def reset_net_read_timeout(self) -> None:
3059
+ return typing.cast(None, jsii.invoke(self, "resetNetReadTimeout", []))
3060
+
3061
+ @jsii.member(jsii_name="resetNetWriteTimeout")
3062
+ def reset_net_write_timeout(self) -> None:
3063
+ return typing.cast(None, jsii.invoke(self, "resetNetWriteTimeout", []))
3064
+
3065
+ @jsii.member(jsii_name="resetPublicAccess")
3066
+ def reset_public_access(self) -> None:
3067
+ return typing.cast(None, jsii.invoke(self, "resetPublicAccess", []))
3068
+
3069
+ @jsii.member(jsii_name="resetServiceLog")
3070
+ def reset_service_log(self) -> None:
3071
+ return typing.cast(None, jsii.invoke(self, "resetServiceLog", []))
3072
+
3073
+ @jsii.member(jsii_name="resetSlowQueryLog")
3074
+ def reset_slow_query_log(self) -> None:
3075
+ return typing.cast(None, jsii.invoke(self, "resetSlowQueryLog", []))
3076
+
3077
+ @jsii.member(jsii_name="resetSortBufferSize")
3078
+ def reset_sort_buffer_size(self) -> None:
3079
+ return typing.cast(None, jsii.invoke(self, "resetSortBufferSize", []))
3080
+
3081
+ @jsii.member(jsii_name="resetSqlMode")
3082
+ def reset_sql_mode(self) -> None:
3083
+ return typing.cast(None, jsii.invoke(self, "resetSqlMode", []))
3084
+
3085
+ @jsii.member(jsii_name="resetSqlRequirePrimaryKey")
3086
+ def reset_sql_require_primary_key(self) -> None:
3087
+ return typing.cast(None, jsii.invoke(self, "resetSqlRequirePrimaryKey", []))
3088
+
3089
+ @jsii.member(jsii_name="resetTmpTableSize")
3090
+ def reset_tmp_table_size(self) -> None:
3091
+ return typing.cast(None, jsii.invoke(self, "resetTmpTableSize", []))
3092
+
3093
+ @jsii.member(jsii_name="resetVersion")
3094
+ def reset_version(self) -> None:
3095
+ return typing.cast(None, jsii.invoke(self, "resetVersion", []))
3096
+
3097
+ @jsii.member(jsii_name="resetWaitTimeout")
3098
+ def reset_wait_timeout(self) -> None:
3099
+ return typing.cast(None, jsii.invoke(self, "resetWaitTimeout", []))
3100
+
3101
+ @builtins.property
3102
+ @jsii.member(jsii_name="migration")
3103
+ def migration(self) -> ManagedDatabaseMysqlPropertiesMigrationOutputReference:
3104
+ return typing.cast(ManagedDatabaseMysqlPropertiesMigrationOutputReference, jsii.get(self, "migration"))
3105
+
3106
+ @builtins.property
3107
+ @jsii.member(jsii_name="mysqlIncrementalBackup")
3108
+ def mysql_incremental_backup(
3109
+ self,
3110
+ ) -> ManagedDatabaseMysqlPropertiesMysqlIncrementalBackupOutputReference:
3111
+ return typing.cast(ManagedDatabaseMysqlPropertiesMysqlIncrementalBackupOutputReference, jsii.get(self, "mysqlIncrementalBackup"))
3112
+
3113
+ @builtins.property
3114
+ @jsii.member(jsii_name="adminPasswordInput")
3115
+ def admin_password_input(self) -> typing.Optional[builtins.str]:
3116
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "adminPasswordInput"))
3117
+
3118
+ @builtins.property
3119
+ @jsii.member(jsii_name="adminUsernameInput")
3120
+ def admin_username_input(self) -> typing.Optional[builtins.str]:
3121
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "adminUsernameInput"))
3122
+
3123
+ @builtins.property
3124
+ @jsii.member(jsii_name="automaticUtilityNetworkIpFilterInput")
3125
+ def automatic_utility_network_ip_filter_input(
3126
+ self,
3127
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3128
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "automaticUtilityNetworkIpFilterInput"))
3129
+
3130
+ @builtins.property
3131
+ @jsii.member(jsii_name="backupHourInput")
3132
+ def backup_hour_input(self) -> typing.Optional[jsii.Number]:
3133
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "backupHourInput"))
3134
+
3135
+ @builtins.property
3136
+ @jsii.member(jsii_name="backupMinuteInput")
3137
+ def backup_minute_input(self) -> typing.Optional[jsii.Number]:
3138
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "backupMinuteInput"))
3139
+
3140
+ @builtins.property
3141
+ @jsii.member(jsii_name="binlogRetentionPeriodInput")
3142
+ def binlog_retention_period_input(self) -> typing.Optional[jsii.Number]:
3143
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "binlogRetentionPeriodInput"))
3144
+
3145
+ @builtins.property
3146
+ @jsii.member(jsii_name="connectTimeoutInput")
3147
+ def connect_timeout_input(self) -> typing.Optional[jsii.Number]:
3148
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "connectTimeoutInput"))
3149
+
3150
+ @builtins.property
3151
+ @jsii.member(jsii_name="defaultTimeZoneInput")
3152
+ def default_time_zone_input(self) -> typing.Optional[builtins.str]:
3153
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "defaultTimeZoneInput"))
3154
+
3155
+ @builtins.property
3156
+ @jsii.member(jsii_name="groupConcatMaxLenInput")
3157
+ def group_concat_max_len_input(self) -> typing.Optional[jsii.Number]:
3158
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "groupConcatMaxLenInput"))
3159
+
3160
+ @builtins.property
3161
+ @jsii.member(jsii_name="informationSchemaStatsExpiryInput")
3162
+ def information_schema_stats_expiry_input(self) -> typing.Optional[jsii.Number]:
3163
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "informationSchemaStatsExpiryInput"))
3164
+
3165
+ @builtins.property
3166
+ @jsii.member(jsii_name="innodbChangeBufferMaxSizeInput")
3167
+ def innodb_change_buffer_max_size_input(self) -> typing.Optional[jsii.Number]:
3168
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbChangeBufferMaxSizeInput"))
3169
+
3170
+ @builtins.property
3171
+ @jsii.member(jsii_name="innodbFlushNeighborsInput")
3172
+ def innodb_flush_neighbors_input(self) -> typing.Optional[jsii.Number]:
3173
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbFlushNeighborsInput"))
3174
+
3175
+ @builtins.property
3176
+ @jsii.member(jsii_name="innodbFtMinTokenSizeInput")
3177
+ def innodb_ft_min_token_size_input(self) -> typing.Optional[jsii.Number]:
3178
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbFtMinTokenSizeInput"))
3179
+
3180
+ @builtins.property
3181
+ @jsii.member(jsii_name="innodbFtServerStopwordTableInput")
3182
+ def innodb_ft_server_stopword_table_input(self) -> typing.Optional[builtins.str]:
3183
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "innodbFtServerStopwordTableInput"))
3184
+
3185
+ @builtins.property
3186
+ @jsii.member(jsii_name="innodbLockWaitTimeoutInput")
3187
+ def innodb_lock_wait_timeout_input(self) -> typing.Optional[jsii.Number]:
3188
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbLockWaitTimeoutInput"))
3189
+
3190
+ @builtins.property
3191
+ @jsii.member(jsii_name="innodbLogBufferSizeInput")
3192
+ def innodb_log_buffer_size_input(self) -> typing.Optional[jsii.Number]:
3193
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbLogBufferSizeInput"))
3194
+
3195
+ @builtins.property
3196
+ @jsii.member(jsii_name="innodbOnlineAlterLogMaxSizeInput")
3197
+ def innodb_online_alter_log_max_size_input(self) -> typing.Optional[jsii.Number]:
3198
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbOnlineAlterLogMaxSizeInput"))
3199
+
3200
+ @builtins.property
3201
+ @jsii.member(jsii_name="innodbPrintAllDeadlocksInput")
3202
+ def innodb_print_all_deadlocks_input(
3203
+ self,
3204
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3205
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "innodbPrintAllDeadlocksInput"))
3206
+
3207
+ @builtins.property
3208
+ @jsii.member(jsii_name="innodbReadIoThreadsInput")
3209
+ def innodb_read_io_threads_input(self) -> typing.Optional[jsii.Number]:
3210
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbReadIoThreadsInput"))
3211
+
3212
+ @builtins.property
3213
+ @jsii.member(jsii_name="innodbRollbackOnTimeoutInput")
3214
+ def innodb_rollback_on_timeout_input(
3215
+ self,
3216
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3217
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "innodbRollbackOnTimeoutInput"))
3218
+
3219
+ @builtins.property
3220
+ @jsii.member(jsii_name="innodbThreadConcurrencyInput")
3221
+ def innodb_thread_concurrency_input(self) -> typing.Optional[jsii.Number]:
3222
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbThreadConcurrencyInput"))
3223
+
3224
+ @builtins.property
3225
+ @jsii.member(jsii_name="innodbWriteIoThreadsInput")
3226
+ def innodb_write_io_threads_input(self) -> typing.Optional[jsii.Number]:
3227
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "innodbWriteIoThreadsInput"))
3228
+
3229
+ @builtins.property
3230
+ @jsii.member(jsii_name="interactiveTimeoutInput")
3231
+ def interactive_timeout_input(self) -> typing.Optional[jsii.Number]:
3232
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "interactiveTimeoutInput"))
3233
+
3234
+ @builtins.property
3235
+ @jsii.member(jsii_name="internalTmpMemStorageEngineInput")
3236
+ def internal_tmp_mem_storage_engine_input(self) -> typing.Optional[builtins.str]:
3237
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "internalTmpMemStorageEngineInput"))
3238
+
3239
+ @builtins.property
3240
+ @jsii.member(jsii_name="ipFilterInput")
3241
+ def ip_filter_input(self) -> typing.Optional[typing.List[builtins.str]]:
3242
+ return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "ipFilterInput"))
3243
+
3244
+ @builtins.property
3245
+ @jsii.member(jsii_name="logOutputInput")
3246
+ def log_output_input(self) -> typing.Optional[builtins.str]:
3247
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "logOutputInput"))
3248
+
3249
+ @builtins.property
3250
+ @jsii.member(jsii_name="longQueryTimeInput")
3251
+ def long_query_time_input(self) -> typing.Optional[jsii.Number]:
3252
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "longQueryTimeInput"))
3253
+
3254
+ @builtins.property
3255
+ @jsii.member(jsii_name="maxAllowedPacketInput")
3256
+ def max_allowed_packet_input(self) -> typing.Optional[jsii.Number]:
3257
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "maxAllowedPacketInput"))
3258
+
3259
+ @builtins.property
3260
+ @jsii.member(jsii_name="maxHeapTableSizeInput")
3261
+ def max_heap_table_size_input(self) -> typing.Optional[jsii.Number]:
3262
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "maxHeapTableSizeInput"))
3263
+
3264
+ @builtins.property
3265
+ @jsii.member(jsii_name="migrationInput")
3266
+ def migration_input(
3267
+ self,
3268
+ ) -> typing.Optional[ManagedDatabaseMysqlPropertiesMigration]:
3269
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlPropertiesMigration], jsii.get(self, "migrationInput"))
3270
+
3271
+ @builtins.property
3272
+ @jsii.member(jsii_name="mysqlIncrementalBackupInput")
3273
+ def mysql_incremental_backup_input(
3274
+ self,
3275
+ ) -> typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup]:
3276
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup], jsii.get(self, "mysqlIncrementalBackupInput"))
3277
+
3278
+ @builtins.property
3279
+ @jsii.member(jsii_name="netBufferLengthInput")
3280
+ def net_buffer_length_input(self) -> typing.Optional[jsii.Number]:
3281
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "netBufferLengthInput"))
3282
+
3283
+ @builtins.property
3284
+ @jsii.member(jsii_name="netReadTimeoutInput")
3285
+ def net_read_timeout_input(self) -> typing.Optional[jsii.Number]:
3286
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "netReadTimeoutInput"))
3287
+
3288
+ @builtins.property
3289
+ @jsii.member(jsii_name="netWriteTimeoutInput")
3290
+ def net_write_timeout_input(self) -> typing.Optional[jsii.Number]:
3291
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "netWriteTimeoutInput"))
3292
+
3293
+ @builtins.property
3294
+ @jsii.member(jsii_name="publicAccessInput")
3295
+ def public_access_input(
3296
+ self,
3297
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3298
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "publicAccessInput"))
3299
+
3300
+ @builtins.property
3301
+ @jsii.member(jsii_name="serviceLogInput")
3302
+ def service_log_input(
3303
+ self,
3304
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3305
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "serviceLogInput"))
3306
+
3307
+ @builtins.property
3308
+ @jsii.member(jsii_name="slowQueryLogInput")
3309
+ def slow_query_log_input(
3310
+ self,
3311
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3312
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "slowQueryLogInput"))
3313
+
3314
+ @builtins.property
3315
+ @jsii.member(jsii_name="sortBufferSizeInput")
3316
+ def sort_buffer_size_input(self) -> typing.Optional[jsii.Number]:
3317
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "sortBufferSizeInput"))
3318
+
3319
+ @builtins.property
3320
+ @jsii.member(jsii_name="sqlModeInput")
3321
+ def sql_mode_input(self) -> typing.Optional[builtins.str]:
3322
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "sqlModeInput"))
3323
+
3324
+ @builtins.property
3325
+ @jsii.member(jsii_name="sqlRequirePrimaryKeyInput")
3326
+ def sql_require_primary_key_input(
3327
+ self,
3328
+ ) -> typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]]:
3329
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]], jsii.get(self, "sqlRequirePrimaryKeyInput"))
3330
+
3331
+ @builtins.property
3332
+ @jsii.member(jsii_name="tmpTableSizeInput")
3333
+ def tmp_table_size_input(self) -> typing.Optional[jsii.Number]:
3334
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "tmpTableSizeInput"))
3335
+
3336
+ @builtins.property
3337
+ @jsii.member(jsii_name="versionInput")
3338
+ def version_input(self) -> typing.Optional[builtins.str]:
3339
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "versionInput"))
3340
+
3341
+ @builtins.property
3342
+ @jsii.member(jsii_name="waitTimeoutInput")
3343
+ def wait_timeout_input(self) -> typing.Optional[jsii.Number]:
3344
+ return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "waitTimeoutInput"))
3345
+
3346
+ @builtins.property
3347
+ @jsii.member(jsii_name="adminPassword")
3348
+ def admin_password(self) -> builtins.str:
3349
+ return typing.cast(builtins.str, jsii.get(self, "adminPassword"))
3350
+
3351
+ @admin_password.setter
3352
+ def admin_password(self, value: builtins.str) -> None:
3353
+ if __debug__:
3354
+ type_hints = typing.get_type_hints(_typecheckingstub__4eff5f4868d5bb12ae52075fad32cc522ff4d67c1f0725343b65ceccf3d26131)
3355
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3356
+ jsii.set(self, "adminPassword", value) # pyright: ignore[reportArgumentType]
3357
+
3358
+ @builtins.property
3359
+ @jsii.member(jsii_name="adminUsername")
3360
+ def admin_username(self) -> builtins.str:
3361
+ return typing.cast(builtins.str, jsii.get(self, "adminUsername"))
3362
+
3363
+ @admin_username.setter
3364
+ def admin_username(self, value: builtins.str) -> None:
3365
+ if __debug__:
3366
+ type_hints = typing.get_type_hints(_typecheckingstub__a6ecefb7a241c029a6f8bdf60f03bc1c901031688d400c73e2077054204b2d4d)
3367
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3368
+ jsii.set(self, "adminUsername", value) # pyright: ignore[reportArgumentType]
3369
+
3370
+ @builtins.property
3371
+ @jsii.member(jsii_name="automaticUtilityNetworkIpFilter")
3372
+ def automatic_utility_network_ip_filter(
3373
+ self,
3374
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3375
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "automaticUtilityNetworkIpFilter"))
3376
+
3377
+ @automatic_utility_network_ip_filter.setter
3378
+ def automatic_utility_network_ip_filter(
3379
+ self,
3380
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3381
+ ) -> None:
3382
+ if __debug__:
3383
+ type_hints = typing.get_type_hints(_typecheckingstub__0077171c6793e105b57c58f26c5eccab995b513ae21d2edd5eb376835c26fb57)
3384
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3385
+ jsii.set(self, "automaticUtilityNetworkIpFilter", value) # pyright: ignore[reportArgumentType]
3386
+
3387
+ @builtins.property
3388
+ @jsii.member(jsii_name="backupHour")
3389
+ def backup_hour(self) -> jsii.Number:
3390
+ return typing.cast(jsii.Number, jsii.get(self, "backupHour"))
3391
+
3392
+ @backup_hour.setter
3393
+ def backup_hour(self, value: jsii.Number) -> None:
3394
+ if __debug__:
3395
+ type_hints = typing.get_type_hints(_typecheckingstub__bfda925789726fc478fb6e9c25ed310b3c2d5d0d2eb38e33f3f06991670b1fc0)
3396
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3397
+ jsii.set(self, "backupHour", value) # pyright: ignore[reportArgumentType]
3398
+
3399
+ @builtins.property
3400
+ @jsii.member(jsii_name="backupMinute")
3401
+ def backup_minute(self) -> jsii.Number:
3402
+ return typing.cast(jsii.Number, jsii.get(self, "backupMinute"))
3403
+
3404
+ @backup_minute.setter
3405
+ def backup_minute(self, value: jsii.Number) -> None:
3406
+ if __debug__:
3407
+ type_hints = typing.get_type_hints(_typecheckingstub__d8387e10b822b051ef1d7d248d600bc6a627ce3d53ef51bdb3d35baa6c8a9c79)
3408
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3409
+ jsii.set(self, "backupMinute", value) # pyright: ignore[reportArgumentType]
3410
+
3411
+ @builtins.property
3412
+ @jsii.member(jsii_name="binlogRetentionPeriod")
3413
+ def binlog_retention_period(self) -> jsii.Number:
3414
+ return typing.cast(jsii.Number, jsii.get(self, "binlogRetentionPeriod"))
3415
+
3416
+ @binlog_retention_period.setter
3417
+ def binlog_retention_period(self, value: jsii.Number) -> None:
3418
+ if __debug__:
3419
+ type_hints = typing.get_type_hints(_typecheckingstub__adb2b7fe28d35ffbd5dc61b42e471da9235b519934c0cf2b54e66a6cba2769d3)
3420
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3421
+ jsii.set(self, "binlogRetentionPeriod", value) # pyright: ignore[reportArgumentType]
3422
+
3423
+ @builtins.property
3424
+ @jsii.member(jsii_name="connectTimeout")
3425
+ def connect_timeout(self) -> jsii.Number:
3426
+ return typing.cast(jsii.Number, jsii.get(self, "connectTimeout"))
3427
+
3428
+ @connect_timeout.setter
3429
+ def connect_timeout(self, value: jsii.Number) -> None:
3430
+ if __debug__:
3431
+ type_hints = typing.get_type_hints(_typecheckingstub__244c5cca2f2bb6b2cbf36edfebcd16134288c4f0cdcd06fc9bc5e887138a6533)
3432
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3433
+ jsii.set(self, "connectTimeout", value) # pyright: ignore[reportArgumentType]
3434
+
3435
+ @builtins.property
3436
+ @jsii.member(jsii_name="defaultTimeZone")
3437
+ def default_time_zone(self) -> builtins.str:
3438
+ return typing.cast(builtins.str, jsii.get(self, "defaultTimeZone"))
3439
+
3440
+ @default_time_zone.setter
3441
+ def default_time_zone(self, value: builtins.str) -> None:
3442
+ if __debug__:
3443
+ type_hints = typing.get_type_hints(_typecheckingstub__c24961559469f2c54fad02db5d36db8f2be6223c7d562b818f83fd070c49503f)
3444
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3445
+ jsii.set(self, "defaultTimeZone", value) # pyright: ignore[reportArgumentType]
3446
+
3447
+ @builtins.property
3448
+ @jsii.member(jsii_name="groupConcatMaxLen")
3449
+ def group_concat_max_len(self) -> jsii.Number:
3450
+ return typing.cast(jsii.Number, jsii.get(self, "groupConcatMaxLen"))
3451
+
3452
+ @group_concat_max_len.setter
3453
+ def group_concat_max_len(self, value: jsii.Number) -> None:
3454
+ if __debug__:
3455
+ type_hints = typing.get_type_hints(_typecheckingstub__e434daac5f96db599fa63ee8f3950fca6a852291747a0d175f039361c9765872)
3456
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3457
+ jsii.set(self, "groupConcatMaxLen", value) # pyright: ignore[reportArgumentType]
3458
+
3459
+ @builtins.property
3460
+ @jsii.member(jsii_name="informationSchemaStatsExpiry")
3461
+ def information_schema_stats_expiry(self) -> jsii.Number:
3462
+ return typing.cast(jsii.Number, jsii.get(self, "informationSchemaStatsExpiry"))
3463
+
3464
+ @information_schema_stats_expiry.setter
3465
+ def information_schema_stats_expiry(self, value: jsii.Number) -> None:
3466
+ if __debug__:
3467
+ type_hints = typing.get_type_hints(_typecheckingstub__a88a50f90b2c7002fe3db3e94a4ea87c7423326f9aa1ce934da5a129f5bf3c17)
3468
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3469
+ jsii.set(self, "informationSchemaStatsExpiry", value) # pyright: ignore[reportArgumentType]
3470
+
3471
+ @builtins.property
3472
+ @jsii.member(jsii_name="innodbChangeBufferMaxSize")
3473
+ def innodb_change_buffer_max_size(self) -> jsii.Number:
3474
+ return typing.cast(jsii.Number, jsii.get(self, "innodbChangeBufferMaxSize"))
3475
+
3476
+ @innodb_change_buffer_max_size.setter
3477
+ def innodb_change_buffer_max_size(self, value: jsii.Number) -> None:
3478
+ if __debug__:
3479
+ type_hints = typing.get_type_hints(_typecheckingstub__b3746ba590c0ee59f4ebd0fc2a77ca7c2351bc1f348d60cfb3cd712bca687743)
3480
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3481
+ jsii.set(self, "innodbChangeBufferMaxSize", value) # pyright: ignore[reportArgumentType]
3482
+
3483
+ @builtins.property
3484
+ @jsii.member(jsii_name="innodbFlushNeighbors")
3485
+ def innodb_flush_neighbors(self) -> jsii.Number:
3486
+ return typing.cast(jsii.Number, jsii.get(self, "innodbFlushNeighbors"))
3487
+
3488
+ @innodb_flush_neighbors.setter
3489
+ def innodb_flush_neighbors(self, value: jsii.Number) -> None:
3490
+ if __debug__:
3491
+ type_hints = typing.get_type_hints(_typecheckingstub__feb5034ec10b5b26fc8e3b8128725a5f19fa53e4a0fc95855cddab729dd93e6a)
3492
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3493
+ jsii.set(self, "innodbFlushNeighbors", value) # pyright: ignore[reportArgumentType]
3494
+
3495
+ @builtins.property
3496
+ @jsii.member(jsii_name="innodbFtMinTokenSize")
3497
+ def innodb_ft_min_token_size(self) -> jsii.Number:
3498
+ return typing.cast(jsii.Number, jsii.get(self, "innodbFtMinTokenSize"))
3499
+
3500
+ @innodb_ft_min_token_size.setter
3501
+ def innodb_ft_min_token_size(self, value: jsii.Number) -> None:
3502
+ if __debug__:
3503
+ type_hints = typing.get_type_hints(_typecheckingstub__157f20e90e8a5fdf1e18b16ba297d2b6e248258f423cd9546f20ea5a1321d001)
3504
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3505
+ jsii.set(self, "innodbFtMinTokenSize", value) # pyright: ignore[reportArgumentType]
3506
+
3507
+ @builtins.property
3508
+ @jsii.member(jsii_name="innodbFtServerStopwordTable")
3509
+ def innodb_ft_server_stopword_table(self) -> builtins.str:
3510
+ return typing.cast(builtins.str, jsii.get(self, "innodbFtServerStopwordTable"))
3511
+
3512
+ @innodb_ft_server_stopword_table.setter
3513
+ def innodb_ft_server_stopword_table(self, value: builtins.str) -> None:
3514
+ if __debug__:
3515
+ type_hints = typing.get_type_hints(_typecheckingstub__49588ac2cf49f2d73a79f0f70ae6ed4a8f60a8eaf1f827f99c0c1ddab9fceffb)
3516
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3517
+ jsii.set(self, "innodbFtServerStopwordTable", value) # pyright: ignore[reportArgumentType]
3518
+
3519
+ @builtins.property
3520
+ @jsii.member(jsii_name="innodbLockWaitTimeout")
3521
+ def innodb_lock_wait_timeout(self) -> jsii.Number:
3522
+ return typing.cast(jsii.Number, jsii.get(self, "innodbLockWaitTimeout"))
3523
+
3524
+ @innodb_lock_wait_timeout.setter
3525
+ def innodb_lock_wait_timeout(self, value: jsii.Number) -> None:
3526
+ if __debug__:
3527
+ type_hints = typing.get_type_hints(_typecheckingstub__8805feb0a905d8bb176cdd8478ef200d24902405aa6c969241c6feb3fa51c558)
3528
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3529
+ jsii.set(self, "innodbLockWaitTimeout", value) # pyright: ignore[reportArgumentType]
3530
+
3531
+ @builtins.property
3532
+ @jsii.member(jsii_name="innodbLogBufferSize")
3533
+ def innodb_log_buffer_size(self) -> jsii.Number:
3534
+ return typing.cast(jsii.Number, jsii.get(self, "innodbLogBufferSize"))
3535
+
3536
+ @innodb_log_buffer_size.setter
3537
+ def innodb_log_buffer_size(self, value: jsii.Number) -> None:
3538
+ if __debug__:
3539
+ type_hints = typing.get_type_hints(_typecheckingstub__4836318ace4b5113ec6900a579bfbfdb9eef4e5b61285ca8a2e35a5eb19c8d9f)
3540
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3541
+ jsii.set(self, "innodbLogBufferSize", value) # pyright: ignore[reportArgumentType]
3542
+
3543
+ @builtins.property
3544
+ @jsii.member(jsii_name="innodbOnlineAlterLogMaxSize")
3545
+ def innodb_online_alter_log_max_size(self) -> jsii.Number:
3546
+ return typing.cast(jsii.Number, jsii.get(self, "innodbOnlineAlterLogMaxSize"))
3547
+
3548
+ @innodb_online_alter_log_max_size.setter
3549
+ def innodb_online_alter_log_max_size(self, value: jsii.Number) -> None:
3550
+ if __debug__:
3551
+ type_hints = typing.get_type_hints(_typecheckingstub__63fe9f771fba7af459b76c36f0a04274b20a86290be56a2f7ae3ceaef8819752)
3552
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3553
+ jsii.set(self, "innodbOnlineAlterLogMaxSize", value) # pyright: ignore[reportArgumentType]
3554
+
3555
+ @builtins.property
3556
+ @jsii.member(jsii_name="innodbPrintAllDeadlocks")
3557
+ def innodb_print_all_deadlocks(
3558
+ self,
3559
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3560
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "innodbPrintAllDeadlocks"))
3561
+
3562
+ @innodb_print_all_deadlocks.setter
3563
+ def innodb_print_all_deadlocks(
3564
+ self,
3565
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3566
+ ) -> None:
3567
+ if __debug__:
3568
+ type_hints = typing.get_type_hints(_typecheckingstub__7769a033f5366008076bb4ef7b8919e72819d5ddc0e454d3ef11e133205c37a6)
3569
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3570
+ jsii.set(self, "innodbPrintAllDeadlocks", value) # pyright: ignore[reportArgumentType]
3571
+
3572
+ @builtins.property
3573
+ @jsii.member(jsii_name="innodbReadIoThreads")
3574
+ def innodb_read_io_threads(self) -> jsii.Number:
3575
+ return typing.cast(jsii.Number, jsii.get(self, "innodbReadIoThreads"))
3576
+
3577
+ @innodb_read_io_threads.setter
3578
+ def innodb_read_io_threads(self, value: jsii.Number) -> None:
3579
+ if __debug__:
3580
+ type_hints = typing.get_type_hints(_typecheckingstub__290d8e8fa2c8d1dc4cc1d8c88e345dad38aa92a1fea90ed574d033ddcf8f5002)
3581
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3582
+ jsii.set(self, "innodbReadIoThreads", value) # pyright: ignore[reportArgumentType]
3583
+
3584
+ @builtins.property
3585
+ @jsii.member(jsii_name="innodbRollbackOnTimeout")
3586
+ def innodb_rollback_on_timeout(
3587
+ self,
3588
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3589
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "innodbRollbackOnTimeout"))
3590
+
3591
+ @innodb_rollback_on_timeout.setter
3592
+ def innodb_rollback_on_timeout(
3593
+ self,
3594
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3595
+ ) -> None:
3596
+ if __debug__:
3597
+ type_hints = typing.get_type_hints(_typecheckingstub__3c11180360ba295b9f58a8b122c238af9812b0690ae4ff10ec71d92ab0d22ae4)
3598
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3599
+ jsii.set(self, "innodbRollbackOnTimeout", value) # pyright: ignore[reportArgumentType]
3600
+
3601
+ @builtins.property
3602
+ @jsii.member(jsii_name="innodbThreadConcurrency")
3603
+ def innodb_thread_concurrency(self) -> jsii.Number:
3604
+ return typing.cast(jsii.Number, jsii.get(self, "innodbThreadConcurrency"))
3605
+
3606
+ @innodb_thread_concurrency.setter
3607
+ def innodb_thread_concurrency(self, value: jsii.Number) -> None:
3608
+ if __debug__:
3609
+ type_hints = typing.get_type_hints(_typecheckingstub__bcc986e128bf332cd06fd464c2a5585373baca759c9251263454173a2fc9b76f)
3610
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3611
+ jsii.set(self, "innodbThreadConcurrency", value) # pyright: ignore[reportArgumentType]
3612
+
3613
+ @builtins.property
3614
+ @jsii.member(jsii_name="innodbWriteIoThreads")
3615
+ def innodb_write_io_threads(self) -> jsii.Number:
3616
+ return typing.cast(jsii.Number, jsii.get(self, "innodbWriteIoThreads"))
3617
+
3618
+ @innodb_write_io_threads.setter
3619
+ def innodb_write_io_threads(self, value: jsii.Number) -> None:
3620
+ if __debug__:
3621
+ type_hints = typing.get_type_hints(_typecheckingstub__445b0b8ad0a5511a9ee649231ead8b458ebd595ed181e7125236de52cd994f63)
3622
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3623
+ jsii.set(self, "innodbWriteIoThreads", value) # pyright: ignore[reportArgumentType]
3624
+
3625
+ @builtins.property
3626
+ @jsii.member(jsii_name="interactiveTimeout")
3627
+ def interactive_timeout(self) -> jsii.Number:
3628
+ return typing.cast(jsii.Number, jsii.get(self, "interactiveTimeout"))
3629
+
3630
+ @interactive_timeout.setter
3631
+ def interactive_timeout(self, value: jsii.Number) -> None:
3632
+ if __debug__:
3633
+ type_hints = typing.get_type_hints(_typecheckingstub__f7ae88e786b8f906e86e53fac22e5a36d705e4669a5b3666b6887fb5711c0c77)
3634
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3635
+ jsii.set(self, "interactiveTimeout", value) # pyright: ignore[reportArgumentType]
3636
+
3637
+ @builtins.property
3638
+ @jsii.member(jsii_name="internalTmpMemStorageEngine")
3639
+ def internal_tmp_mem_storage_engine(self) -> builtins.str:
3640
+ return typing.cast(builtins.str, jsii.get(self, "internalTmpMemStorageEngine"))
3641
+
3642
+ @internal_tmp_mem_storage_engine.setter
3643
+ def internal_tmp_mem_storage_engine(self, value: builtins.str) -> None:
3644
+ if __debug__:
3645
+ type_hints = typing.get_type_hints(_typecheckingstub__9fd6b53bbf642281b0c693d7bc5e4d74286630c223315e934132f731948f3da1)
3646
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3647
+ jsii.set(self, "internalTmpMemStorageEngine", value) # pyright: ignore[reportArgumentType]
3648
+
3649
+ @builtins.property
3650
+ @jsii.member(jsii_name="ipFilter")
3651
+ def ip_filter(self) -> typing.List[builtins.str]:
3652
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "ipFilter"))
3653
+
3654
+ @ip_filter.setter
3655
+ def ip_filter(self, value: typing.List[builtins.str]) -> None:
3656
+ if __debug__:
3657
+ type_hints = typing.get_type_hints(_typecheckingstub__62d1186ba338160863d0f6ca2b6a930329e5a12f1766e1a56c6310b1a82b309b)
3658
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3659
+ jsii.set(self, "ipFilter", value) # pyright: ignore[reportArgumentType]
3660
+
3661
+ @builtins.property
3662
+ @jsii.member(jsii_name="logOutput")
3663
+ def log_output(self) -> builtins.str:
3664
+ return typing.cast(builtins.str, jsii.get(self, "logOutput"))
3665
+
3666
+ @log_output.setter
3667
+ def log_output(self, value: builtins.str) -> None:
3668
+ if __debug__:
3669
+ type_hints = typing.get_type_hints(_typecheckingstub__cd74b822d5bffe20b4e08b8e008bdf292388bf335c14fe7d958a38c2866e0189)
3670
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3671
+ jsii.set(self, "logOutput", value) # pyright: ignore[reportArgumentType]
3672
+
3673
+ @builtins.property
3674
+ @jsii.member(jsii_name="longQueryTime")
3675
+ def long_query_time(self) -> jsii.Number:
3676
+ return typing.cast(jsii.Number, jsii.get(self, "longQueryTime"))
3677
+
3678
+ @long_query_time.setter
3679
+ def long_query_time(self, value: jsii.Number) -> None:
3680
+ if __debug__:
3681
+ type_hints = typing.get_type_hints(_typecheckingstub__8f1f337cf4d9efc75ecd5295ef8ec9b2114e9409e0f743fc9cff9d37adbe5d93)
3682
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3683
+ jsii.set(self, "longQueryTime", value) # pyright: ignore[reportArgumentType]
3684
+
3685
+ @builtins.property
3686
+ @jsii.member(jsii_name="maxAllowedPacket")
3687
+ def max_allowed_packet(self) -> jsii.Number:
3688
+ return typing.cast(jsii.Number, jsii.get(self, "maxAllowedPacket"))
3689
+
3690
+ @max_allowed_packet.setter
3691
+ def max_allowed_packet(self, value: jsii.Number) -> None:
3692
+ if __debug__:
3693
+ type_hints = typing.get_type_hints(_typecheckingstub__a2d632aa9b0e2406312012c1cee1c53f68ed87a9a3ebb403f82dc0c902336c78)
3694
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3695
+ jsii.set(self, "maxAllowedPacket", value) # pyright: ignore[reportArgumentType]
3696
+
3697
+ @builtins.property
3698
+ @jsii.member(jsii_name="maxHeapTableSize")
3699
+ def max_heap_table_size(self) -> jsii.Number:
3700
+ return typing.cast(jsii.Number, jsii.get(self, "maxHeapTableSize"))
3701
+
3702
+ @max_heap_table_size.setter
3703
+ def max_heap_table_size(self, value: jsii.Number) -> None:
3704
+ if __debug__:
3705
+ type_hints = typing.get_type_hints(_typecheckingstub__ba739f0bae2ab6909061790026a04e7da9eec4d3e9c8703fda506687f42e5cc0)
3706
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3707
+ jsii.set(self, "maxHeapTableSize", value) # pyright: ignore[reportArgumentType]
3708
+
3709
+ @builtins.property
3710
+ @jsii.member(jsii_name="netBufferLength")
3711
+ def net_buffer_length(self) -> jsii.Number:
3712
+ return typing.cast(jsii.Number, jsii.get(self, "netBufferLength"))
3713
+
3714
+ @net_buffer_length.setter
3715
+ def net_buffer_length(self, value: jsii.Number) -> None:
3716
+ if __debug__:
3717
+ type_hints = typing.get_type_hints(_typecheckingstub__b0a040f8c2b33ac991cfe7b731460da1ecc8bab940cb58a30c67f101eb64bd7b)
3718
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3719
+ jsii.set(self, "netBufferLength", value) # pyright: ignore[reportArgumentType]
3720
+
3721
+ @builtins.property
3722
+ @jsii.member(jsii_name="netReadTimeout")
3723
+ def net_read_timeout(self) -> jsii.Number:
3724
+ return typing.cast(jsii.Number, jsii.get(self, "netReadTimeout"))
3725
+
3726
+ @net_read_timeout.setter
3727
+ def net_read_timeout(self, value: jsii.Number) -> None:
3728
+ if __debug__:
3729
+ type_hints = typing.get_type_hints(_typecheckingstub__d3d32e5573df63e11c69495b478bc001c2ed85ddd03d593da5ecdfce22282ae0)
3730
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3731
+ jsii.set(self, "netReadTimeout", value) # pyright: ignore[reportArgumentType]
3732
+
3733
+ @builtins.property
3734
+ @jsii.member(jsii_name="netWriteTimeout")
3735
+ def net_write_timeout(self) -> jsii.Number:
3736
+ return typing.cast(jsii.Number, jsii.get(self, "netWriteTimeout"))
3737
+
3738
+ @net_write_timeout.setter
3739
+ def net_write_timeout(self, value: jsii.Number) -> None:
3740
+ if __debug__:
3741
+ type_hints = typing.get_type_hints(_typecheckingstub__7a3c79c909087d181e7f57ae35f51997dda8c0b4d6e22e17bdac74319cb1b694)
3742
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3743
+ jsii.set(self, "netWriteTimeout", value) # pyright: ignore[reportArgumentType]
3744
+
3745
+ @builtins.property
3746
+ @jsii.member(jsii_name="publicAccess")
3747
+ def public_access(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3748
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "publicAccess"))
3749
+
3750
+ @public_access.setter
3751
+ def public_access(
3752
+ self,
3753
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3754
+ ) -> None:
3755
+ if __debug__:
3756
+ type_hints = typing.get_type_hints(_typecheckingstub__f0c7a48b8afc4486c1ed957a0b6ee942cf9d81126fb4c501e657ffbc32023a14)
3757
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3758
+ jsii.set(self, "publicAccess", value) # pyright: ignore[reportArgumentType]
3759
+
3760
+ @builtins.property
3761
+ @jsii.member(jsii_name="serviceLog")
3762
+ def service_log(self) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3763
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "serviceLog"))
3764
+
3765
+ @service_log.setter
3766
+ def service_log(
3767
+ self,
3768
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3769
+ ) -> None:
3770
+ if __debug__:
3771
+ type_hints = typing.get_type_hints(_typecheckingstub__82329f86254d0f011ea44eda334ce520aac47b19d38a1f8284d24d309a640a31)
3772
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3773
+ jsii.set(self, "serviceLog", value) # pyright: ignore[reportArgumentType]
3774
+
3775
+ @builtins.property
3776
+ @jsii.member(jsii_name="slowQueryLog")
3777
+ def slow_query_log(
3778
+ self,
3779
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3780
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "slowQueryLog"))
3781
+
3782
+ @slow_query_log.setter
3783
+ def slow_query_log(
3784
+ self,
3785
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3786
+ ) -> None:
3787
+ if __debug__:
3788
+ type_hints = typing.get_type_hints(_typecheckingstub__00f5ea01b27fd60b6ec439436eb79d5e007e0a6b0434c19b0a353c64ef989768)
3789
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3790
+ jsii.set(self, "slowQueryLog", value) # pyright: ignore[reportArgumentType]
3791
+
3792
+ @builtins.property
3793
+ @jsii.member(jsii_name="sortBufferSize")
3794
+ def sort_buffer_size(self) -> jsii.Number:
3795
+ return typing.cast(jsii.Number, jsii.get(self, "sortBufferSize"))
3796
+
3797
+ @sort_buffer_size.setter
3798
+ def sort_buffer_size(self, value: jsii.Number) -> None:
3799
+ if __debug__:
3800
+ type_hints = typing.get_type_hints(_typecheckingstub__454284c4d62429bbfb3990c93433c9fb60e9e3d69eee5b61d2b6538ea74c83b2)
3801
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3802
+ jsii.set(self, "sortBufferSize", value) # pyright: ignore[reportArgumentType]
3803
+
3804
+ @builtins.property
3805
+ @jsii.member(jsii_name="sqlMode")
3806
+ def sql_mode(self) -> builtins.str:
3807
+ return typing.cast(builtins.str, jsii.get(self, "sqlMode"))
3808
+
3809
+ @sql_mode.setter
3810
+ def sql_mode(self, value: builtins.str) -> None:
3811
+ if __debug__:
3812
+ type_hints = typing.get_type_hints(_typecheckingstub__8c937bd0437ff728ad468d59cd2f18f0dd99bdb5ddcb838518e146db72fb76ba)
3813
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3814
+ jsii.set(self, "sqlMode", value) # pyright: ignore[reportArgumentType]
3815
+
3816
+ @builtins.property
3817
+ @jsii.member(jsii_name="sqlRequirePrimaryKey")
3818
+ def sql_require_primary_key(
3819
+ self,
3820
+ ) -> typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]:
3821
+ return typing.cast(typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable], jsii.get(self, "sqlRequirePrimaryKey"))
3822
+
3823
+ @sql_require_primary_key.setter
3824
+ def sql_require_primary_key(
3825
+ self,
3826
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3827
+ ) -> None:
3828
+ if __debug__:
3829
+ type_hints = typing.get_type_hints(_typecheckingstub__eb564b1b6a7a67f152de9a5baf1c9b00517aaa656a156837ff104367f809673e)
3830
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3831
+ jsii.set(self, "sqlRequirePrimaryKey", value) # pyright: ignore[reportArgumentType]
3832
+
3833
+ @builtins.property
3834
+ @jsii.member(jsii_name="tmpTableSize")
3835
+ def tmp_table_size(self) -> jsii.Number:
3836
+ return typing.cast(jsii.Number, jsii.get(self, "tmpTableSize"))
3837
+
3838
+ @tmp_table_size.setter
3839
+ def tmp_table_size(self, value: jsii.Number) -> None:
3840
+ if __debug__:
3841
+ type_hints = typing.get_type_hints(_typecheckingstub__2c2d839cc9c7bdb6e36ed25e9bc4de414e41a83ebefda4cfe9cd68c820eb097e)
3842
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3843
+ jsii.set(self, "tmpTableSize", value) # pyright: ignore[reportArgumentType]
3844
+
3845
+ @builtins.property
3846
+ @jsii.member(jsii_name="version")
3847
+ def version(self) -> builtins.str:
3848
+ return typing.cast(builtins.str, jsii.get(self, "version"))
3849
+
3850
+ @version.setter
3851
+ def version(self, value: builtins.str) -> None:
3852
+ if __debug__:
3853
+ type_hints = typing.get_type_hints(_typecheckingstub__bb5a1560d7d0fa20b32fcb714ab971ef9b90ea20ab247751460b543c169066a7)
3854
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3855
+ jsii.set(self, "version", value) # pyright: ignore[reportArgumentType]
3856
+
3857
+ @builtins.property
3858
+ @jsii.member(jsii_name="waitTimeout")
3859
+ def wait_timeout(self) -> jsii.Number:
3860
+ return typing.cast(jsii.Number, jsii.get(self, "waitTimeout"))
3861
+
3862
+ @wait_timeout.setter
3863
+ def wait_timeout(self, value: jsii.Number) -> None:
3864
+ if __debug__:
3865
+ type_hints = typing.get_type_hints(_typecheckingstub__5b38f4600f98ee7be6bb71c72ce2612be3c1b2b8ded826ca388238b108bb20cd)
3866
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3867
+ jsii.set(self, "waitTimeout", value) # pyright: ignore[reportArgumentType]
3868
+
3869
+ @builtins.property
3870
+ @jsii.member(jsii_name="internalValue")
3871
+ def internal_value(self) -> typing.Optional[ManagedDatabaseMysqlProperties]:
3872
+ return typing.cast(typing.Optional[ManagedDatabaseMysqlProperties], jsii.get(self, "internalValue"))
3873
+
3874
+ @internal_value.setter
3875
+ def internal_value(
3876
+ self,
3877
+ value: typing.Optional[ManagedDatabaseMysqlProperties],
3878
+ ) -> None:
3879
+ if __debug__:
3880
+ type_hints = typing.get_type_hints(_typecheckingstub__2baaab4cfec9a45413f195dbf67b84628ad02d42383bf17f055f05297b03bb0f)
3881
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3882
+ jsii.set(self, "internalValue", value) # pyright: ignore[reportArgumentType]
3883
+
3884
+
3885
+ __all__ = [
3886
+ "ManagedDatabaseMysql",
3887
+ "ManagedDatabaseMysqlComponents",
3888
+ "ManagedDatabaseMysqlComponentsList",
3889
+ "ManagedDatabaseMysqlComponentsOutputReference",
3890
+ "ManagedDatabaseMysqlConfig",
3891
+ "ManagedDatabaseMysqlNetwork",
3892
+ "ManagedDatabaseMysqlNetworkList",
3893
+ "ManagedDatabaseMysqlNetworkOutputReference",
3894
+ "ManagedDatabaseMysqlNodeStates",
3895
+ "ManagedDatabaseMysqlNodeStatesList",
3896
+ "ManagedDatabaseMysqlNodeStatesOutputReference",
3897
+ "ManagedDatabaseMysqlProperties",
3898
+ "ManagedDatabaseMysqlPropertiesMigration",
3899
+ "ManagedDatabaseMysqlPropertiesMigrationOutputReference",
3900
+ "ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup",
3901
+ "ManagedDatabaseMysqlPropertiesMysqlIncrementalBackupOutputReference",
3902
+ "ManagedDatabaseMysqlPropertiesOutputReference",
3903
+ ]
3904
+
3905
+ publication.publish()
3906
+
3907
+ def _typecheckingstub__958e87e9d4c67c8f4dc9a92e0864dd5ec7b73c3fe017b196cd999a20a67aec35(
3908
+ scope: _constructs_77d1e7e8.Construct,
3909
+ id_: builtins.str,
3910
+ *,
3911
+ name: builtins.str,
3912
+ plan: builtins.str,
3913
+ title: builtins.str,
3914
+ zone: builtins.str,
3915
+ additional_disk_space_gib: typing.Optional[jsii.Number] = None,
3916
+ id: typing.Optional[builtins.str] = None,
3917
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3918
+ maintenance_window_dow: typing.Optional[builtins.str] = None,
3919
+ maintenance_window_time: typing.Optional[builtins.str] = None,
3920
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedDatabaseMysqlNetwork, typing.Dict[builtins.str, typing.Any]]]]] = None,
3921
+ powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
3922
+ properties: typing.Optional[typing.Union[ManagedDatabaseMysqlProperties, typing.Dict[builtins.str, typing.Any]]] = None,
3923
+ termination_protection: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
3924
+ 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,
3925
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
3926
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
3927
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
3928
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
3929
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
3930
+ 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,
3931
+ ) -> None:
3932
+ """Type checking stubs"""
3933
+ pass
3934
+
3935
+ def _typecheckingstub__dc745a4a2be4154ae040b4398757488ee2a87a34d3b8c1e1f51b52a2a2f60166(
3936
+ scope: _constructs_77d1e7e8.Construct,
3937
+ import_to_id: builtins.str,
3938
+ import_from_id: builtins.str,
3939
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
3940
+ ) -> None:
3941
+ """Type checking stubs"""
3942
+ pass
3943
+
3944
+ def _typecheckingstub__a62fc7161400d7b4f860d59782c7df65db78aee0396e1926e60cae30f5d85e4f(
3945
+ value: typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedDatabaseMysqlNetwork, typing.Dict[builtins.str, typing.Any]]]],
3946
+ ) -> None:
3947
+ """Type checking stubs"""
3948
+ pass
3949
+
3950
+ def _typecheckingstub__809f94a9c0ea81787b761f3d6773f300f7cefd7dab496b917cef03427280fe8f(
3951
+ value: jsii.Number,
3952
+ ) -> None:
3953
+ """Type checking stubs"""
3954
+ pass
3955
+
3956
+ def _typecheckingstub__e7a4fb60d1135c0f8631d36600a5812527c23ae3a5aa4b793722b50e65fd246d(
3957
+ value: builtins.str,
3958
+ ) -> None:
3959
+ """Type checking stubs"""
3960
+ pass
3961
+
3962
+ def _typecheckingstub__2fcb88e825a08094ea35b5029118afc3cd252fe3cb6af4672e840930dae68ffb(
3963
+ value: typing.Mapping[builtins.str, builtins.str],
3964
+ ) -> None:
3965
+ """Type checking stubs"""
3966
+ pass
3967
+
3968
+ def _typecheckingstub__48df4258c07649eccd564db2bfea58f2d8c6e7775d42e302c4732ba2a3bfa35e(
3969
+ value: builtins.str,
3970
+ ) -> None:
3971
+ """Type checking stubs"""
3972
+ pass
3973
+
3974
+ def _typecheckingstub__10c67ec6c447fed554dbe7abe9233193df48d93398b1a1c03b2cc52fc4a56f21(
3975
+ value: builtins.str,
3976
+ ) -> None:
3977
+ """Type checking stubs"""
3978
+ pass
3979
+
3980
+ def _typecheckingstub__9b3317f4107eb3f0324a64874708fab95f67e816faecf7678312b22212af296f(
3981
+ value: builtins.str,
3982
+ ) -> None:
3983
+ """Type checking stubs"""
3984
+ pass
3985
+
3986
+ def _typecheckingstub__4a44dc38d52585561bb352263c2d4c0c7166d02e7d2ba26b1f06b0827bd1645c(
3987
+ value: builtins.str,
3988
+ ) -> None:
3989
+ """Type checking stubs"""
3990
+ pass
3991
+
3992
+ def _typecheckingstub__beb13051c8d159249aa225bdbcf28aeb76bc85a1aae08e9c31f60dfe116dfecc(
3993
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
3994
+ ) -> None:
3995
+ """Type checking stubs"""
3996
+ pass
3997
+
3998
+ def _typecheckingstub__8c9f7e6065020fa925bf719fbd0aa777653e104f39664706dabe6a435de915cf(
3999
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4000
+ ) -> None:
4001
+ """Type checking stubs"""
4002
+ pass
4003
+
4004
+ def _typecheckingstub__7141cc36a0c3b744c0e90aacfea1d6055f2e1bb6d23321a515475bd8c72cec64(
4005
+ value: builtins.str,
4006
+ ) -> None:
4007
+ """Type checking stubs"""
4008
+ pass
4009
+
4010
+ def _typecheckingstub__7732a2cf2cda58a00518cf2d610dba1c27c5673a60c4385a62472ceb732076d4(
4011
+ value: builtins.str,
4012
+ ) -> None:
4013
+ """Type checking stubs"""
4014
+ pass
4015
+
4016
+ def _typecheckingstub__34b41667608ff4cd5e9008da8d533f9c668a11f12f74531e6d80da050862de08(
4017
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4018
+ terraform_attribute: builtins.str,
4019
+ wraps_set: builtins.bool,
4020
+ ) -> None:
4021
+ """Type checking stubs"""
4022
+ pass
4023
+
4024
+ def _typecheckingstub__688fdae24b26e710345c109b7473013f94e8839a01038fa5240f646ae832ee6a(
4025
+ index: jsii.Number,
4026
+ ) -> None:
4027
+ """Type checking stubs"""
4028
+ pass
4029
+
4030
+ def _typecheckingstub__80d18976397eb5bc969ead28206ee1c2ebb44271012265fe7c6bc2410af32085(
4031
+ value: builtins.str,
4032
+ ) -> None:
4033
+ """Type checking stubs"""
4034
+ pass
4035
+
4036
+ def _typecheckingstub__017d94a1bed5a80567186f11930d76599611f085d87754b6317c3f1d30eac0f1(
4037
+ value: _cdktf_9a9027ec.IInterpolatingParent,
4038
+ ) -> None:
4039
+ """Type checking stubs"""
4040
+ pass
4041
+
4042
+ def _typecheckingstub__deb58afab231debdc3de38ded6700565608b4d5e89d03bcdea43e26c8f29e2cc(
4043
+ value: builtins.bool,
4044
+ ) -> None:
4045
+ """Type checking stubs"""
4046
+ pass
4047
+
4048
+ def _typecheckingstub__1ec6165c0e005f2cdab8e4bf91377627b2fee91a4c49330a894a38d618cb266d(
4049
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4050
+ terraform_attribute: builtins.str,
4051
+ complex_object_index: jsii.Number,
4052
+ complex_object_is_from_set: builtins.bool,
4053
+ ) -> None:
4054
+ """Type checking stubs"""
4055
+ pass
4056
+
4057
+ def _typecheckingstub__ae4277256ebc37247795b9bcfd0b223c65762e3553860601183ea80dd360dc0d(
4058
+ value: typing.Optional[ManagedDatabaseMysqlComponents],
4059
+ ) -> None:
4060
+ """Type checking stubs"""
4061
+ pass
4062
+
4063
+ def _typecheckingstub__10b2894ddd0553e9581d0116772434efafda3295976e9367656213631c5dc624(
4064
+ *,
4065
+ 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,
4066
+ count: typing.Optional[typing.Union[jsii.Number, _cdktf_9a9027ec.TerraformCount]] = None,
4067
+ depends_on: typing.Optional[typing.Sequence[_cdktf_9a9027ec.ITerraformDependable]] = None,
4068
+ for_each: typing.Optional[_cdktf_9a9027ec.ITerraformIterator] = None,
4069
+ lifecycle: typing.Optional[typing.Union[_cdktf_9a9027ec.TerraformResourceLifecycle, typing.Dict[builtins.str, typing.Any]]] = None,
4070
+ provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
4071
+ 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,
4072
+ name: builtins.str,
4073
+ plan: builtins.str,
4074
+ title: builtins.str,
4075
+ zone: builtins.str,
4076
+ additional_disk_space_gib: typing.Optional[jsii.Number] = None,
4077
+ id: typing.Optional[builtins.str] = None,
4078
+ labels: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4079
+ maintenance_window_dow: typing.Optional[builtins.str] = None,
4080
+ maintenance_window_time: typing.Optional[builtins.str] = None,
4081
+ network: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.Sequence[typing.Union[ManagedDatabaseMysqlNetwork, typing.Dict[builtins.str, typing.Any]]]]] = None,
4082
+ powered: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4083
+ properties: typing.Optional[typing.Union[ManagedDatabaseMysqlProperties, typing.Dict[builtins.str, typing.Any]]] = None,
4084
+ termination_protection: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4085
+ ) -> None:
4086
+ """Type checking stubs"""
4087
+ pass
4088
+
4089
+ def _typecheckingstub__74301fe81253b8784b9afba8d3a1dda97ee52965714102f2fb71f3cda82c72d9(
4090
+ *,
4091
+ family: builtins.str,
4092
+ name: builtins.str,
4093
+ type: builtins.str,
4094
+ uuid: builtins.str,
4095
+ ) -> None:
4096
+ """Type checking stubs"""
4097
+ pass
4098
+
4099
+ def _typecheckingstub__53c76b9a36fa2c5763e2ef8caea118bd60028c1ba65bcd4a2bf797076f44e2f7(
4100
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4101
+ terraform_attribute: builtins.str,
4102
+ wraps_set: builtins.bool,
4103
+ ) -> None:
4104
+ """Type checking stubs"""
4105
+ pass
4106
+
4107
+ def _typecheckingstub__127d61284845f513acef2e7d6fe15b6f6cc76e910f2d89ece042176d8bef7967(
4108
+ index: jsii.Number,
4109
+ ) -> None:
4110
+ """Type checking stubs"""
4111
+ pass
4112
+
4113
+ def _typecheckingstub__e6f90b60425a2e38d3af43a492643c17d866cb129ac68edbb3072b9614eb3113(
4114
+ value: builtins.str,
4115
+ ) -> None:
4116
+ """Type checking stubs"""
4117
+ pass
4118
+
4119
+ def _typecheckingstub__00c8b7b77f169dfb8910e16238b1e78991dc8e7e37374ca83ca93de027477e5c(
4120
+ value: _cdktf_9a9027ec.IInterpolatingParent,
4121
+ ) -> None:
4122
+ """Type checking stubs"""
4123
+ pass
4124
+
4125
+ def _typecheckingstub__f21cfe7d74b33287ba0ab770e586d1d2ccf031bf53abb32c3632361e3061f6a8(
4126
+ value: builtins.bool,
4127
+ ) -> None:
4128
+ """Type checking stubs"""
4129
+ pass
4130
+
4131
+ def _typecheckingstub__94c97a6da3042ffb69736a0b72c58cc97a1025de77ce3dea7b71a494beeb8ca7(
4132
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, typing.List[ManagedDatabaseMysqlNetwork]]],
4133
+ ) -> None:
4134
+ """Type checking stubs"""
4135
+ pass
4136
+
4137
+ def _typecheckingstub__2dd5c3a8b28af9ee2d43d563baf32e395fe43a74440a5ce7f47afaec5e1a113a(
4138
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4139
+ terraform_attribute: builtins.str,
4140
+ complex_object_index: jsii.Number,
4141
+ complex_object_is_from_set: builtins.bool,
4142
+ ) -> None:
4143
+ """Type checking stubs"""
4144
+ pass
4145
+
4146
+ def _typecheckingstub__32b05c92713a900a94460be120f24b5ea22785668076ee827760f5d736e28ec7(
4147
+ value: builtins.str,
4148
+ ) -> None:
4149
+ """Type checking stubs"""
4150
+ pass
4151
+
4152
+ def _typecheckingstub__927d6daa33e2f827191036084c87fe58d852f38b6a3609825470a2d55c533dc2(
4153
+ value: builtins.str,
4154
+ ) -> None:
4155
+ """Type checking stubs"""
4156
+ pass
4157
+
4158
+ def _typecheckingstub__1327b0d72083b5bdf8929efed7cdf969a5d3933e8d9b5192dff0931eb3ba6a9b(
4159
+ value: builtins.str,
4160
+ ) -> None:
4161
+ """Type checking stubs"""
4162
+ pass
4163
+
4164
+ def _typecheckingstub__05b71e4f1fb19a4fffec705975e756f2280605d835c59bdd94a71df18627a8bc(
4165
+ value: builtins.str,
4166
+ ) -> None:
4167
+ """Type checking stubs"""
4168
+ pass
4169
+
4170
+ def _typecheckingstub__afce920649c215f1f7f3adde9483ce3407c61af39dfacb0bcaa881777aa4f8dd(
4171
+ value: typing.Optional[typing.Union[_cdktf_9a9027ec.IResolvable, ManagedDatabaseMysqlNetwork]],
4172
+ ) -> None:
4173
+ """Type checking stubs"""
4174
+ pass
4175
+
4176
+ def _typecheckingstub__989e2763cac47db0558f0e09bb2669c13639bb78716a422e8f8c4eb11ef4418a(
4177
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4178
+ terraform_attribute: builtins.str,
4179
+ wraps_set: builtins.bool,
4180
+ ) -> None:
4181
+ """Type checking stubs"""
4182
+ pass
4183
+
4184
+ def _typecheckingstub__03bece7009f60e171555f364ad6c8bd3ebd4909c341071b47f847719e5090152(
4185
+ index: jsii.Number,
4186
+ ) -> None:
4187
+ """Type checking stubs"""
4188
+ pass
4189
+
4190
+ def _typecheckingstub__6bc42894cd75446060a318bed07cb53e96f5e05d71db1adc1e71664475609f06(
4191
+ value: builtins.str,
4192
+ ) -> None:
4193
+ """Type checking stubs"""
4194
+ pass
4195
+
4196
+ def _typecheckingstub__41e9094332f45eaa5d58fe2d5d98992caaa8fba697503fe24ff24b0640684980(
4197
+ value: _cdktf_9a9027ec.IInterpolatingParent,
4198
+ ) -> None:
4199
+ """Type checking stubs"""
4200
+ pass
4201
+
4202
+ def _typecheckingstub__287baddcdede19148df005876a5ab7752a44533620e042b8c358bd67bd66bc48(
4203
+ value: builtins.bool,
4204
+ ) -> None:
4205
+ """Type checking stubs"""
4206
+ pass
4207
+
4208
+ def _typecheckingstub__0fa4e7b4eb3edbb0a4e64637e5c937e026f3ebdf8313cb45509c105223b6f1ad(
4209
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4210
+ terraform_attribute: builtins.str,
4211
+ complex_object_index: jsii.Number,
4212
+ complex_object_is_from_set: builtins.bool,
4213
+ ) -> None:
4214
+ """Type checking stubs"""
4215
+ pass
4216
+
4217
+ def _typecheckingstub__7b164fbe1f2de1cd7f849e6d1a275455f99e36b5fea9891f0c6efac51327f5e0(
4218
+ value: typing.Optional[ManagedDatabaseMysqlNodeStates],
4219
+ ) -> None:
4220
+ """Type checking stubs"""
4221
+ pass
4222
+
4223
+ def _typecheckingstub__ce2580325d4e3944249fb431ec4736f99b4a41b6ee968fc06ae03aecf4930601(
4224
+ *,
4225
+ admin_password: typing.Optional[builtins.str] = None,
4226
+ admin_username: typing.Optional[builtins.str] = None,
4227
+ automatic_utility_network_ip_filter: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4228
+ backup_hour: typing.Optional[jsii.Number] = None,
4229
+ backup_minute: typing.Optional[jsii.Number] = None,
4230
+ binlog_retention_period: typing.Optional[jsii.Number] = None,
4231
+ connect_timeout: typing.Optional[jsii.Number] = None,
4232
+ default_time_zone: typing.Optional[builtins.str] = None,
4233
+ group_concat_max_len: typing.Optional[jsii.Number] = None,
4234
+ information_schema_stats_expiry: typing.Optional[jsii.Number] = None,
4235
+ innodb_change_buffer_max_size: typing.Optional[jsii.Number] = None,
4236
+ innodb_flush_neighbors: typing.Optional[jsii.Number] = None,
4237
+ innodb_ft_min_token_size: typing.Optional[jsii.Number] = None,
4238
+ innodb_ft_server_stopword_table: typing.Optional[builtins.str] = None,
4239
+ innodb_lock_wait_timeout: typing.Optional[jsii.Number] = None,
4240
+ innodb_log_buffer_size: typing.Optional[jsii.Number] = None,
4241
+ innodb_online_alter_log_max_size: typing.Optional[jsii.Number] = None,
4242
+ innodb_print_all_deadlocks: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4243
+ innodb_read_io_threads: typing.Optional[jsii.Number] = None,
4244
+ innodb_rollback_on_timeout: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4245
+ innodb_thread_concurrency: typing.Optional[jsii.Number] = None,
4246
+ innodb_write_io_threads: typing.Optional[jsii.Number] = None,
4247
+ interactive_timeout: typing.Optional[jsii.Number] = None,
4248
+ internal_tmp_mem_storage_engine: typing.Optional[builtins.str] = None,
4249
+ ip_filter: typing.Optional[typing.Sequence[builtins.str]] = None,
4250
+ log_output: typing.Optional[builtins.str] = None,
4251
+ long_query_time: typing.Optional[jsii.Number] = None,
4252
+ max_allowed_packet: typing.Optional[jsii.Number] = None,
4253
+ max_heap_table_size: typing.Optional[jsii.Number] = None,
4254
+ migration: typing.Optional[typing.Union[ManagedDatabaseMysqlPropertiesMigration, typing.Dict[builtins.str, typing.Any]]] = None,
4255
+ mysql_incremental_backup: typing.Optional[typing.Union[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup, typing.Dict[builtins.str, typing.Any]]] = None,
4256
+ net_buffer_length: typing.Optional[jsii.Number] = None,
4257
+ net_read_timeout: typing.Optional[jsii.Number] = None,
4258
+ net_write_timeout: typing.Optional[jsii.Number] = None,
4259
+ public_access: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4260
+ service_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4261
+ slow_query_log: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4262
+ sort_buffer_size: typing.Optional[jsii.Number] = None,
4263
+ sql_mode: typing.Optional[builtins.str] = None,
4264
+ sql_require_primary_key: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4265
+ tmp_table_size: typing.Optional[jsii.Number] = None,
4266
+ version: typing.Optional[builtins.str] = None,
4267
+ wait_timeout: typing.Optional[jsii.Number] = None,
4268
+ ) -> None:
4269
+ """Type checking stubs"""
4270
+ pass
4271
+
4272
+ def _typecheckingstub__ee5a974af6d286f0c9f5d3877bba799be0317b62fea7a2094229566a454f29ae(
4273
+ *,
4274
+ dbname: typing.Optional[builtins.str] = None,
4275
+ host: typing.Optional[builtins.str] = None,
4276
+ ignore_dbs: typing.Optional[builtins.str] = None,
4277
+ ignore_roles: typing.Optional[builtins.str] = None,
4278
+ method: typing.Optional[builtins.str] = None,
4279
+ password: typing.Optional[builtins.str] = None,
4280
+ port: typing.Optional[jsii.Number] = None,
4281
+ ssl: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4282
+ username: typing.Optional[builtins.str] = None,
4283
+ ) -> None:
4284
+ """Type checking stubs"""
4285
+ pass
4286
+
4287
+ def _typecheckingstub__6a01fc1b8e4fe6076b8d9bd954ccaba985925db529af16e76d918c88b96b4663(
4288
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4289
+ terraform_attribute: builtins.str,
4290
+ ) -> None:
4291
+ """Type checking stubs"""
4292
+ pass
4293
+
4294
+ def _typecheckingstub__ed74acd004a8935099f52967944968cb588e434802de042e76563b2d3662a147(
4295
+ value: builtins.str,
4296
+ ) -> None:
4297
+ """Type checking stubs"""
4298
+ pass
4299
+
4300
+ def _typecheckingstub__01962d74812e4792ed317a7081fc6b520bffc4c243c3b97aba89b51005d035a4(
4301
+ value: builtins.str,
4302
+ ) -> None:
4303
+ """Type checking stubs"""
4304
+ pass
4305
+
4306
+ def _typecheckingstub__8317a24c10ef2071420b92dfe3c216bab96b5b38b359c59911d72c6053b5b60c(
4307
+ value: builtins.str,
4308
+ ) -> None:
4309
+ """Type checking stubs"""
4310
+ pass
4311
+
4312
+ def _typecheckingstub__83e243984a5d4e4adcc47a7f5ca7da671145c65dfe5b14eccf70edc058f064ab(
4313
+ value: builtins.str,
4314
+ ) -> None:
4315
+ """Type checking stubs"""
4316
+ pass
4317
+
4318
+ def _typecheckingstub__f26b3e2a45bc82a02636d9a7680ead48319e322e80c13fd16d7903680e47f553(
4319
+ value: builtins.str,
4320
+ ) -> None:
4321
+ """Type checking stubs"""
4322
+ pass
4323
+
4324
+ def _typecheckingstub__bd6b4044cd38e70ec4e0635fadb1f1ec5e57e12d13a8b2866cfb7a39398e99bb(
4325
+ value: builtins.str,
4326
+ ) -> None:
4327
+ """Type checking stubs"""
4328
+ pass
4329
+
4330
+ def _typecheckingstub__e3b76b32ace200420e536521de4f6fa3bba38a583e70cee38558f93a74579bbf(
4331
+ value: jsii.Number,
4332
+ ) -> None:
4333
+ """Type checking stubs"""
4334
+ pass
4335
+
4336
+ def _typecheckingstub__13b5262b5f856305124efe73b5fd349ba8e06aca56657419960a8b0a617e25cc(
4337
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4338
+ ) -> None:
4339
+ """Type checking stubs"""
4340
+ pass
4341
+
4342
+ def _typecheckingstub__fa2b1683b14f90dc010901dec71bf384b67aaa37568f2c9dd270e7fb8eca2230(
4343
+ value: builtins.str,
4344
+ ) -> None:
4345
+ """Type checking stubs"""
4346
+ pass
4347
+
4348
+ def _typecheckingstub__14ec505c37370540c64c79ea9b2bfc9828b39dfd6ffbaf4ac56000b8528d5cbd(
4349
+ value: typing.Optional[ManagedDatabaseMysqlPropertiesMigration],
4350
+ ) -> None:
4351
+ """Type checking stubs"""
4352
+ pass
4353
+
4354
+ def _typecheckingstub__1964e1dfe21845d236cd3d7cace81e77064622d963b8c0cd67bd1f44641d8232(
4355
+ *,
4356
+ enabled: typing.Optional[typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable]] = None,
4357
+ full_backup_week_schedule: typing.Optional[builtins.str] = None,
4358
+ ) -> None:
4359
+ """Type checking stubs"""
4360
+ pass
4361
+
4362
+ def _typecheckingstub__fb845a6b5012c2b17a325a96ad64118ca2a3a1421e9e96b57cafc7d17b34f292(
4363
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4364
+ terraform_attribute: builtins.str,
4365
+ ) -> None:
4366
+ """Type checking stubs"""
4367
+ pass
4368
+
4369
+ def _typecheckingstub__4e00ca2cc46f9276d43329a202dba92fa69a8cab98988d3fa72c39ec0911feaf(
4370
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4371
+ ) -> None:
4372
+ """Type checking stubs"""
4373
+ pass
4374
+
4375
+ def _typecheckingstub__38553b4e914ae923324afea74d0c621150923b235a44022144561c25951346cc(
4376
+ value: builtins.str,
4377
+ ) -> None:
4378
+ """Type checking stubs"""
4379
+ pass
4380
+
4381
+ def _typecheckingstub__1b885de8733f78cdb8686c81eedaff62ae0a5632ea7e5c1b4383953b8359ff7c(
4382
+ value: typing.Optional[ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup],
4383
+ ) -> None:
4384
+ """Type checking stubs"""
4385
+ pass
4386
+
4387
+ def _typecheckingstub__4dd4ed80cb9fd34d7d226704675ed2775db5ea2ccb1b933269edb7e0acd9c4fd(
4388
+ terraform_resource: _cdktf_9a9027ec.IInterpolatingParent,
4389
+ terraform_attribute: builtins.str,
4390
+ ) -> None:
4391
+ """Type checking stubs"""
4392
+ pass
4393
+
4394
+ def _typecheckingstub__4eff5f4868d5bb12ae52075fad32cc522ff4d67c1f0725343b65ceccf3d26131(
4395
+ value: builtins.str,
4396
+ ) -> None:
4397
+ """Type checking stubs"""
4398
+ pass
4399
+
4400
+ def _typecheckingstub__a6ecefb7a241c029a6f8bdf60f03bc1c901031688d400c73e2077054204b2d4d(
4401
+ value: builtins.str,
4402
+ ) -> None:
4403
+ """Type checking stubs"""
4404
+ pass
4405
+
4406
+ def _typecheckingstub__0077171c6793e105b57c58f26c5eccab995b513ae21d2edd5eb376835c26fb57(
4407
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4408
+ ) -> None:
4409
+ """Type checking stubs"""
4410
+ pass
4411
+
4412
+ def _typecheckingstub__bfda925789726fc478fb6e9c25ed310b3c2d5d0d2eb38e33f3f06991670b1fc0(
4413
+ value: jsii.Number,
4414
+ ) -> None:
4415
+ """Type checking stubs"""
4416
+ pass
4417
+
4418
+ def _typecheckingstub__d8387e10b822b051ef1d7d248d600bc6a627ce3d53ef51bdb3d35baa6c8a9c79(
4419
+ value: jsii.Number,
4420
+ ) -> None:
4421
+ """Type checking stubs"""
4422
+ pass
4423
+
4424
+ def _typecheckingstub__adb2b7fe28d35ffbd5dc61b42e471da9235b519934c0cf2b54e66a6cba2769d3(
4425
+ value: jsii.Number,
4426
+ ) -> None:
4427
+ """Type checking stubs"""
4428
+ pass
4429
+
4430
+ def _typecheckingstub__244c5cca2f2bb6b2cbf36edfebcd16134288c4f0cdcd06fc9bc5e887138a6533(
4431
+ value: jsii.Number,
4432
+ ) -> None:
4433
+ """Type checking stubs"""
4434
+ pass
4435
+
4436
+ def _typecheckingstub__c24961559469f2c54fad02db5d36db8f2be6223c7d562b818f83fd070c49503f(
4437
+ value: builtins.str,
4438
+ ) -> None:
4439
+ """Type checking stubs"""
4440
+ pass
4441
+
4442
+ def _typecheckingstub__e434daac5f96db599fa63ee8f3950fca6a852291747a0d175f039361c9765872(
4443
+ value: jsii.Number,
4444
+ ) -> None:
4445
+ """Type checking stubs"""
4446
+ pass
4447
+
4448
+ def _typecheckingstub__a88a50f90b2c7002fe3db3e94a4ea87c7423326f9aa1ce934da5a129f5bf3c17(
4449
+ value: jsii.Number,
4450
+ ) -> None:
4451
+ """Type checking stubs"""
4452
+ pass
4453
+
4454
+ def _typecheckingstub__b3746ba590c0ee59f4ebd0fc2a77ca7c2351bc1f348d60cfb3cd712bca687743(
4455
+ value: jsii.Number,
4456
+ ) -> None:
4457
+ """Type checking stubs"""
4458
+ pass
4459
+
4460
+ def _typecheckingstub__feb5034ec10b5b26fc8e3b8128725a5f19fa53e4a0fc95855cddab729dd93e6a(
4461
+ value: jsii.Number,
4462
+ ) -> None:
4463
+ """Type checking stubs"""
4464
+ pass
4465
+
4466
+ def _typecheckingstub__157f20e90e8a5fdf1e18b16ba297d2b6e248258f423cd9546f20ea5a1321d001(
4467
+ value: jsii.Number,
4468
+ ) -> None:
4469
+ """Type checking stubs"""
4470
+ pass
4471
+
4472
+ def _typecheckingstub__49588ac2cf49f2d73a79f0f70ae6ed4a8f60a8eaf1f827f99c0c1ddab9fceffb(
4473
+ value: builtins.str,
4474
+ ) -> None:
4475
+ """Type checking stubs"""
4476
+ pass
4477
+
4478
+ def _typecheckingstub__8805feb0a905d8bb176cdd8478ef200d24902405aa6c969241c6feb3fa51c558(
4479
+ value: jsii.Number,
4480
+ ) -> None:
4481
+ """Type checking stubs"""
4482
+ pass
4483
+
4484
+ def _typecheckingstub__4836318ace4b5113ec6900a579bfbfdb9eef4e5b61285ca8a2e35a5eb19c8d9f(
4485
+ value: jsii.Number,
4486
+ ) -> None:
4487
+ """Type checking stubs"""
4488
+ pass
4489
+
4490
+ def _typecheckingstub__63fe9f771fba7af459b76c36f0a04274b20a86290be56a2f7ae3ceaef8819752(
4491
+ value: jsii.Number,
4492
+ ) -> None:
4493
+ """Type checking stubs"""
4494
+ pass
4495
+
4496
+ def _typecheckingstub__7769a033f5366008076bb4ef7b8919e72819d5ddc0e454d3ef11e133205c37a6(
4497
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4498
+ ) -> None:
4499
+ """Type checking stubs"""
4500
+ pass
4501
+
4502
+ def _typecheckingstub__290d8e8fa2c8d1dc4cc1d8c88e345dad38aa92a1fea90ed574d033ddcf8f5002(
4503
+ value: jsii.Number,
4504
+ ) -> None:
4505
+ """Type checking stubs"""
4506
+ pass
4507
+
4508
+ def _typecheckingstub__3c11180360ba295b9f58a8b122c238af9812b0690ae4ff10ec71d92ab0d22ae4(
4509
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4510
+ ) -> None:
4511
+ """Type checking stubs"""
4512
+ pass
4513
+
4514
+ def _typecheckingstub__bcc986e128bf332cd06fd464c2a5585373baca759c9251263454173a2fc9b76f(
4515
+ value: jsii.Number,
4516
+ ) -> None:
4517
+ """Type checking stubs"""
4518
+ pass
4519
+
4520
+ def _typecheckingstub__445b0b8ad0a5511a9ee649231ead8b458ebd595ed181e7125236de52cd994f63(
4521
+ value: jsii.Number,
4522
+ ) -> None:
4523
+ """Type checking stubs"""
4524
+ pass
4525
+
4526
+ def _typecheckingstub__f7ae88e786b8f906e86e53fac22e5a36d705e4669a5b3666b6887fb5711c0c77(
4527
+ value: jsii.Number,
4528
+ ) -> None:
4529
+ """Type checking stubs"""
4530
+ pass
4531
+
4532
+ def _typecheckingstub__9fd6b53bbf642281b0c693d7bc5e4d74286630c223315e934132f731948f3da1(
4533
+ value: builtins.str,
4534
+ ) -> None:
4535
+ """Type checking stubs"""
4536
+ pass
4537
+
4538
+ def _typecheckingstub__62d1186ba338160863d0f6ca2b6a930329e5a12f1766e1a56c6310b1a82b309b(
4539
+ value: typing.List[builtins.str],
4540
+ ) -> None:
4541
+ """Type checking stubs"""
4542
+ pass
4543
+
4544
+ def _typecheckingstub__cd74b822d5bffe20b4e08b8e008bdf292388bf335c14fe7d958a38c2866e0189(
4545
+ value: builtins.str,
4546
+ ) -> None:
4547
+ """Type checking stubs"""
4548
+ pass
4549
+
4550
+ def _typecheckingstub__8f1f337cf4d9efc75ecd5295ef8ec9b2114e9409e0f743fc9cff9d37adbe5d93(
4551
+ value: jsii.Number,
4552
+ ) -> None:
4553
+ """Type checking stubs"""
4554
+ pass
4555
+
4556
+ def _typecheckingstub__a2d632aa9b0e2406312012c1cee1c53f68ed87a9a3ebb403f82dc0c902336c78(
4557
+ value: jsii.Number,
4558
+ ) -> None:
4559
+ """Type checking stubs"""
4560
+ pass
4561
+
4562
+ def _typecheckingstub__ba739f0bae2ab6909061790026a04e7da9eec4d3e9c8703fda506687f42e5cc0(
4563
+ value: jsii.Number,
4564
+ ) -> None:
4565
+ """Type checking stubs"""
4566
+ pass
4567
+
4568
+ def _typecheckingstub__b0a040f8c2b33ac991cfe7b731460da1ecc8bab940cb58a30c67f101eb64bd7b(
4569
+ value: jsii.Number,
4570
+ ) -> None:
4571
+ """Type checking stubs"""
4572
+ pass
4573
+
4574
+ def _typecheckingstub__d3d32e5573df63e11c69495b478bc001c2ed85ddd03d593da5ecdfce22282ae0(
4575
+ value: jsii.Number,
4576
+ ) -> None:
4577
+ """Type checking stubs"""
4578
+ pass
4579
+
4580
+ def _typecheckingstub__7a3c79c909087d181e7f57ae35f51997dda8c0b4d6e22e17bdac74319cb1b694(
4581
+ value: jsii.Number,
4582
+ ) -> None:
4583
+ """Type checking stubs"""
4584
+ pass
4585
+
4586
+ def _typecheckingstub__f0c7a48b8afc4486c1ed957a0b6ee942cf9d81126fb4c501e657ffbc32023a14(
4587
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4588
+ ) -> None:
4589
+ """Type checking stubs"""
4590
+ pass
4591
+
4592
+ def _typecheckingstub__82329f86254d0f011ea44eda334ce520aac47b19d38a1f8284d24d309a640a31(
4593
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4594
+ ) -> None:
4595
+ """Type checking stubs"""
4596
+ pass
4597
+
4598
+ def _typecheckingstub__00f5ea01b27fd60b6ec439436eb79d5e007e0a6b0434c19b0a353c64ef989768(
4599
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4600
+ ) -> None:
4601
+ """Type checking stubs"""
4602
+ pass
4603
+
4604
+ def _typecheckingstub__454284c4d62429bbfb3990c93433c9fb60e9e3d69eee5b61d2b6538ea74c83b2(
4605
+ value: jsii.Number,
4606
+ ) -> None:
4607
+ """Type checking stubs"""
4608
+ pass
4609
+
4610
+ def _typecheckingstub__8c937bd0437ff728ad468d59cd2f18f0dd99bdb5ddcb838518e146db72fb76ba(
4611
+ value: builtins.str,
4612
+ ) -> None:
4613
+ """Type checking stubs"""
4614
+ pass
4615
+
4616
+ def _typecheckingstub__eb564b1b6a7a67f152de9a5baf1c9b00517aaa656a156837ff104367f809673e(
4617
+ value: typing.Union[builtins.bool, _cdktf_9a9027ec.IResolvable],
4618
+ ) -> None:
4619
+ """Type checking stubs"""
4620
+ pass
4621
+
4622
+ def _typecheckingstub__2c2d839cc9c7bdb6e36ed25e9bc4de414e41a83ebefda4cfe9cd68c820eb097e(
4623
+ value: jsii.Number,
4624
+ ) -> None:
4625
+ """Type checking stubs"""
4626
+ pass
4627
+
4628
+ def _typecheckingstub__bb5a1560d7d0fa20b32fcb714ab971ef9b90ea20ab247751460b543c169066a7(
4629
+ value: builtins.str,
4630
+ ) -> None:
4631
+ """Type checking stubs"""
4632
+ pass
4633
+
4634
+ def _typecheckingstub__5b38f4600f98ee7be6bb71c72ce2612be3c1b2b8ded826ca388238b108bb20cd(
4635
+ value: jsii.Number,
4636
+ ) -> None:
4637
+ """Type checking stubs"""
4638
+ pass
4639
+
4640
+ def _typecheckingstub__2baaab4cfec9a45413f195dbf67b84628ad02d42383bf17f055f05297b03bb0f(
4641
+ value: typing.Optional[ManagedDatabaseMysqlProperties],
4642
+ ) -> None:
4643
+ """Type checking stubs"""
4644
+ pass