pulumi-linode 5.1.0a1752810302__py3-none-any.whl → 5.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1.dist-info}/METADATA +1 -1
- pulumi_linode-5.1.1.dist-info/RECORD +126 -0
- pulumi_linode-5.1.0a1752810302.dist-info/RECORD +0 -126
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -22,88 +21,88 @@ __all__ = ['DatabaseMysqlV2Args', 'DatabaseMysqlV2']
|
|
|
22
21
|
@pulumi.input_type
|
|
23
22
|
class DatabaseMysqlV2Args:
|
|
24
23
|
def __init__(__self__, *,
|
|
25
|
-
engine_id: pulumi.Input[
|
|
26
|
-
label: pulumi.Input[
|
|
27
|
-
region: pulumi.Input[
|
|
28
|
-
type: pulumi.Input[
|
|
29
|
-
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
30
|
-
cluster_size: Optional[pulumi.Input[
|
|
31
|
-
engine_config_binlog_retention_period: Optional[pulumi.Input[
|
|
32
|
-
engine_config_mysql_connect_timeout: Optional[pulumi.Input[
|
|
33
|
-
engine_config_mysql_default_time_zone: Optional[pulumi.Input[
|
|
34
|
-
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[
|
|
35
|
-
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[
|
|
36
|
-
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[
|
|
37
|
-
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[
|
|
38
|
-
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[
|
|
39
|
-
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[
|
|
40
|
-
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[
|
|
41
|
-
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[
|
|
42
|
-
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[
|
|
43
|
-
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[
|
|
44
|
-
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[
|
|
45
|
-
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[
|
|
46
|
-
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[
|
|
47
|
-
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[
|
|
48
|
-
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[
|
|
49
|
-
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[
|
|
50
|
-
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[
|
|
51
|
-
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[
|
|
52
|
-
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[
|
|
53
|
-
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[
|
|
54
|
-
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[
|
|
55
|
-
engine_config_mysql_sql_mode: Optional[pulumi.Input[
|
|
56
|
-
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[
|
|
57
|
-
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[
|
|
58
|
-
engine_config_mysql_wait_timeout: Optional[pulumi.Input[
|
|
59
|
-
fork_restore_time: Optional[pulumi.Input[
|
|
60
|
-
fork_source: Optional[pulumi.Input[
|
|
61
|
-
suspended: Optional[pulumi.Input[
|
|
24
|
+
engine_id: pulumi.Input[_builtins.str],
|
|
25
|
+
label: pulumi.Input[_builtins.str],
|
|
26
|
+
region: pulumi.Input[_builtins.str],
|
|
27
|
+
type: pulumi.Input[_builtins.str],
|
|
28
|
+
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
29
|
+
cluster_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
30
|
+
engine_config_binlog_retention_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
31
|
+
engine_config_mysql_connect_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
32
|
+
engine_config_mysql_default_time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
|
+
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[_builtins.float]] = None,
|
|
34
|
+
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[_builtins.int]] = None,
|
|
35
|
+
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
36
|
+
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[_builtins.int]] = None,
|
|
37
|
+
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
38
|
+
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[_builtins.str]] = None,
|
|
39
|
+
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
40
|
+
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
41
|
+
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
42
|
+
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
43
|
+
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
44
|
+
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
|
|
45
|
+
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
46
|
+
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
47
|
+
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
48
|
+
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[_builtins.int]] = None,
|
|
49
|
+
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
50
|
+
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[_builtins.int]] = None,
|
|
51
|
+
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
52
|
+
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
53
|
+
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
54
|
+
engine_config_mysql_sql_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
55
|
+
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
56
|
+
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
57
|
+
engine_config_mysql_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
58
|
+
fork_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
59
|
+
fork_source: Optional[pulumi.Input[_builtins.int]] = None,
|
|
60
|
+
suspended: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
62
61
|
timeouts: Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']] = None,
|
|
63
62
|
updates: Optional[pulumi.Input['DatabaseMysqlV2UpdatesArgs']] = None):
|
|
64
63
|
"""
|
|
65
64
|
The set of arguments for constructing a DatabaseMysqlV2 resource.
|
|
66
|
-
:param pulumi.Input[
|
|
67
|
-
:param pulumi.Input[
|
|
68
|
-
:param pulumi.Input[
|
|
69
|
-
:param pulumi.Input[
|
|
65
|
+
:param pulumi.Input[_builtins.str] engine_id: The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
66
|
+
:param pulumi.Input[_builtins.str] label: A unique, user-defined string referring to the Managed Database.
|
|
67
|
+
:param pulumi.Input[_builtins.str] region: The region to use for the Managed Database.
|
|
68
|
+
:param pulumi.Input[_builtins.str] type: The Linode Instance type used for the nodes of the Managed Database.
|
|
70
69
|
|
|
71
70
|
- - -
|
|
72
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
73
|
-
:param pulumi.Input[
|
|
74
|
-
:param pulumi.Input[
|
|
75
|
-
:param pulumi.Input[
|
|
76
|
-
:param pulumi.Input[
|
|
77
|
-
:param pulumi.Input[
|
|
78
|
-
:param pulumi.Input[
|
|
79
|
-
:param pulumi.Input[
|
|
80
|
-
:param pulumi.Input[
|
|
81
|
-
:param pulumi.Input[
|
|
82
|
-
:param pulumi.Input[
|
|
83
|
-
:param pulumi.Input[
|
|
84
|
-
:param pulumi.Input[
|
|
85
|
-
:param pulumi.Input[
|
|
86
|
-
:param pulumi.Input[
|
|
87
|
-
:param pulumi.Input[
|
|
88
|
-
:param pulumi.Input[
|
|
89
|
-
:param pulumi.Input[
|
|
90
|
-
:param pulumi.Input[
|
|
91
|
-
:param pulumi.Input[
|
|
92
|
-
:param pulumi.Input[
|
|
93
|
-
:param pulumi.Input[
|
|
94
|
-
:param pulumi.Input[
|
|
95
|
-
:param pulumi.Input[
|
|
96
|
-
:param pulumi.Input[
|
|
97
|
-
:param pulumi.Input[
|
|
98
|
-
:param pulumi.Input[
|
|
99
|
-
:param pulumi.Input[
|
|
100
|
-
:param pulumi.Input[
|
|
101
|
-
:param pulumi.Input[
|
|
102
|
-
:param pulumi.Input[
|
|
103
|
-
:param pulumi.Input[
|
|
71
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allow_lists: A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
72
|
+
:param pulumi.Input[_builtins.int] cluster_size: The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
73
|
+
:param pulumi.Input[_builtins.int] engine_config_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.
|
|
74
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
75
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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.
|
|
76
|
+
:param pulumi.Input[_builtins.float] engine_config_mysql_group_concat_max_len: The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
77
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_information_schema_stats_expiry: The time, in seconds, before cached statistics expire.
|
|
78
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
79
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
80
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
81
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
82
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
83
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
84
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
85
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
86
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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.
|
|
87
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
88
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
89
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
90
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
|
|
91
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
92
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
93
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
94
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
|
95
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
96
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
97
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
98
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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. (default `true`)
|
|
99
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
100
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
101
|
+
:param pulumi.Input[_builtins.str] fork_restore_time: The database timestamp from which it was restored.
|
|
102
|
+
:param pulumi.Input[_builtins.int] fork_source: The ID of the database that was forked from.
|
|
104
103
|
|
|
105
104
|
* `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
106
|
-
:param pulumi.Input[
|
|
105
|
+
:param pulumi.Input[_builtins.bool] suspended: Whether this Managed Database should be suspended.
|
|
107
106
|
:param pulumi.Input['DatabaseMysqlV2UpdatesArgs'] updates: Configuration settings for automated patch update maintenance for the Managed Database.
|
|
108
107
|
"""
|
|
109
108
|
pulumi.set(__self__, "engine_id", engine_id)
|
|
@@ -181,45 +180,45 @@ class DatabaseMysqlV2Args:
|
|
|
181
180
|
if updates is not None:
|
|
182
181
|
pulumi.set(__self__, "updates", updates)
|
|
183
182
|
|
|
184
|
-
@property
|
|
183
|
+
@_builtins.property
|
|
185
184
|
@pulumi.getter(name="engineId")
|
|
186
|
-
def engine_id(self) -> pulumi.Input[
|
|
185
|
+
def engine_id(self) -> pulumi.Input[_builtins.str]:
|
|
187
186
|
"""
|
|
188
187
|
The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
189
188
|
"""
|
|
190
189
|
return pulumi.get(self, "engine_id")
|
|
191
190
|
|
|
192
191
|
@engine_id.setter
|
|
193
|
-
def engine_id(self, value: pulumi.Input[
|
|
192
|
+
def engine_id(self, value: pulumi.Input[_builtins.str]):
|
|
194
193
|
pulumi.set(self, "engine_id", value)
|
|
195
194
|
|
|
196
|
-
@property
|
|
195
|
+
@_builtins.property
|
|
197
196
|
@pulumi.getter
|
|
198
|
-
def label(self) -> pulumi.Input[
|
|
197
|
+
def label(self) -> pulumi.Input[_builtins.str]:
|
|
199
198
|
"""
|
|
200
199
|
A unique, user-defined string referring to the Managed Database.
|
|
201
200
|
"""
|
|
202
201
|
return pulumi.get(self, "label")
|
|
203
202
|
|
|
204
203
|
@label.setter
|
|
205
|
-
def label(self, value: pulumi.Input[
|
|
204
|
+
def label(self, value: pulumi.Input[_builtins.str]):
|
|
206
205
|
pulumi.set(self, "label", value)
|
|
207
206
|
|
|
208
|
-
@property
|
|
207
|
+
@_builtins.property
|
|
209
208
|
@pulumi.getter
|
|
210
|
-
def region(self) -> pulumi.Input[
|
|
209
|
+
def region(self) -> pulumi.Input[_builtins.str]:
|
|
211
210
|
"""
|
|
212
211
|
The region to use for the Managed Database.
|
|
213
212
|
"""
|
|
214
213
|
return pulumi.get(self, "region")
|
|
215
214
|
|
|
216
215
|
@region.setter
|
|
217
|
-
def region(self, value: pulumi.Input[
|
|
216
|
+
def region(self, value: pulumi.Input[_builtins.str]):
|
|
218
217
|
pulumi.set(self, "region", value)
|
|
219
218
|
|
|
220
|
-
@property
|
|
219
|
+
@_builtins.property
|
|
221
220
|
@pulumi.getter
|
|
222
|
-
def type(self) -> pulumi.Input[
|
|
221
|
+
def type(self) -> pulumi.Input[_builtins.str]:
|
|
223
222
|
"""
|
|
224
223
|
The Linode Instance type used for the nodes of the Managed Database.
|
|
225
224
|
|
|
@@ -228,384 +227,384 @@ class DatabaseMysqlV2Args:
|
|
|
228
227
|
return pulumi.get(self, "type")
|
|
229
228
|
|
|
230
229
|
@type.setter
|
|
231
|
-
def type(self, value: pulumi.Input[
|
|
230
|
+
def type(self, value: pulumi.Input[_builtins.str]):
|
|
232
231
|
pulumi.set(self, "type", value)
|
|
233
232
|
|
|
234
|
-
@property
|
|
233
|
+
@_builtins.property
|
|
235
234
|
@pulumi.getter(name="allowLists")
|
|
236
|
-
def allow_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
235
|
+
def allow_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
237
236
|
"""
|
|
238
237
|
A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
239
238
|
"""
|
|
240
239
|
return pulumi.get(self, "allow_lists")
|
|
241
240
|
|
|
242
241
|
@allow_lists.setter
|
|
243
|
-
def allow_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
242
|
+
def allow_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
244
243
|
pulumi.set(self, "allow_lists", value)
|
|
245
244
|
|
|
246
|
-
@property
|
|
245
|
+
@_builtins.property
|
|
247
246
|
@pulumi.getter(name="clusterSize")
|
|
248
|
-
def cluster_size(self) -> Optional[pulumi.Input[
|
|
247
|
+
def cluster_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
249
248
|
"""
|
|
250
249
|
The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
251
250
|
"""
|
|
252
251
|
return pulumi.get(self, "cluster_size")
|
|
253
252
|
|
|
254
253
|
@cluster_size.setter
|
|
255
|
-
def cluster_size(self, value: Optional[pulumi.Input[
|
|
254
|
+
def cluster_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
256
255
|
pulumi.set(self, "cluster_size", value)
|
|
257
256
|
|
|
258
|
-
@property
|
|
257
|
+
@_builtins.property
|
|
259
258
|
@pulumi.getter(name="engineConfigBinlogRetentionPeriod")
|
|
260
|
-
def engine_config_binlog_retention_period(self) -> Optional[pulumi.Input[
|
|
259
|
+
def engine_config_binlog_retention_period(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
261
260
|
"""
|
|
262
261
|
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.
|
|
263
262
|
"""
|
|
264
263
|
return pulumi.get(self, "engine_config_binlog_retention_period")
|
|
265
264
|
|
|
266
265
|
@engine_config_binlog_retention_period.setter
|
|
267
|
-
def engine_config_binlog_retention_period(self, value: Optional[pulumi.Input[
|
|
266
|
+
def engine_config_binlog_retention_period(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
268
267
|
pulumi.set(self, "engine_config_binlog_retention_period", value)
|
|
269
268
|
|
|
270
|
-
@property
|
|
269
|
+
@_builtins.property
|
|
271
270
|
@pulumi.getter(name="engineConfigMysqlConnectTimeout")
|
|
272
|
-
def engine_config_mysql_connect_timeout(self) -> Optional[pulumi.Input[
|
|
271
|
+
def engine_config_mysql_connect_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
273
272
|
"""
|
|
274
273
|
The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
275
274
|
"""
|
|
276
275
|
return pulumi.get(self, "engine_config_mysql_connect_timeout")
|
|
277
276
|
|
|
278
277
|
@engine_config_mysql_connect_timeout.setter
|
|
279
|
-
def engine_config_mysql_connect_timeout(self, value: Optional[pulumi.Input[
|
|
278
|
+
def engine_config_mysql_connect_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
280
279
|
pulumi.set(self, "engine_config_mysql_connect_timeout", value)
|
|
281
280
|
|
|
282
|
-
@property
|
|
281
|
+
@_builtins.property
|
|
283
282
|
@pulumi.getter(name="engineConfigMysqlDefaultTimeZone")
|
|
284
|
-
def engine_config_mysql_default_time_zone(self) -> Optional[pulumi.Input[
|
|
283
|
+
def engine_config_mysql_default_time_zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
285
284
|
"""
|
|
286
285
|
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.
|
|
287
286
|
"""
|
|
288
287
|
return pulumi.get(self, "engine_config_mysql_default_time_zone")
|
|
289
288
|
|
|
290
289
|
@engine_config_mysql_default_time_zone.setter
|
|
291
|
-
def engine_config_mysql_default_time_zone(self, value: Optional[pulumi.Input[
|
|
290
|
+
def engine_config_mysql_default_time_zone(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
292
291
|
pulumi.set(self, "engine_config_mysql_default_time_zone", value)
|
|
293
292
|
|
|
294
|
-
@property
|
|
293
|
+
@_builtins.property
|
|
295
294
|
@pulumi.getter(name="engineConfigMysqlGroupConcatMaxLen")
|
|
296
|
-
def engine_config_mysql_group_concat_max_len(self) -> Optional[pulumi.Input[
|
|
295
|
+
def engine_config_mysql_group_concat_max_len(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
297
296
|
"""
|
|
298
297
|
The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
299
298
|
"""
|
|
300
299
|
return pulumi.get(self, "engine_config_mysql_group_concat_max_len")
|
|
301
300
|
|
|
302
301
|
@engine_config_mysql_group_concat_max_len.setter
|
|
303
|
-
def engine_config_mysql_group_concat_max_len(self, value: Optional[pulumi.Input[
|
|
302
|
+
def engine_config_mysql_group_concat_max_len(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
304
303
|
pulumi.set(self, "engine_config_mysql_group_concat_max_len", value)
|
|
305
304
|
|
|
306
|
-
@property
|
|
305
|
+
@_builtins.property
|
|
307
306
|
@pulumi.getter(name="engineConfigMysqlInformationSchemaStatsExpiry")
|
|
308
|
-
def engine_config_mysql_information_schema_stats_expiry(self) -> Optional[pulumi.Input[
|
|
307
|
+
def engine_config_mysql_information_schema_stats_expiry(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
309
308
|
"""
|
|
310
309
|
The time, in seconds, before cached statistics expire.
|
|
311
310
|
"""
|
|
312
311
|
return pulumi.get(self, "engine_config_mysql_information_schema_stats_expiry")
|
|
313
312
|
|
|
314
313
|
@engine_config_mysql_information_schema_stats_expiry.setter
|
|
315
|
-
def engine_config_mysql_information_schema_stats_expiry(self, value: Optional[pulumi.Input[
|
|
314
|
+
def engine_config_mysql_information_schema_stats_expiry(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
316
315
|
pulumi.set(self, "engine_config_mysql_information_schema_stats_expiry", value)
|
|
317
316
|
|
|
318
|
-
@property
|
|
317
|
+
@_builtins.property
|
|
319
318
|
@pulumi.getter(name="engineConfigMysqlInnodbChangeBufferMaxSize")
|
|
320
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self) -> Optional[pulumi.Input[
|
|
319
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
321
320
|
"""
|
|
322
321
|
Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
|
|
323
322
|
"""
|
|
324
323
|
return pulumi.get(self, "engine_config_mysql_innodb_change_buffer_max_size")
|
|
325
324
|
|
|
326
325
|
@engine_config_mysql_innodb_change_buffer_max_size.setter
|
|
327
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self, value: Optional[pulumi.Input[
|
|
326
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
328
327
|
pulumi.set(self, "engine_config_mysql_innodb_change_buffer_max_size", value)
|
|
329
328
|
|
|
330
|
-
@property
|
|
329
|
+
@_builtins.property
|
|
331
330
|
@pulumi.getter(name="engineConfigMysqlInnodbFlushNeighbors")
|
|
332
|
-
def engine_config_mysql_innodb_flush_neighbors(self) -> Optional[pulumi.Input[
|
|
331
|
+
def engine_config_mysql_innodb_flush_neighbors(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
333
332
|
"""
|
|
334
333
|
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.
|
|
335
334
|
"""
|
|
336
335
|
return pulumi.get(self, "engine_config_mysql_innodb_flush_neighbors")
|
|
337
336
|
|
|
338
337
|
@engine_config_mysql_innodb_flush_neighbors.setter
|
|
339
|
-
def engine_config_mysql_innodb_flush_neighbors(self, value: Optional[pulumi.Input[
|
|
338
|
+
def engine_config_mysql_innodb_flush_neighbors(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
340
339
|
pulumi.set(self, "engine_config_mysql_innodb_flush_neighbors", value)
|
|
341
340
|
|
|
342
|
-
@property
|
|
341
|
+
@_builtins.property
|
|
343
342
|
@pulumi.getter(name="engineConfigMysqlInnodbFtMinTokenSize")
|
|
344
|
-
def engine_config_mysql_innodb_ft_min_token_size(self) -> Optional[pulumi.Input[
|
|
343
|
+
def engine_config_mysql_innodb_ft_min_token_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
345
344
|
"""
|
|
346
345
|
Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
|
|
347
346
|
"""
|
|
348
347
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_min_token_size")
|
|
349
348
|
|
|
350
349
|
@engine_config_mysql_innodb_ft_min_token_size.setter
|
|
351
|
-
def engine_config_mysql_innodb_ft_min_token_size(self, value: Optional[pulumi.Input[
|
|
350
|
+
def engine_config_mysql_innodb_ft_min_token_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
352
351
|
pulumi.set(self, "engine_config_mysql_innodb_ft_min_token_size", value)
|
|
353
352
|
|
|
354
|
-
@property
|
|
353
|
+
@_builtins.property
|
|
355
354
|
@pulumi.getter(name="engineConfigMysqlInnodbFtServerStopwordTable")
|
|
356
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> Optional[pulumi.Input[
|
|
355
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
357
356
|
"""
|
|
358
357
|
This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
359
358
|
"""
|
|
360
359
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_server_stopword_table")
|
|
361
360
|
|
|
362
361
|
@engine_config_mysql_innodb_ft_server_stopword_table.setter
|
|
363
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self, value: Optional[pulumi.Input[
|
|
362
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
364
363
|
pulumi.set(self, "engine_config_mysql_innodb_ft_server_stopword_table", value)
|
|
365
364
|
|
|
366
|
-
@property
|
|
365
|
+
@_builtins.property
|
|
367
366
|
@pulumi.getter(name="engineConfigMysqlInnodbLockWaitTimeout")
|
|
368
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self) -> Optional[pulumi.Input[
|
|
367
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
369
368
|
"""
|
|
370
369
|
The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
371
370
|
"""
|
|
372
371
|
return pulumi.get(self, "engine_config_mysql_innodb_lock_wait_timeout")
|
|
373
372
|
|
|
374
373
|
@engine_config_mysql_innodb_lock_wait_timeout.setter
|
|
375
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self, value: Optional[pulumi.Input[
|
|
374
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
376
375
|
pulumi.set(self, "engine_config_mysql_innodb_lock_wait_timeout", value)
|
|
377
376
|
|
|
378
|
-
@property
|
|
377
|
+
@_builtins.property
|
|
379
378
|
@pulumi.getter(name="engineConfigMysqlInnodbLogBufferSize")
|
|
380
|
-
def engine_config_mysql_innodb_log_buffer_size(self) -> Optional[pulumi.Input[
|
|
379
|
+
def engine_config_mysql_innodb_log_buffer_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
381
380
|
"""
|
|
382
381
|
The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
383
382
|
"""
|
|
384
383
|
return pulumi.get(self, "engine_config_mysql_innodb_log_buffer_size")
|
|
385
384
|
|
|
386
385
|
@engine_config_mysql_innodb_log_buffer_size.setter
|
|
387
|
-
def engine_config_mysql_innodb_log_buffer_size(self, value: Optional[pulumi.Input[
|
|
386
|
+
def engine_config_mysql_innodb_log_buffer_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
388
387
|
pulumi.set(self, "engine_config_mysql_innodb_log_buffer_size", value)
|
|
389
388
|
|
|
390
|
-
@property
|
|
389
|
+
@_builtins.property
|
|
391
390
|
@pulumi.getter(name="engineConfigMysqlInnodbOnlineAlterLogMaxSize")
|
|
392
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> Optional[pulumi.Input[
|
|
391
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
393
392
|
"""
|
|
394
393
|
The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
|
|
395
394
|
"""
|
|
396
395
|
return pulumi.get(self, "engine_config_mysql_innodb_online_alter_log_max_size")
|
|
397
396
|
|
|
398
397
|
@engine_config_mysql_innodb_online_alter_log_max_size.setter
|
|
399
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self, value: Optional[pulumi.Input[
|
|
398
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
400
399
|
pulumi.set(self, "engine_config_mysql_innodb_online_alter_log_max_size", value)
|
|
401
400
|
|
|
402
|
-
@property
|
|
401
|
+
@_builtins.property
|
|
403
402
|
@pulumi.getter(name="engineConfigMysqlInnodbReadIoThreads")
|
|
404
|
-
def engine_config_mysql_innodb_read_io_threads(self) -> Optional[pulumi.Input[
|
|
403
|
+
def engine_config_mysql_innodb_read_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
405
404
|
"""
|
|
406
405
|
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.
|
|
407
406
|
"""
|
|
408
407
|
return pulumi.get(self, "engine_config_mysql_innodb_read_io_threads")
|
|
409
408
|
|
|
410
409
|
@engine_config_mysql_innodb_read_io_threads.setter
|
|
411
|
-
def engine_config_mysql_innodb_read_io_threads(self, value: Optional[pulumi.Input[
|
|
410
|
+
def engine_config_mysql_innodb_read_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
412
411
|
pulumi.set(self, "engine_config_mysql_innodb_read_io_threads", value)
|
|
413
412
|
|
|
414
|
-
@property
|
|
413
|
+
@_builtins.property
|
|
415
414
|
@pulumi.getter(name="engineConfigMysqlInnodbRollbackOnTimeout")
|
|
416
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self) -> Optional[pulumi.Input[
|
|
415
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
417
416
|
"""
|
|
418
417
|
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.
|
|
419
418
|
"""
|
|
420
419
|
return pulumi.get(self, "engine_config_mysql_innodb_rollback_on_timeout")
|
|
421
420
|
|
|
422
421
|
@engine_config_mysql_innodb_rollback_on_timeout.setter
|
|
423
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self, value: Optional[pulumi.Input[
|
|
422
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
424
423
|
pulumi.set(self, "engine_config_mysql_innodb_rollback_on_timeout", value)
|
|
425
424
|
|
|
426
|
-
@property
|
|
425
|
+
@_builtins.property
|
|
427
426
|
@pulumi.getter(name="engineConfigMysqlInnodbThreadConcurrency")
|
|
428
|
-
def engine_config_mysql_innodb_thread_concurrency(self) -> Optional[pulumi.Input[
|
|
427
|
+
def engine_config_mysql_innodb_thread_concurrency(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
429
428
|
"""
|
|
430
429
|
Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
431
430
|
"""
|
|
432
431
|
return pulumi.get(self, "engine_config_mysql_innodb_thread_concurrency")
|
|
433
432
|
|
|
434
433
|
@engine_config_mysql_innodb_thread_concurrency.setter
|
|
435
|
-
def engine_config_mysql_innodb_thread_concurrency(self, value: Optional[pulumi.Input[
|
|
434
|
+
def engine_config_mysql_innodb_thread_concurrency(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
436
435
|
pulumi.set(self, "engine_config_mysql_innodb_thread_concurrency", value)
|
|
437
436
|
|
|
438
|
-
@property
|
|
437
|
+
@_builtins.property
|
|
439
438
|
@pulumi.getter(name="engineConfigMysqlInnodbWriteIoThreads")
|
|
440
|
-
def engine_config_mysql_innodb_write_io_threads(self) -> Optional[pulumi.Input[
|
|
439
|
+
def engine_config_mysql_innodb_write_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
441
440
|
"""
|
|
442
441
|
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.
|
|
443
442
|
"""
|
|
444
443
|
return pulumi.get(self, "engine_config_mysql_innodb_write_io_threads")
|
|
445
444
|
|
|
446
445
|
@engine_config_mysql_innodb_write_io_threads.setter
|
|
447
|
-
def engine_config_mysql_innodb_write_io_threads(self, value: Optional[pulumi.Input[
|
|
446
|
+
def engine_config_mysql_innodb_write_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
448
447
|
pulumi.set(self, "engine_config_mysql_innodb_write_io_threads", value)
|
|
449
448
|
|
|
450
|
-
@property
|
|
449
|
+
@_builtins.property
|
|
451
450
|
@pulumi.getter(name="engineConfigMysqlInteractiveTimeout")
|
|
452
|
-
def engine_config_mysql_interactive_timeout(self) -> Optional[pulumi.Input[
|
|
451
|
+
def engine_config_mysql_interactive_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
453
452
|
"""
|
|
454
453
|
The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
455
454
|
"""
|
|
456
455
|
return pulumi.get(self, "engine_config_mysql_interactive_timeout")
|
|
457
456
|
|
|
458
457
|
@engine_config_mysql_interactive_timeout.setter
|
|
459
|
-
def engine_config_mysql_interactive_timeout(self, value: Optional[pulumi.Input[
|
|
458
|
+
def engine_config_mysql_interactive_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
460
459
|
pulumi.set(self, "engine_config_mysql_interactive_timeout", value)
|
|
461
460
|
|
|
462
|
-
@property
|
|
461
|
+
@_builtins.property
|
|
463
462
|
@pulumi.getter(name="engineConfigMysqlInternalTmpMemStorageEngine")
|
|
464
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[
|
|
463
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
465
464
|
"""
|
|
466
465
|
The storage engine for in-memory internal temporary tables.
|
|
467
466
|
"""
|
|
468
467
|
return pulumi.get(self, "engine_config_mysql_internal_tmp_mem_storage_engine")
|
|
469
468
|
|
|
470
469
|
@engine_config_mysql_internal_tmp_mem_storage_engine.setter
|
|
471
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[
|
|
470
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
472
471
|
pulumi.set(self, "engine_config_mysql_internal_tmp_mem_storage_engine", value)
|
|
473
472
|
|
|
474
|
-
@property
|
|
473
|
+
@_builtins.property
|
|
475
474
|
@pulumi.getter(name="engineConfigMysqlMaxAllowedPacket")
|
|
476
|
-
def engine_config_mysql_max_allowed_packet(self) -> Optional[pulumi.Input[
|
|
475
|
+
def engine_config_mysql_max_allowed_packet(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
477
476
|
"""
|
|
478
477
|
Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
479
478
|
"""
|
|
480
479
|
return pulumi.get(self, "engine_config_mysql_max_allowed_packet")
|
|
481
480
|
|
|
482
481
|
@engine_config_mysql_max_allowed_packet.setter
|
|
483
|
-
def engine_config_mysql_max_allowed_packet(self, value: Optional[pulumi.Input[
|
|
482
|
+
def engine_config_mysql_max_allowed_packet(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
484
483
|
pulumi.set(self, "engine_config_mysql_max_allowed_packet", value)
|
|
485
484
|
|
|
486
|
-
@property
|
|
485
|
+
@_builtins.property
|
|
487
486
|
@pulumi.getter(name="engineConfigMysqlMaxHeapTableSize")
|
|
488
|
-
def engine_config_mysql_max_heap_table_size(self) -> Optional[pulumi.Input[
|
|
487
|
+
def engine_config_mysql_max_heap_table_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
489
488
|
"""
|
|
490
489
|
Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
491
490
|
"""
|
|
492
491
|
return pulumi.get(self, "engine_config_mysql_max_heap_table_size")
|
|
493
492
|
|
|
494
493
|
@engine_config_mysql_max_heap_table_size.setter
|
|
495
|
-
def engine_config_mysql_max_heap_table_size(self, value: Optional[pulumi.Input[
|
|
494
|
+
def engine_config_mysql_max_heap_table_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
496
495
|
pulumi.set(self, "engine_config_mysql_max_heap_table_size", value)
|
|
497
496
|
|
|
498
|
-
@property
|
|
497
|
+
@_builtins.property
|
|
499
498
|
@pulumi.getter(name="engineConfigMysqlNetBufferLength")
|
|
500
|
-
def engine_config_mysql_net_buffer_length(self) -> Optional[pulumi.Input[
|
|
499
|
+
def engine_config_mysql_net_buffer_length(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
501
500
|
"""
|
|
502
501
|
Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
|
|
503
502
|
"""
|
|
504
503
|
return pulumi.get(self, "engine_config_mysql_net_buffer_length")
|
|
505
504
|
|
|
506
505
|
@engine_config_mysql_net_buffer_length.setter
|
|
507
|
-
def engine_config_mysql_net_buffer_length(self, value: Optional[pulumi.Input[
|
|
506
|
+
def engine_config_mysql_net_buffer_length(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
508
507
|
pulumi.set(self, "engine_config_mysql_net_buffer_length", value)
|
|
509
508
|
|
|
510
|
-
@property
|
|
509
|
+
@_builtins.property
|
|
511
510
|
@pulumi.getter(name="engineConfigMysqlNetReadTimeout")
|
|
512
|
-
def engine_config_mysql_net_read_timeout(self) -> Optional[pulumi.Input[
|
|
511
|
+
def engine_config_mysql_net_read_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
513
512
|
"""
|
|
514
513
|
The number of seconds to wait for more data from a connection before aborting the read.
|
|
515
514
|
"""
|
|
516
515
|
return pulumi.get(self, "engine_config_mysql_net_read_timeout")
|
|
517
516
|
|
|
518
517
|
@engine_config_mysql_net_read_timeout.setter
|
|
519
|
-
def engine_config_mysql_net_read_timeout(self, value: Optional[pulumi.Input[
|
|
518
|
+
def engine_config_mysql_net_read_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
520
519
|
pulumi.set(self, "engine_config_mysql_net_read_timeout", value)
|
|
521
520
|
|
|
522
|
-
@property
|
|
521
|
+
@_builtins.property
|
|
523
522
|
@pulumi.getter(name="engineConfigMysqlNetWriteTimeout")
|
|
524
|
-
def engine_config_mysql_net_write_timeout(self) -> Optional[pulumi.Input[
|
|
523
|
+
def engine_config_mysql_net_write_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
525
524
|
"""
|
|
526
525
|
The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
527
526
|
"""
|
|
528
527
|
return pulumi.get(self, "engine_config_mysql_net_write_timeout")
|
|
529
528
|
|
|
530
529
|
@engine_config_mysql_net_write_timeout.setter
|
|
531
|
-
def engine_config_mysql_net_write_timeout(self, value: Optional[pulumi.Input[
|
|
530
|
+
def engine_config_mysql_net_write_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
532
531
|
pulumi.set(self, "engine_config_mysql_net_write_timeout", value)
|
|
533
532
|
|
|
534
|
-
@property
|
|
533
|
+
@_builtins.property
|
|
535
534
|
@pulumi.getter(name="engineConfigMysqlSortBufferSize")
|
|
536
|
-
def engine_config_mysql_sort_buffer_size(self) -> Optional[pulumi.Input[
|
|
535
|
+
def engine_config_mysql_sort_buffer_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
537
536
|
"""
|
|
538
537
|
Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
539
538
|
"""
|
|
540
539
|
return pulumi.get(self, "engine_config_mysql_sort_buffer_size")
|
|
541
540
|
|
|
542
541
|
@engine_config_mysql_sort_buffer_size.setter
|
|
543
|
-
def engine_config_mysql_sort_buffer_size(self, value: Optional[pulumi.Input[
|
|
542
|
+
def engine_config_mysql_sort_buffer_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
544
543
|
pulumi.set(self, "engine_config_mysql_sort_buffer_size", value)
|
|
545
544
|
|
|
546
|
-
@property
|
|
545
|
+
@_builtins.property
|
|
547
546
|
@pulumi.getter(name="engineConfigMysqlSqlMode")
|
|
548
|
-
def engine_config_mysql_sql_mode(self) -> Optional[pulumi.Input[
|
|
547
|
+
def engine_config_mysql_sql_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
549
548
|
"""
|
|
550
549
|
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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
551
550
|
"""
|
|
552
551
|
return pulumi.get(self, "engine_config_mysql_sql_mode")
|
|
553
552
|
|
|
554
553
|
@engine_config_mysql_sql_mode.setter
|
|
555
|
-
def engine_config_mysql_sql_mode(self, value: Optional[pulumi.Input[
|
|
554
|
+
def engine_config_mysql_sql_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
556
555
|
pulumi.set(self, "engine_config_mysql_sql_mode", value)
|
|
557
556
|
|
|
558
|
-
@property
|
|
557
|
+
@_builtins.property
|
|
559
558
|
@pulumi.getter(name="engineConfigMysqlSqlRequirePrimaryKey")
|
|
560
|
-
def engine_config_mysql_sql_require_primary_key(self) -> Optional[pulumi.Input[
|
|
559
|
+
def engine_config_mysql_sql_require_primary_key(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
561
560
|
"""
|
|
562
561
|
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. (default `true`)
|
|
563
562
|
"""
|
|
564
563
|
return pulumi.get(self, "engine_config_mysql_sql_require_primary_key")
|
|
565
564
|
|
|
566
565
|
@engine_config_mysql_sql_require_primary_key.setter
|
|
567
|
-
def engine_config_mysql_sql_require_primary_key(self, value: Optional[pulumi.Input[
|
|
566
|
+
def engine_config_mysql_sql_require_primary_key(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
568
567
|
pulumi.set(self, "engine_config_mysql_sql_require_primary_key", value)
|
|
569
568
|
|
|
570
|
-
@property
|
|
569
|
+
@_builtins.property
|
|
571
570
|
@pulumi.getter(name="engineConfigMysqlTmpTableSize")
|
|
572
|
-
def engine_config_mysql_tmp_table_size(self) -> Optional[pulumi.Input[
|
|
571
|
+
def engine_config_mysql_tmp_table_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
573
572
|
"""
|
|
574
573
|
Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
575
574
|
"""
|
|
576
575
|
return pulumi.get(self, "engine_config_mysql_tmp_table_size")
|
|
577
576
|
|
|
578
577
|
@engine_config_mysql_tmp_table_size.setter
|
|
579
|
-
def engine_config_mysql_tmp_table_size(self, value: Optional[pulumi.Input[
|
|
578
|
+
def engine_config_mysql_tmp_table_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
580
579
|
pulumi.set(self, "engine_config_mysql_tmp_table_size", value)
|
|
581
580
|
|
|
582
|
-
@property
|
|
581
|
+
@_builtins.property
|
|
583
582
|
@pulumi.getter(name="engineConfigMysqlWaitTimeout")
|
|
584
|
-
def engine_config_mysql_wait_timeout(self) -> Optional[pulumi.Input[
|
|
583
|
+
def engine_config_mysql_wait_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
585
584
|
"""
|
|
586
585
|
The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
587
586
|
"""
|
|
588
587
|
return pulumi.get(self, "engine_config_mysql_wait_timeout")
|
|
589
588
|
|
|
590
589
|
@engine_config_mysql_wait_timeout.setter
|
|
591
|
-
def engine_config_mysql_wait_timeout(self, value: Optional[pulumi.Input[
|
|
590
|
+
def engine_config_mysql_wait_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
592
591
|
pulumi.set(self, "engine_config_mysql_wait_timeout", value)
|
|
593
592
|
|
|
594
|
-
@property
|
|
593
|
+
@_builtins.property
|
|
595
594
|
@pulumi.getter(name="forkRestoreTime")
|
|
596
|
-
def fork_restore_time(self) -> Optional[pulumi.Input[
|
|
595
|
+
def fork_restore_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
597
596
|
"""
|
|
598
597
|
The database timestamp from which it was restored.
|
|
599
598
|
"""
|
|
600
599
|
return pulumi.get(self, "fork_restore_time")
|
|
601
600
|
|
|
602
601
|
@fork_restore_time.setter
|
|
603
|
-
def fork_restore_time(self, value: Optional[pulumi.Input[
|
|
602
|
+
def fork_restore_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
604
603
|
pulumi.set(self, "fork_restore_time", value)
|
|
605
604
|
|
|
606
|
-
@property
|
|
605
|
+
@_builtins.property
|
|
607
606
|
@pulumi.getter(name="forkSource")
|
|
608
|
-
def fork_source(self) -> Optional[pulumi.Input[
|
|
607
|
+
def fork_source(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
609
608
|
"""
|
|
610
609
|
The ID of the database that was forked from.
|
|
611
610
|
|
|
@@ -614,22 +613,22 @@ class DatabaseMysqlV2Args:
|
|
|
614
613
|
return pulumi.get(self, "fork_source")
|
|
615
614
|
|
|
616
615
|
@fork_source.setter
|
|
617
|
-
def fork_source(self, value: Optional[pulumi.Input[
|
|
616
|
+
def fork_source(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
618
617
|
pulumi.set(self, "fork_source", value)
|
|
619
618
|
|
|
620
|
-
@property
|
|
619
|
+
@_builtins.property
|
|
621
620
|
@pulumi.getter
|
|
622
|
-
def suspended(self) -> Optional[pulumi.Input[
|
|
621
|
+
def suspended(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
623
622
|
"""
|
|
624
623
|
Whether this Managed Database should be suspended.
|
|
625
624
|
"""
|
|
626
625
|
return pulumi.get(self, "suspended")
|
|
627
626
|
|
|
628
627
|
@suspended.setter
|
|
629
|
-
def suspended(self, value: Optional[pulumi.Input[
|
|
628
|
+
def suspended(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
630
629
|
pulumi.set(self, "suspended", value)
|
|
631
630
|
|
|
632
|
-
@property
|
|
631
|
+
@_builtins.property
|
|
633
632
|
@pulumi.getter
|
|
634
633
|
def timeouts(self) -> Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']]:
|
|
635
634
|
return pulumi.get(self, "timeouts")
|
|
@@ -638,7 +637,7 @@ class DatabaseMysqlV2Args:
|
|
|
638
637
|
def timeouts(self, value: Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']]):
|
|
639
638
|
pulumi.set(self, "timeouts", value)
|
|
640
639
|
|
|
641
|
-
@property
|
|
640
|
+
@_builtins.property
|
|
642
641
|
@pulumi.getter
|
|
643
642
|
def updates(self) -> Optional[pulumi.Input['DatabaseMysqlV2UpdatesArgs']]:
|
|
644
643
|
"""
|
|
@@ -654,123 +653,123 @@ class DatabaseMysqlV2Args:
|
|
|
654
653
|
@pulumi.input_type
|
|
655
654
|
class _DatabaseMysqlV2State:
|
|
656
655
|
def __init__(__self__, *,
|
|
657
|
-
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
658
|
-
ca_cert: Optional[pulumi.Input[
|
|
659
|
-
cluster_size: Optional[pulumi.Input[
|
|
660
|
-
created: Optional[pulumi.Input[
|
|
661
|
-
encrypted: Optional[pulumi.Input[
|
|
662
|
-
engine: Optional[pulumi.Input[
|
|
663
|
-
engine_config_binlog_retention_period: Optional[pulumi.Input[
|
|
664
|
-
engine_config_mysql_connect_timeout: Optional[pulumi.Input[
|
|
665
|
-
engine_config_mysql_default_time_zone: Optional[pulumi.Input[
|
|
666
|
-
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[
|
|
667
|
-
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[
|
|
668
|
-
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[
|
|
669
|
-
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[
|
|
670
|
-
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[
|
|
671
|
-
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[
|
|
672
|
-
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[
|
|
673
|
-
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[
|
|
674
|
-
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[
|
|
675
|
-
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[
|
|
676
|
-
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[
|
|
677
|
-
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[
|
|
678
|
-
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[
|
|
679
|
-
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[
|
|
680
|
-
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[
|
|
681
|
-
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[
|
|
682
|
-
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[
|
|
683
|
-
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[
|
|
684
|
-
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[
|
|
685
|
-
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[
|
|
686
|
-
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[
|
|
687
|
-
engine_config_mysql_sql_mode: Optional[pulumi.Input[
|
|
688
|
-
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[
|
|
689
|
-
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[
|
|
690
|
-
engine_config_mysql_wait_timeout: Optional[pulumi.Input[
|
|
691
|
-
engine_id: Optional[pulumi.Input[
|
|
692
|
-
fork_restore_time: Optional[pulumi.Input[
|
|
693
|
-
fork_source: Optional[pulumi.Input[
|
|
694
|
-
host_primary: Optional[pulumi.Input[
|
|
695
|
-
host_secondary: Optional[pulumi.Input[
|
|
696
|
-
label: Optional[pulumi.Input[
|
|
697
|
-
members: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
698
|
-
oldest_restore_time: Optional[pulumi.Input[
|
|
656
|
+
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
657
|
+
ca_cert: Optional[pulumi.Input[_builtins.str]] = None,
|
|
658
|
+
cluster_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
659
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
660
|
+
encrypted: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
661
|
+
engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
662
|
+
engine_config_binlog_retention_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
663
|
+
engine_config_mysql_connect_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
664
|
+
engine_config_mysql_default_time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
665
|
+
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[_builtins.float]] = None,
|
|
666
|
+
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[_builtins.int]] = None,
|
|
667
|
+
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
668
|
+
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[_builtins.int]] = None,
|
|
669
|
+
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
670
|
+
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[_builtins.str]] = None,
|
|
671
|
+
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
672
|
+
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
673
|
+
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
674
|
+
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
675
|
+
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
676
|
+
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
|
|
677
|
+
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
678
|
+
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
679
|
+
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
680
|
+
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[_builtins.int]] = None,
|
|
681
|
+
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
682
|
+
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[_builtins.int]] = None,
|
|
683
|
+
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
684
|
+
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
685
|
+
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
686
|
+
engine_config_mysql_sql_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
687
|
+
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
688
|
+
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
689
|
+
engine_config_mysql_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
690
|
+
engine_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
691
|
+
fork_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
692
|
+
fork_source: Optional[pulumi.Input[_builtins.int]] = None,
|
|
693
|
+
host_primary: Optional[pulumi.Input[_builtins.str]] = None,
|
|
694
|
+
host_secondary: Optional[pulumi.Input[_builtins.str]] = None,
|
|
695
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
696
|
+
members: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
697
|
+
oldest_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
699
698
|
pending_updates: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseMysqlV2PendingUpdateArgs']]]] = None,
|
|
700
|
-
platform: Optional[pulumi.Input[
|
|
701
|
-
port: Optional[pulumi.Input[
|
|
702
|
-
region: Optional[pulumi.Input[
|
|
703
|
-
root_password: Optional[pulumi.Input[
|
|
704
|
-
root_username: Optional[pulumi.Input[
|
|
705
|
-
ssl_connection: Optional[pulumi.Input[
|
|
706
|
-
status: Optional[pulumi.Input[
|
|
707
|
-
suspended: Optional[pulumi.Input[
|
|
699
|
+
platform: Optional[pulumi.Input[_builtins.str]] = None,
|
|
700
|
+
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
701
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
702
|
+
root_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
703
|
+
root_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
704
|
+
ssl_connection: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
705
|
+
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
706
|
+
suspended: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
708
707
|
timeouts: Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']] = None,
|
|
709
|
-
type: Optional[pulumi.Input[
|
|
710
|
-
updated: Optional[pulumi.Input[
|
|
708
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
709
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
711
710
|
updates: Optional[pulumi.Input['DatabaseMysqlV2UpdatesArgs']] = None,
|
|
712
|
-
version: Optional[pulumi.Input[
|
|
711
|
+
version: Optional[pulumi.Input[_builtins.str]] = None):
|
|
713
712
|
"""
|
|
714
713
|
Input properties used for looking up and filtering DatabaseMysqlV2 resources.
|
|
715
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
716
|
-
:param pulumi.Input[
|
|
717
|
-
:param pulumi.Input[
|
|
718
|
-
:param pulumi.Input[
|
|
719
|
-
:param pulumi.Input[
|
|
720
|
-
:param pulumi.Input[
|
|
721
|
-
:param pulumi.Input[
|
|
722
|
-
:param pulumi.Input[
|
|
723
|
-
:param pulumi.Input[
|
|
724
|
-
:param pulumi.Input[
|
|
725
|
-
:param pulumi.Input[
|
|
726
|
-
:param pulumi.Input[
|
|
727
|
-
:param pulumi.Input[
|
|
728
|
-
:param pulumi.Input[
|
|
729
|
-
:param pulumi.Input[
|
|
730
|
-
:param pulumi.Input[
|
|
731
|
-
:param pulumi.Input[
|
|
732
|
-
:param pulumi.Input[
|
|
733
|
-
:param pulumi.Input[
|
|
734
|
-
:param pulumi.Input[
|
|
735
|
-
:param pulumi.Input[
|
|
736
|
-
:param pulumi.Input[
|
|
737
|
-
:param pulumi.Input[
|
|
738
|
-
:param pulumi.Input[
|
|
739
|
-
:param pulumi.Input[
|
|
740
|
-
:param pulumi.Input[
|
|
741
|
-
:param pulumi.Input[
|
|
742
|
-
:param pulumi.Input[
|
|
743
|
-
:param pulumi.Input[
|
|
744
|
-
:param pulumi.Input[
|
|
745
|
-
:param pulumi.Input[
|
|
746
|
-
:param pulumi.Input[
|
|
747
|
-
:param pulumi.Input[
|
|
748
|
-
:param pulumi.Input[
|
|
749
|
-
:param pulumi.Input[
|
|
750
|
-
:param pulumi.Input[
|
|
751
|
-
:param pulumi.Input[
|
|
714
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allow_lists: A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
715
|
+
:param pulumi.Input[_builtins.str] ca_cert: The base64-encoded SSL CA certificate for the Managed Database.
|
|
716
|
+
:param pulumi.Input[_builtins.int] cluster_size: The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
717
|
+
:param pulumi.Input[_builtins.str] created: When this Managed Database was created.
|
|
718
|
+
:param pulumi.Input[_builtins.bool] encrypted: Whether the Managed Databases is encrypted.
|
|
719
|
+
:param pulumi.Input[_builtins.str] engine: The Managed Database engine. (e.g. `mysql`)
|
|
720
|
+
:param pulumi.Input[_builtins.int] engine_config_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.
|
|
721
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
722
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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.
|
|
723
|
+
:param pulumi.Input[_builtins.float] engine_config_mysql_group_concat_max_len: The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
724
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_information_schema_stats_expiry: The time, in seconds, before cached statistics expire.
|
|
725
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
726
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
727
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
728
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
729
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
730
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
731
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
732
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
733
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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.
|
|
734
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
735
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
736
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
737
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
|
|
738
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
739
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
740
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
741
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
|
742
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
743
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
744
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
745
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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. (default `true`)
|
|
746
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
747
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
748
|
+
:param pulumi.Input[_builtins.str] engine_id: The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
749
|
+
:param pulumi.Input[_builtins.str] fork_restore_time: The database timestamp from which it was restored.
|
|
750
|
+
:param pulumi.Input[_builtins.int] fork_source: The ID of the database that was forked from.
|
|
752
751
|
|
|
753
752
|
* `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
754
|
-
:param pulumi.Input[
|
|
755
|
-
:param pulumi.Input[
|
|
756
|
-
:param pulumi.Input[
|
|
757
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
758
|
-
:param pulumi.Input[
|
|
753
|
+
:param pulumi.Input[_builtins.str] host_primary: The primary host for the Managed Database.
|
|
754
|
+
:param pulumi.Input[_builtins.str] host_secondary: The secondary/private host for the managed database.
|
|
755
|
+
:param pulumi.Input[_builtins.str] label: A unique, user-defined string referring to the Managed Database.
|
|
756
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] members: A mapping between IP addresses and strings designating them as primary or failover.
|
|
757
|
+
:param pulumi.Input[_builtins.str] oldest_restore_time: The oldest time to which a database can be restored.
|
|
759
758
|
:param pulumi.Input[Sequence[pulumi.Input['DatabaseMysqlV2PendingUpdateArgs']]] pending_updates: A set of pending updates.
|
|
760
|
-
:param pulumi.Input[
|
|
761
|
-
:param pulumi.Input[
|
|
762
|
-
:param pulumi.Input[
|
|
763
|
-
:param pulumi.Input[
|
|
764
|
-
:param pulumi.Input[
|
|
765
|
-
:param pulumi.Input[
|
|
766
|
-
:param pulumi.Input[
|
|
767
|
-
:param pulumi.Input[
|
|
768
|
-
:param pulumi.Input[
|
|
759
|
+
:param pulumi.Input[_builtins.str] platform: The back-end platform for relational databases used by the service.
|
|
760
|
+
:param pulumi.Input[_builtins.int] port: The access port for this Managed Database.
|
|
761
|
+
:param pulumi.Input[_builtins.str] region: The region to use for the Managed Database.
|
|
762
|
+
:param pulumi.Input[_builtins.str] root_password: The randomly-generated root password for the Managed Database instance.
|
|
763
|
+
:param pulumi.Input[_builtins.str] root_username: The root username for the Managed Database instance.
|
|
764
|
+
:param pulumi.Input[_builtins.bool] ssl_connection: Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
765
|
+
:param pulumi.Input[_builtins.str] status: The operating status of the Managed Database.
|
|
766
|
+
:param pulumi.Input[_builtins.bool] suspended: Whether this Managed Database should be suspended.
|
|
767
|
+
:param pulumi.Input[_builtins.str] type: The Linode Instance type used for the nodes of the Managed Database.
|
|
769
768
|
|
|
770
769
|
- - -
|
|
771
|
-
:param pulumi.Input[
|
|
770
|
+
:param pulumi.Input[_builtins.str] updated: When this Managed Database was last updated.
|
|
772
771
|
:param pulumi.Input['DatabaseMysqlV2UpdatesArgs'] updates: Configuration settings for automated patch update maintenance for the Managed Database.
|
|
773
|
-
:param pulumi.Input[
|
|
772
|
+
:param pulumi.Input[_builtins.str] version: The Managed Database engine version. (e.g. `13.2`)
|
|
774
773
|
"""
|
|
775
774
|
if allow_lists is not None:
|
|
776
775
|
pulumi.set(__self__, "allow_lists", allow_lists)
|
|
@@ -885,441 +884,441 @@ class _DatabaseMysqlV2State:
|
|
|
885
884
|
if version is not None:
|
|
886
885
|
pulumi.set(__self__, "version", version)
|
|
887
886
|
|
|
888
|
-
@property
|
|
887
|
+
@_builtins.property
|
|
889
888
|
@pulumi.getter(name="allowLists")
|
|
890
|
-
def allow_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
889
|
+
def allow_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
891
890
|
"""
|
|
892
891
|
A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
893
892
|
"""
|
|
894
893
|
return pulumi.get(self, "allow_lists")
|
|
895
894
|
|
|
896
895
|
@allow_lists.setter
|
|
897
|
-
def allow_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
896
|
+
def allow_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
898
897
|
pulumi.set(self, "allow_lists", value)
|
|
899
898
|
|
|
900
|
-
@property
|
|
899
|
+
@_builtins.property
|
|
901
900
|
@pulumi.getter(name="caCert")
|
|
902
|
-
def ca_cert(self) -> Optional[pulumi.Input[
|
|
901
|
+
def ca_cert(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
903
902
|
"""
|
|
904
903
|
The base64-encoded SSL CA certificate for the Managed Database.
|
|
905
904
|
"""
|
|
906
905
|
return pulumi.get(self, "ca_cert")
|
|
907
906
|
|
|
908
907
|
@ca_cert.setter
|
|
909
|
-
def ca_cert(self, value: Optional[pulumi.Input[
|
|
908
|
+
def ca_cert(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
910
909
|
pulumi.set(self, "ca_cert", value)
|
|
911
910
|
|
|
912
|
-
@property
|
|
911
|
+
@_builtins.property
|
|
913
912
|
@pulumi.getter(name="clusterSize")
|
|
914
|
-
def cluster_size(self) -> Optional[pulumi.Input[
|
|
913
|
+
def cluster_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
915
914
|
"""
|
|
916
915
|
The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
917
916
|
"""
|
|
918
917
|
return pulumi.get(self, "cluster_size")
|
|
919
918
|
|
|
920
919
|
@cluster_size.setter
|
|
921
|
-
def cluster_size(self, value: Optional[pulumi.Input[
|
|
920
|
+
def cluster_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
922
921
|
pulumi.set(self, "cluster_size", value)
|
|
923
922
|
|
|
924
|
-
@property
|
|
923
|
+
@_builtins.property
|
|
925
924
|
@pulumi.getter
|
|
926
|
-
def created(self) -> Optional[pulumi.Input[
|
|
925
|
+
def created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
927
926
|
"""
|
|
928
927
|
When this Managed Database was created.
|
|
929
928
|
"""
|
|
930
929
|
return pulumi.get(self, "created")
|
|
931
930
|
|
|
932
931
|
@created.setter
|
|
933
|
-
def created(self, value: Optional[pulumi.Input[
|
|
932
|
+
def created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
934
933
|
pulumi.set(self, "created", value)
|
|
935
934
|
|
|
936
|
-
@property
|
|
935
|
+
@_builtins.property
|
|
937
936
|
@pulumi.getter
|
|
938
|
-
def encrypted(self) -> Optional[pulumi.Input[
|
|
937
|
+
def encrypted(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
939
938
|
"""
|
|
940
939
|
Whether the Managed Databases is encrypted.
|
|
941
940
|
"""
|
|
942
941
|
return pulumi.get(self, "encrypted")
|
|
943
942
|
|
|
944
943
|
@encrypted.setter
|
|
945
|
-
def encrypted(self, value: Optional[pulumi.Input[
|
|
944
|
+
def encrypted(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
946
945
|
pulumi.set(self, "encrypted", value)
|
|
947
946
|
|
|
948
|
-
@property
|
|
947
|
+
@_builtins.property
|
|
949
948
|
@pulumi.getter
|
|
950
|
-
def engine(self) -> Optional[pulumi.Input[
|
|
949
|
+
def engine(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
951
950
|
"""
|
|
952
951
|
The Managed Database engine. (e.g. `mysql`)
|
|
953
952
|
"""
|
|
954
953
|
return pulumi.get(self, "engine")
|
|
955
954
|
|
|
956
955
|
@engine.setter
|
|
957
|
-
def engine(self, value: Optional[pulumi.Input[
|
|
956
|
+
def engine(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
958
957
|
pulumi.set(self, "engine", value)
|
|
959
958
|
|
|
960
|
-
@property
|
|
959
|
+
@_builtins.property
|
|
961
960
|
@pulumi.getter(name="engineConfigBinlogRetentionPeriod")
|
|
962
|
-
def engine_config_binlog_retention_period(self) -> Optional[pulumi.Input[
|
|
961
|
+
def engine_config_binlog_retention_period(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
963
962
|
"""
|
|
964
963
|
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.
|
|
965
964
|
"""
|
|
966
965
|
return pulumi.get(self, "engine_config_binlog_retention_period")
|
|
967
966
|
|
|
968
967
|
@engine_config_binlog_retention_period.setter
|
|
969
|
-
def engine_config_binlog_retention_period(self, value: Optional[pulumi.Input[
|
|
968
|
+
def engine_config_binlog_retention_period(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
970
969
|
pulumi.set(self, "engine_config_binlog_retention_period", value)
|
|
971
970
|
|
|
972
|
-
@property
|
|
971
|
+
@_builtins.property
|
|
973
972
|
@pulumi.getter(name="engineConfigMysqlConnectTimeout")
|
|
974
|
-
def engine_config_mysql_connect_timeout(self) -> Optional[pulumi.Input[
|
|
973
|
+
def engine_config_mysql_connect_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
975
974
|
"""
|
|
976
975
|
The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
977
976
|
"""
|
|
978
977
|
return pulumi.get(self, "engine_config_mysql_connect_timeout")
|
|
979
978
|
|
|
980
979
|
@engine_config_mysql_connect_timeout.setter
|
|
981
|
-
def engine_config_mysql_connect_timeout(self, value: Optional[pulumi.Input[
|
|
980
|
+
def engine_config_mysql_connect_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
982
981
|
pulumi.set(self, "engine_config_mysql_connect_timeout", value)
|
|
983
982
|
|
|
984
|
-
@property
|
|
983
|
+
@_builtins.property
|
|
985
984
|
@pulumi.getter(name="engineConfigMysqlDefaultTimeZone")
|
|
986
|
-
def engine_config_mysql_default_time_zone(self) -> Optional[pulumi.Input[
|
|
985
|
+
def engine_config_mysql_default_time_zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
987
986
|
"""
|
|
988
987
|
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.
|
|
989
988
|
"""
|
|
990
989
|
return pulumi.get(self, "engine_config_mysql_default_time_zone")
|
|
991
990
|
|
|
992
991
|
@engine_config_mysql_default_time_zone.setter
|
|
993
|
-
def engine_config_mysql_default_time_zone(self, value: Optional[pulumi.Input[
|
|
992
|
+
def engine_config_mysql_default_time_zone(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
994
993
|
pulumi.set(self, "engine_config_mysql_default_time_zone", value)
|
|
995
994
|
|
|
996
|
-
@property
|
|
995
|
+
@_builtins.property
|
|
997
996
|
@pulumi.getter(name="engineConfigMysqlGroupConcatMaxLen")
|
|
998
|
-
def engine_config_mysql_group_concat_max_len(self) -> Optional[pulumi.Input[
|
|
997
|
+
def engine_config_mysql_group_concat_max_len(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
999
998
|
"""
|
|
1000
999
|
The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
1001
1000
|
"""
|
|
1002
1001
|
return pulumi.get(self, "engine_config_mysql_group_concat_max_len")
|
|
1003
1002
|
|
|
1004
1003
|
@engine_config_mysql_group_concat_max_len.setter
|
|
1005
|
-
def engine_config_mysql_group_concat_max_len(self, value: Optional[pulumi.Input[
|
|
1004
|
+
def engine_config_mysql_group_concat_max_len(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
1006
1005
|
pulumi.set(self, "engine_config_mysql_group_concat_max_len", value)
|
|
1007
1006
|
|
|
1008
|
-
@property
|
|
1007
|
+
@_builtins.property
|
|
1009
1008
|
@pulumi.getter(name="engineConfigMysqlInformationSchemaStatsExpiry")
|
|
1010
|
-
def engine_config_mysql_information_schema_stats_expiry(self) -> Optional[pulumi.Input[
|
|
1009
|
+
def engine_config_mysql_information_schema_stats_expiry(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1011
1010
|
"""
|
|
1012
1011
|
The time, in seconds, before cached statistics expire.
|
|
1013
1012
|
"""
|
|
1014
1013
|
return pulumi.get(self, "engine_config_mysql_information_schema_stats_expiry")
|
|
1015
1014
|
|
|
1016
1015
|
@engine_config_mysql_information_schema_stats_expiry.setter
|
|
1017
|
-
def engine_config_mysql_information_schema_stats_expiry(self, value: Optional[pulumi.Input[
|
|
1016
|
+
def engine_config_mysql_information_schema_stats_expiry(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1018
1017
|
pulumi.set(self, "engine_config_mysql_information_schema_stats_expiry", value)
|
|
1019
1018
|
|
|
1020
|
-
@property
|
|
1019
|
+
@_builtins.property
|
|
1021
1020
|
@pulumi.getter(name="engineConfigMysqlInnodbChangeBufferMaxSize")
|
|
1022
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self) -> Optional[pulumi.Input[
|
|
1021
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1023
1022
|
"""
|
|
1024
1023
|
Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
|
|
1025
1024
|
"""
|
|
1026
1025
|
return pulumi.get(self, "engine_config_mysql_innodb_change_buffer_max_size")
|
|
1027
1026
|
|
|
1028
1027
|
@engine_config_mysql_innodb_change_buffer_max_size.setter
|
|
1029
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self, value: Optional[pulumi.Input[
|
|
1028
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1030
1029
|
pulumi.set(self, "engine_config_mysql_innodb_change_buffer_max_size", value)
|
|
1031
1030
|
|
|
1032
|
-
@property
|
|
1031
|
+
@_builtins.property
|
|
1033
1032
|
@pulumi.getter(name="engineConfigMysqlInnodbFlushNeighbors")
|
|
1034
|
-
def engine_config_mysql_innodb_flush_neighbors(self) -> Optional[pulumi.Input[
|
|
1033
|
+
def engine_config_mysql_innodb_flush_neighbors(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1035
1034
|
"""
|
|
1036
1035
|
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.
|
|
1037
1036
|
"""
|
|
1038
1037
|
return pulumi.get(self, "engine_config_mysql_innodb_flush_neighbors")
|
|
1039
1038
|
|
|
1040
1039
|
@engine_config_mysql_innodb_flush_neighbors.setter
|
|
1041
|
-
def engine_config_mysql_innodb_flush_neighbors(self, value: Optional[pulumi.Input[
|
|
1040
|
+
def engine_config_mysql_innodb_flush_neighbors(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1042
1041
|
pulumi.set(self, "engine_config_mysql_innodb_flush_neighbors", value)
|
|
1043
1042
|
|
|
1044
|
-
@property
|
|
1043
|
+
@_builtins.property
|
|
1045
1044
|
@pulumi.getter(name="engineConfigMysqlInnodbFtMinTokenSize")
|
|
1046
|
-
def engine_config_mysql_innodb_ft_min_token_size(self) -> Optional[pulumi.Input[
|
|
1045
|
+
def engine_config_mysql_innodb_ft_min_token_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1047
1046
|
"""
|
|
1048
1047
|
Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
|
|
1049
1048
|
"""
|
|
1050
1049
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_min_token_size")
|
|
1051
1050
|
|
|
1052
1051
|
@engine_config_mysql_innodb_ft_min_token_size.setter
|
|
1053
|
-
def engine_config_mysql_innodb_ft_min_token_size(self, value: Optional[pulumi.Input[
|
|
1052
|
+
def engine_config_mysql_innodb_ft_min_token_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1054
1053
|
pulumi.set(self, "engine_config_mysql_innodb_ft_min_token_size", value)
|
|
1055
1054
|
|
|
1056
|
-
@property
|
|
1055
|
+
@_builtins.property
|
|
1057
1056
|
@pulumi.getter(name="engineConfigMysqlInnodbFtServerStopwordTable")
|
|
1058
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> Optional[pulumi.Input[
|
|
1057
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1059
1058
|
"""
|
|
1060
1059
|
This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
1061
1060
|
"""
|
|
1062
1061
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_server_stopword_table")
|
|
1063
1062
|
|
|
1064
1063
|
@engine_config_mysql_innodb_ft_server_stopword_table.setter
|
|
1065
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self, value: Optional[pulumi.Input[
|
|
1064
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1066
1065
|
pulumi.set(self, "engine_config_mysql_innodb_ft_server_stopword_table", value)
|
|
1067
1066
|
|
|
1068
|
-
@property
|
|
1067
|
+
@_builtins.property
|
|
1069
1068
|
@pulumi.getter(name="engineConfigMysqlInnodbLockWaitTimeout")
|
|
1070
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self) -> Optional[pulumi.Input[
|
|
1069
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1071
1070
|
"""
|
|
1072
1071
|
The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
1073
1072
|
"""
|
|
1074
1073
|
return pulumi.get(self, "engine_config_mysql_innodb_lock_wait_timeout")
|
|
1075
1074
|
|
|
1076
1075
|
@engine_config_mysql_innodb_lock_wait_timeout.setter
|
|
1077
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self, value: Optional[pulumi.Input[
|
|
1076
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1078
1077
|
pulumi.set(self, "engine_config_mysql_innodb_lock_wait_timeout", value)
|
|
1079
1078
|
|
|
1080
|
-
@property
|
|
1079
|
+
@_builtins.property
|
|
1081
1080
|
@pulumi.getter(name="engineConfigMysqlInnodbLogBufferSize")
|
|
1082
|
-
def engine_config_mysql_innodb_log_buffer_size(self) -> Optional[pulumi.Input[
|
|
1081
|
+
def engine_config_mysql_innodb_log_buffer_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1083
1082
|
"""
|
|
1084
1083
|
The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
1085
1084
|
"""
|
|
1086
1085
|
return pulumi.get(self, "engine_config_mysql_innodb_log_buffer_size")
|
|
1087
1086
|
|
|
1088
1087
|
@engine_config_mysql_innodb_log_buffer_size.setter
|
|
1089
|
-
def engine_config_mysql_innodb_log_buffer_size(self, value: Optional[pulumi.Input[
|
|
1088
|
+
def engine_config_mysql_innodb_log_buffer_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1090
1089
|
pulumi.set(self, "engine_config_mysql_innodb_log_buffer_size", value)
|
|
1091
1090
|
|
|
1092
|
-
@property
|
|
1091
|
+
@_builtins.property
|
|
1093
1092
|
@pulumi.getter(name="engineConfigMysqlInnodbOnlineAlterLogMaxSize")
|
|
1094
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> Optional[pulumi.Input[
|
|
1093
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1095
1094
|
"""
|
|
1096
1095
|
The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
|
|
1097
1096
|
"""
|
|
1098
1097
|
return pulumi.get(self, "engine_config_mysql_innodb_online_alter_log_max_size")
|
|
1099
1098
|
|
|
1100
1099
|
@engine_config_mysql_innodb_online_alter_log_max_size.setter
|
|
1101
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self, value: Optional[pulumi.Input[
|
|
1100
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1102
1101
|
pulumi.set(self, "engine_config_mysql_innodb_online_alter_log_max_size", value)
|
|
1103
1102
|
|
|
1104
|
-
@property
|
|
1103
|
+
@_builtins.property
|
|
1105
1104
|
@pulumi.getter(name="engineConfigMysqlInnodbReadIoThreads")
|
|
1106
|
-
def engine_config_mysql_innodb_read_io_threads(self) -> Optional[pulumi.Input[
|
|
1105
|
+
def engine_config_mysql_innodb_read_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1107
1106
|
"""
|
|
1108
1107
|
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.
|
|
1109
1108
|
"""
|
|
1110
1109
|
return pulumi.get(self, "engine_config_mysql_innodb_read_io_threads")
|
|
1111
1110
|
|
|
1112
1111
|
@engine_config_mysql_innodb_read_io_threads.setter
|
|
1113
|
-
def engine_config_mysql_innodb_read_io_threads(self, value: Optional[pulumi.Input[
|
|
1112
|
+
def engine_config_mysql_innodb_read_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1114
1113
|
pulumi.set(self, "engine_config_mysql_innodb_read_io_threads", value)
|
|
1115
1114
|
|
|
1116
|
-
@property
|
|
1115
|
+
@_builtins.property
|
|
1117
1116
|
@pulumi.getter(name="engineConfigMysqlInnodbRollbackOnTimeout")
|
|
1118
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self) -> Optional[pulumi.Input[
|
|
1117
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1119
1118
|
"""
|
|
1120
1119
|
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.
|
|
1121
1120
|
"""
|
|
1122
1121
|
return pulumi.get(self, "engine_config_mysql_innodb_rollback_on_timeout")
|
|
1123
1122
|
|
|
1124
1123
|
@engine_config_mysql_innodb_rollback_on_timeout.setter
|
|
1125
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self, value: Optional[pulumi.Input[
|
|
1124
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1126
1125
|
pulumi.set(self, "engine_config_mysql_innodb_rollback_on_timeout", value)
|
|
1127
1126
|
|
|
1128
|
-
@property
|
|
1127
|
+
@_builtins.property
|
|
1129
1128
|
@pulumi.getter(name="engineConfigMysqlInnodbThreadConcurrency")
|
|
1130
|
-
def engine_config_mysql_innodb_thread_concurrency(self) -> Optional[pulumi.Input[
|
|
1129
|
+
def engine_config_mysql_innodb_thread_concurrency(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1131
1130
|
"""
|
|
1132
1131
|
Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
1133
1132
|
"""
|
|
1134
1133
|
return pulumi.get(self, "engine_config_mysql_innodb_thread_concurrency")
|
|
1135
1134
|
|
|
1136
1135
|
@engine_config_mysql_innodb_thread_concurrency.setter
|
|
1137
|
-
def engine_config_mysql_innodb_thread_concurrency(self, value: Optional[pulumi.Input[
|
|
1136
|
+
def engine_config_mysql_innodb_thread_concurrency(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1138
1137
|
pulumi.set(self, "engine_config_mysql_innodb_thread_concurrency", value)
|
|
1139
1138
|
|
|
1140
|
-
@property
|
|
1139
|
+
@_builtins.property
|
|
1141
1140
|
@pulumi.getter(name="engineConfigMysqlInnodbWriteIoThreads")
|
|
1142
|
-
def engine_config_mysql_innodb_write_io_threads(self) -> Optional[pulumi.Input[
|
|
1141
|
+
def engine_config_mysql_innodb_write_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1143
1142
|
"""
|
|
1144
1143
|
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.
|
|
1145
1144
|
"""
|
|
1146
1145
|
return pulumi.get(self, "engine_config_mysql_innodb_write_io_threads")
|
|
1147
1146
|
|
|
1148
1147
|
@engine_config_mysql_innodb_write_io_threads.setter
|
|
1149
|
-
def engine_config_mysql_innodb_write_io_threads(self, value: Optional[pulumi.Input[
|
|
1148
|
+
def engine_config_mysql_innodb_write_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1150
1149
|
pulumi.set(self, "engine_config_mysql_innodb_write_io_threads", value)
|
|
1151
1150
|
|
|
1152
|
-
@property
|
|
1151
|
+
@_builtins.property
|
|
1153
1152
|
@pulumi.getter(name="engineConfigMysqlInteractiveTimeout")
|
|
1154
|
-
def engine_config_mysql_interactive_timeout(self) -> Optional[pulumi.Input[
|
|
1153
|
+
def engine_config_mysql_interactive_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1155
1154
|
"""
|
|
1156
1155
|
The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
1157
1156
|
"""
|
|
1158
1157
|
return pulumi.get(self, "engine_config_mysql_interactive_timeout")
|
|
1159
1158
|
|
|
1160
1159
|
@engine_config_mysql_interactive_timeout.setter
|
|
1161
|
-
def engine_config_mysql_interactive_timeout(self, value: Optional[pulumi.Input[
|
|
1160
|
+
def engine_config_mysql_interactive_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1162
1161
|
pulumi.set(self, "engine_config_mysql_interactive_timeout", value)
|
|
1163
1162
|
|
|
1164
|
-
@property
|
|
1163
|
+
@_builtins.property
|
|
1165
1164
|
@pulumi.getter(name="engineConfigMysqlInternalTmpMemStorageEngine")
|
|
1166
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[
|
|
1165
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1167
1166
|
"""
|
|
1168
1167
|
The storage engine for in-memory internal temporary tables.
|
|
1169
1168
|
"""
|
|
1170
1169
|
return pulumi.get(self, "engine_config_mysql_internal_tmp_mem_storage_engine")
|
|
1171
1170
|
|
|
1172
1171
|
@engine_config_mysql_internal_tmp_mem_storage_engine.setter
|
|
1173
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[
|
|
1172
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1174
1173
|
pulumi.set(self, "engine_config_mysql_internal_tmp_mem_storage_engine", value)
|
|
1175
1174
|
|
|
1176
|
-
@property
|
|
1175
|
+
@_builtins.property
|
|
1177
1176
|
@pulumi.getter(name="engineConfigMysqlMaxAllowedPacket")
|
|
1178
|
-
def engine_config_mysql_max_allowed_packet(self) -> Optional[pulumi.Input[
|
|
1177
|
+
def engine_config_mysql_max_allowed_packet(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1179
1178
|
"""
|
|
1180
1179
|
Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
1181
1180
|
"""
|
|
1182
1181
|
return pulumi.get(self, "engine_config_mysql_max_allowed_packet")
|
|
1183
1182
|
|
|
1184
1183
|
@engine_config_mysql_max_allowed_packet.setter
|
|
1185
|
-
def engine_config_mysql_max_allowed_packet(self, value: Optional[pulumi.Input[
|
|
1184
|
+
def engine_config_mysql_max_allowed_packet(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1186
1185
|
pulumi.set(self, "engine_config_mysql_max_allowed_packet", value)
|
|
1187
1186
|
|
|
1188
|
-
@property
|
|
1187
|
+
@_builtins.property
|
|
1189
1188
|
@pulumi.getter(name="engineConfigMysqlMaxHeapTableSize")
|
|
1190
|
-
def engine_config_mysql_max_heap_table_size(self) -> Optional[pulumi.Input[
|
|
1189
|
+
def engine_config_mysql_max_heap_table_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1191
1190
|
"""
|
|
1192
1191
|
Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
1193
1192
|
"""
|
|
1194
1193
|
return pulumi.get(self, "engine_config_mysql_max_heap_table_size")
|
|
1195
1194
|
|
|
1196
1195
|
@engine_config_mysql_max_heap_table_size.setter
|
|
1197
|
-
def engine_config_mysql_max_heap_table_size(self, value: Optional[pulumi.Input[
|
|
1196
|
+
def engine_config_mysql_max_heap_table_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1198
1197
|
pulumi.set(self, "engine_config_mysql_max_heap_table_size", value)
|
|
1199
1198
|
|
|
1200
|
-
@property
|
|
1199
|
+
@_builtins.property
|
|
1201
1200
|
@pulumi.getter(name="engineConfigMysqlNetBufferLength")
|
|
1202
|
-
def engine_config_mysql_net_buffer_length(self) -> Optional[pulumi.Input[
|
|
1201
|
+
def engine_config_mysql_net_buffer_length(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1203
1202
|
"""
|
|
1204
1203
|
Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
|
|
1205
1204
|
"""
|
|
1206
1205
|
return pulumi.get(self, "engine_config_mysql_net_buffer_length")
|
|
1207
1206
|
|
|
1208
1207
|
@engine_config_mysql_net_buffer_length.setter
|
|
1209
|
-
def engine_config_mysql_net_buffer_length(self, value: Optional[pulumi.Input[
|
|
1208
|
+
def engine_config_mysql_net_buffer_length(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1210
1209
|
pulumi.set(self, "engine_config_mysql_net_buffer_length", value)
|
|
1211
1210
|
|
|
1212
|
-
@property
|
|
1211
|
+
@_builtins.property
|
|
1213
1212
|
@pulumi.getter(name="engineConfigMysqlNetReadTimeout")
|
|
1214
|
-
def engine_config_mysql_net_read_timeout(self) -> Optional[pulumi.Input[
|
|
1213
|
+
def engine_config_mysql_net_read_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1215
1214
|
"""
|
|
1216
1215
|
The number of seconds to wait for more data from a connection before aborting the read.
|
|
1217
1216
|
"""
|
|
1218
1217
|
return pulumi.get(self, "engine_config_mysql_net_read_timeout")
|
|
1219
1218
|
|
|
1220
1219
|
@engine_config_mysql_net_read_timeout.setter
|
|
1221
|
-
def engine_config_mysql_net_read_timeout(self, value: Optional[pulumi.Input[
|
|
1220
|
+
def engine_config_mysql_net_read_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1222
1221
|
pulumi.set(self, "engine_config_mysql_net_read_timeout", value)
|
|
1223
1222
|
|
|
1224
|
-
@property
|
|
1223
|
+
@_builtins.property
|
|
1225
1224
|
@pulumi.getter(name="engineConfigMysqlNetWriteTimeout")
|
|
1226
|
-
def engine_config_mysql_net_write_timeout(self) -> Optional[pulumi.Input[
|
|
1225
|
+
def engine_config_mysql_net_write_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1227
1226
|
"""
|
|
1228
1227
|
The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
1229
1228
|
"""
|
|
1230
1229
|
return pulumi.get(self, "engine_config_mysql_net_write_timeout")
|
|
1231
1230
|
|
|
1232
1231
|
@engine_config_mysql_net_write_timeout.setter
|
|
1233
|
-
def engine_config_mysql_net_write_timeout(self, value: Optional[pulumi.Input[
|
|
1232
|
+
def engine_config_mysql_net_write_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1234
1233
|
pulumi.set(self, "engine_config_mysql_net_write_timeout", value)
|
|
1235
1234
|
|
|
1236
|
-
@property
|
|
1235
|
+
@_builtins.property
|
|
1237
1236
|
@pulumi.getter(name="engineConfigMysqlSortBufferSize")
|
|
1238
|
-
def engine_config_mysql_sort_buffer_size(self) -> Optional[pulumi.Input[
|
|
1237
|
+
def engine_config_mysql_sort_buffer_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1239
1238
|
"""
|
|
1240
1239
|
Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
1241
1240
|
"""
|
|
1242
1241
|
return pulumi.get(self, "engine_config_mysql_sort_buffer_size")
|
|
1243
1242
|
|
|
1244
1243
|
@engine_config_mysql_sort_buffer_size.setter
|
|
1245
|
-
def engine_config_mysql_sort_buffer_size(self, value: Optional[pulumi.Input[
|
|
1244
|
+
def engine_config_mysql_sort_buffer_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1246
1245
|
pulumi.set(self, "engine_config_mysql_sort_buffer_size", value)
|
|
1247
1246
|
|
|
1248
|
-
@property
|
|
1247
|
+
@_builtins.property
|
|
1249
1248
|
@pulumi.getter(name="engineConfigMysqlSqlMode")
|
|
1250
|
-
def engine_config_mysql_sql_mode(self) -> Optional[pulumi.Input[
|
|
1249
|
+
def engine_config_mysql_sql_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1251
1250
|
"""
|
|
1252
1251
|
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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
1253
1252
|
"""
|
|
1254
1253
|
return pulumi.get(self, "engine_config_mysql_sql_mode")
|
|
1255
1254
|
|
|
1256
1255
|
@engine_config_mysql_sql_mode.setter
|
|
1257
|
-
def engine_config_mysql_sql_mode(self, value: Optional[pulumi.Input[
|
|
1256
|
+
def engine_config_mysql_sql_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1258
1257
|
pulumi.set(self, "engine_config_mysql_sql_mode", value)
|
|
1259
1258
|
|
|
1260
|
-
@property
|
|
1259
|
+
@_builtins.property
|
|
1261
1260
|
@pulumi.getter(name="engineConfigMysqlSqlRequirePrimaryKey")
|
|
1262
|
-
def engine_config_mysql_sql_require_primary_key(self) -> Optional[pulumi.Input[
|
|
1261
|
+
def engine_config_mysql_sql_require_primary_key(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1263
1262
|
"""
|
|
1264
1263
|
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. (default `true`)
|
|
1265
1264
|
"""
|
|
1266
1265
|
return pulumi.get(self, "engine_config_mysql_sql_require_primary_key")
|
|
1267
1266
|
|
|
1268
1267
|
@engine_config_mysql_sql_require_primary_key.setter
|
|
1269
|
-
def engine_config_mysql_sql_require_primary_key(self, value: Optional[pulumi.Input[
|
|
1268
|
+
def engine_config_mysql_sql_require_primary_key(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1270
1269
|
pulumi.set(self, "engine_config_mysql_sql_require_primary_key", value)
|
|
1271
1270
|
|
|
1272
|
-
@property
|
|
1271
|
+
@_builtins.property
|
|
1273
1272
|
@pulumi.getter(name="engineConfigMysqlTmpTableSize")
|
|
1274
|
-
def engine_config_mysql_tmp_table_size(self) -> Optional[pulumi.Input[
|
|
1273
|
+
def engine_config_mysql_tmp_table_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1275
1274
|
"""
|
|
1276
1275
|
Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
1277
1276
|
"""
|
|
1278
1277
|
return pulumi.get(self, "engine_config_mysql_tmp_table_size")
|
|
1279
1278
|
|
|
1280
1279
|
@engine_config_mysql_tmp_table_size.setter
|
|
1281
|
-
def engine_config_mysql_tmp_table_size(self, value: Optional[pulumi.Input[
|
|
1280
|
+
def engine_config_mysql_tmp_table_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1282
1281
|
pulumi.set(self, "engine_config_mysql_tmp_table_size", value)
|
|
1283
1282
|
|
|
1284
|
-
@property
|
|
1283
|
+
@_builtins.property
|
|
1285
1284
|
@pulumi.getter(name="engineConfigMysqlWaitTimeout")
|
|
1286
|
-
def engine_config_mysql_wait_timeout(self) -> Optional[pulumi.Input[
|
|
1285
|
+
def engine_config_mysql_wait_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1287
1286
|
"""
|
|
1288
1287
|
The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
1289
1288
|
"""
|
|
1290
1289
|
return pulumi.get(self, "engine_config_mysql_wait_timeout")
|
|
1291
1290
|
|
|
1292
1291
|
@engine_config_mysql_wait_timeout.setter
|
|
1293
|
-
def engine_config_mysql_wait_timeout(self, value: Optional[pulumi.Input[
|
|
1292
|
+
def engine_config_mysql_wait_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1294
1293
|
pulumi.set(self, "engine_config_mysql_wait_timeout", value)
|
|
1295
1294
|
|
|
1296
|
-
@property
|
|
1295
|
+
@_builtins.property
|
|
1297
1296
|
@pulumi.getter(name="engineId")
|
|
1298
|
-
def engine_id(self) -> Optional[pulumi.Input[
|
|
1297
|
+
def engine_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1299
1298
|
"""
|
|
1300
1299
|
The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
1301
1300
|
"""
|
|
1302
1301
|
return pulumi.get(self, "engine_id")
|
|
1303
1302
|
|
|
1304
1303
|
@engine_id.setter
|
|
1305
|
-
def engine_id(self, value: Optional[pulumi.Input[
|
|
1304
|
+
def engine_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1306
1305
|
pulumi.set(self, "engine_id", value)
|
|
1307
1306
|
|
|
1308
|
-
@property
|
|
1307
|
+
@_builtins.property
|
|
1309
1308
|
@pulumi.getter(name="forkRestoreTime")
|
|
1310
|
-
def fork_restore_time(self) -> Optional[pulumi.Input[
|
|
1309
|
+
def fork_restore_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1311
1310
|
"""
|
|
1312
1311
|
The database timestamp from which it was restored.
|
|
1313
1312
|
"""
|
|
1314
1313
|
return pulumi.get(self, "fork_restore_time")
|
|
1315
1314
|
|
|
1316
1315
|
@fork_restore_time.setter
|
|
1317
|
-
def fork_restore_time(self, value: Optional[pulumi.Input[
|
|
1316
|
+
def fork_restore_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1318
1317
|
pulumi.set(self, "fork_restore_time", value)
|
|
1319
1318
|
|
|
1320
|
-
@property
|
|
1319
|
+
@_builtins.property
|
|
1321
1320
|
@pulumi.getter(name="forkSource")
|
|
1322
|
-
def fork_source(self) -> Optional[pulumi.Input[
|
|
1321
|
+
def fork_source(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1323
1322
|
"""
|
|
1324
1323
|
The ID of the database that was forked from.
|
|
1325
1324
|
|
|
@@ -1328,70 +1327,70 @@ class _DatabaseMysqlV2State:
|
|
|
1328
1327
|
return pulumi.get(self, "fork_source")
|
|
1329
1328
|
|
|
1330
1329
|
@fork_source.setter
|
|
1331
|
-
def fork_source(self, value: Optional[pulumi.Input[
|
|
1330
|
+
def fork_source(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1332
1331
|
pulumi.set(self, "fork_source", value)
|
|
1333
1332
|
|
|
1334
|
-
@property
|
|
1333
|
+
@_builtins.property
|
|
1335
1334
|
@pulumi.getter(name="hostPrimary")
|
|
1336
|
-
def host_primary(self) -> Optional[pulumi.Input[
|
|
1335
|
+
def host_primary(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1337
1336
|
"""
|
|
1338
1337
|
The primary host for the Managed Database.
|
|
1339
1338
|
"""
|
|
1340
1339
|
return pulumi.get(self, "host_primary")
|
|
1341
1340
|
|
|
1342
1341
|
@host_primary.setter
|
|
1343
|
-
def host_primary(self, value: Optional[pulumi.Input[
|
|
1342
|
+
def host_primary(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1344
1343
|
pulumi.set(self, "host_primary", value)
|
|
1345
1344
|
|
|
1346
|
-
@property
|
|
1345
|
+
@_builtins.property
|
|
1347
1346
|
@pulumi.getter(name="hostSecondary")
|
|
1348
|
-
def host_secondary(self) -> Optional[pulumi.Input[
|
|
1347
|
+
def host_secondary(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1349
1348
|
"""
|
|
1350
1349
|
The secondary/private host for the managed database.
|
|
1351
1350
|
"""
|
|
1352
1351
|
return pulumi.get(self, "host_secondary")
|
|
1353
1352
|
|
|
1354
1353
|
@host_secondary.setter
|
|
1355
|
-
def host_secondary(self, value: Optional[pulumi.Input[
|
|
1354
|
+
def host_secondary(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1356
1355
|
pulumi.set(self, "host_secondary", value)
|
|
1357
1356
|
|
|
1358
|
-
@property
|
|
1357
|
+
@_builtins.property
|
|
1359
1358
|
@pulumi.getter
|
|
1360
|
-
def label(self) -> Optional[pulumi.Input[
|
|
1359
|
+
def label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1361
1360
|
"""
|
|
1362
1361
|
A unique, user-defined string referring to the Managed Database.
|
|
1363
1362
|
"""
|
|
1364
1363
|
return pulumi.get(self, "label")
|
|
1365
1364
|
|
|
1366
1365
|
@label.setter
|
|
1367
|
-
def label(self, value: Optional[pulumi.Input[
|
|
1366
|
+
def label(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1368
1367
|
pulumi.set(self, "label", value)
|
|
1369
1368
|
|
|
1370
|
-
@property
|
|
1369
|
+
@_builtins.property
|
|
1371
1370
|
@pulumi.getter
|
|
1372
|
-
def members(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
1371
|
+
def members(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
1373
1372
|
"""
|
|
1374
1373
|
A mapping between IP addresses and strings designating them as primary or failover.
|
|
1375
1374
|
"""
|
|
1376
1375
|
return pulumi.get(self, "members")
|
|
1377
1376
|
|
|
1378
1377
|
@members.setter
|
|
1379
|
-
def members(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
1378
|
+
def members(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
1380
1379
|
pulumi.set(self, "members", value)
|
|
1381
1380
|
|
|
1382
|
-
@property
|
|
1381
|
+
@_builtins.property
|
|
1383
1382
|
@pulumi.getter(name="oldestRestoreTime")
|
|
1384
|
-
def oldest_restore_time(self) -> Optional[pulumi.Input[
|
|
1383
|
+
def oldest_restore_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1385
1384
|
"""
|
|
1386
1385
|
The oldest time to which a database can be restored.
|
|
1387
1386
|
"""
|
|
1388
1387
|
return pulumi.get(self, "oldest_restore_time")
|
|
1389
1388
|
|
|
1390
1389
|
@oldest_restore_time.setter
|
|
1391
|
-
def oldest_restore_time(self, value: Optional[pulumi.Input[
|
|
1390
|
+
def oldest_restore_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1392
1391
|
pulumi.set(self, "oldest_restore_time", value)
|
|
1393
1392
|
|
|
1394
|
-
@property
|
|
1393
|
+
@_builtins.property
|
|
1395
1394
|
@pulumi.getter(name="pendingUpdates")
|
|
1396
1395
|
def pending_updates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseMysqlV2PendingUpdateArgs']]]]:
|
|
1397
1396
|
"""
|
|
@@ -1403,103 +1402,103 @@ class _DatabaseMysqlV2State:
|
|
|
1403
1402
|
def pending_updates(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseMysqlV2PendingUpdateArgs']]]]):
|
|
1404
1403
|
pulumi.set(self, "pending_updates", value)
|
|
1405
1404
|
|
|
1406
|
-
@property
|
|
1405
|
+
@_builtins.property
|
|
1407
1406
|
@pulumi.getter
|
|
1408
|
-
def platform(self) -> Optional[pulumi.Input[
|
|
1407
|
+
def platform(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1409
1408
|
"""
|
|
1410
1409
|
The back-end platform for relational databases used by the service.
|
|
1411
1410
|
"""
|
|
1412
1411
|
return pulumi.get(self, "platform")
|
|
1413
1412
|
|
|
1414
1413
|
@platform.setter
|
|
1415
|
-
def platform(self, value: Optional[pulumi.Input[
|
|
1414
|
+
def platform(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1416
1415
|
pulumi.set(self, "platform", value)
|
|
1417
1416
|
|
|
1418
|
-
@property
|
|
1417
|
+
@_builtins.property
|
|
1419
1418
|
@pulumi.getter
|
|
1420
|
-
def port(self) -> Optional[pulumi.Input[
|
|
1419
|
+
def port(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1421
1420
|
"""
|
|
1422
1421
|
The access port for this Managed Database.
|
|
1423
1422
|
"""
|
|
1424
1423
|
return pulumi.get(self, "port")
|
|
1425
1424
|
|
|
1426
1425
|
@port.setter
|
|
1427
|
-
def port(self, value: Optional[pulumi.Input[
|
|
1426
|
+
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1428
1427
|
pulumi.set(self, "port", value)
|
|
1429
1428
|
|
|
1430
|
-
@property
|
|
1429
|
+
@_builtins.property
|
|
1431
1430
|
@pulumi.getter
|
|
1432
|
-
def region(self) -> Optional[pulumi.Input[
|
|
1431
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1433
1432
|
"""
|
|
1434
1433
|
The region to use for the Managed Database.
|
|
1435
1434
|
"""
|
|
1436
1435
|
return pulumi.get(self, "region")
|
|
1437
1436
|
|
|
1438
1437
|
@region.setter
|
|
1439
|
-
def region(self, value: Optional[pulumi.Input[
|
|
1438
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1440
1439
|
pulumi.set(self, "region", value)
|
|
1441
1440
|
|
|
1442
|
-
@property
|
|
1441
|
+
@_builtins.property
|
|
1443
1442
|
@pulumi.getter(name="rootPassword")
|
|
1444
|
-
def root_password(self) -> Optional[pulumi.Input[
|
|
1443
|
+
def root_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1445
1444
|
"""
|
|
1446
1445
|
The randomly-generated root password for the Managed Database instance.
|
|
1447
1446
|
"""
|
|
1448
1447
|
return pulumi.get(self, "root_password")
|
|
1449
1448
|
|
|
1450
1449
|
@root_password.setter
|
|
1451
|
-
def root_password(self, value: Optional[pulumi.Input[
|
|
1450
|
+
def root_password(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1452
1451
|
pulumi.set(self, "root_password", value)
|
|
1453
1452
|
|
|
1454
|
-
@property
|
|
1453
|
+
@_builtins.property
|
|
1455
1454
|
@pulumi.getter(name="rootUsername")
|
|
1456
|
-
def root_username(self) -> Optional[pulumi.Input[
|
|
1455
|
+
def root_username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1457
1456
|
"""
|
|
1458
1457
|
The root username for the Managed Database instance.
|
|
1459
1458
|
"""
|
|
1460
1459
|
return pulumi.get(self, "root_username")
|
|
1461
1460
|
|
|
1462
1461
|
@root_username.setter
|
|
1463
|
-
def root_username(self, value: Optional[pulumi.Input[
|
|
1462
|
+
def root_username(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1464
1463
|
pulumi.set(self, "root_username", value)
|
|
1465
1464
|
|
|
1466
|
-
@property
|
|
1465
|
+
@_builtins.property
|
|
1467
1466
|
@pulumi.getter(name="sslConnection")
|
|
1468
|
-
def ssl_connection(self) -> Optional[pulumi.Input[
|
|
1467
|
+
def ssl_connection(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1469
1468
|
"""
|
|
1470
1469
|
Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
1471
1470
|
"""
|
|
1472
1471
|
return pulumi.get(self, "ssl_connection")
|
|
1473
1472
|
|
|
1474
1473
|
@ssl_connection.setter
|
|
1475
|
-
def ssl_connection(self, value: Optional[pulumi.Input[
|
|
1474
|
+
def ssl_connection(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1476
1475
|
pulumi.set(self, "ssl_connection", value)
|
|
1477
1476
|
|
|
1478
|
-
@property
|
|
1477
|
+
@_builtins.property
|
|
1479
1478
|
@pulumi.getter
|
|
1480
|
-
def status(self) -> Optional[pulumi.Input[
|
|
1479
|
+
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1481
1480
|
"""
|
|
1482
1481
|
The operating status of the Managed Database.
|
|
1483
1482
|
"""
|
|
1484
1483
|
return pulumi.get(self, "status")
|
|
1485
1484
|
|
|
1486
1485
|
@status.setter
|
|
1487
|
-
def status(self, value: Optional[pulumi.Input[
|
|
1486
|
+
def status(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1488
1487
|
pulumi.set(self, "status", value)
|
|
1489
1488
|
|
|
1490
|
-
@property
|
|
1489
|
+
@_builtins.property
|
|
1491
1490
|
@pulumi.getter
|
|
1492
|
-
def suspended(self) -> Optional[pulumi.Input[
|
|
1491
|
+
def suspended(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1493
1492
|
"""
|
|
1494
1493
|
Whether this Managed Database should be suspended.
|
|
1495
1494
|
"""
|
|
1496
1495
|
return pulumi.get(self, "suspended")
|
|
1497
1496
|
|
|
1498
1497
|
@suspended.setter
|
|
1499
|
-
def suspended(self, value: Optional[pulumi.Input[
|
|
1498
|
+
def suspended(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1500
1499
|
pulumi.set(self, "suspended", value)
|
|
1501
1500
|
|
|
1502
|
-
@property
|
|
1501
|
+
@_builtins.property
|
|
1503
1502
|
@pulumi.getter
|
|
1504
1503
|
def timeouts(self) -> Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']]:
|
|
1505
1504
|
return pulumi.get(self, "timeouts")
|
|
@@ -1508,9 +1507,9 @@ class _DatabaseMysqlV2State:
|
|
|
1508
1507
|
def timeouts(self, value: Optional[pulumi.Input['DatabaseMysqlV2TimeoutsArgs']]):
|
|
1509
1508
|
pulumi.set(self, "timeouts", value)
|
|
1510
1509
|
|
|
1511
|
-
@property
|
|
1510
|
+
@_builtins.property
|
|
1512
1511
|
@pulumi.getter
|
|
1513
|
-
def type(self) -> Optional[pulumi.Input[
|
|
1512
|
+
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1514
1513
|
"""
|
|
1515
1514
|
The Linode Instance type used for the nodes of the Managed Database.
|
|
1516
1515
|
|
|
@@ -1519,22 +1518,22 @@ class _DatabaseMysqlV2State:
|
|
|
1519
1518
|
return pulumi.get(self, "type")
|
|
1520
1519
|
|
|
1521
1520
|
@type.setter
|
|
1522
|
-
def type(self, value: Optional[pulumi.Input[
|
|
1521
|
+
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1523
1522
|
pulumi.set(self, "type", value)
|
|
1524
1523
|
|
|
1525
|
-
@property
|
|
1524
|
+
@_builtins.property
|
|
1526
1525
|
@pulumi.getter
|
|
1527
|
-
def updated(self) -> Optional[pulumi.Input[
|
|
1526
|
+
def updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1528
1527
|
"""
|
|
1529
1528
|
When this Managed Database was last updated.
|
|
1530
1529
|
"""
|
|
1531
1530
|
return pulumi.get(self, "updated")
|
|
1532
1531
|
|
|
1533
1532
|
@updated.setter
|
|
1534
|
-
def updated(self, value: Optional[pulumi.Input[
|
|
1533
|
+
def updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1535
1534
|
pulumi.set(self, "updated", value)
|
|
1536
1535
|
|
|
1537
|
-
@property
|
|
1536
|
+
@_builtins.property
|
|
1538
1537
|
@pulumi.getter
|
|
1539
1538
|
def updates(self) -> Optional[pulumi.Input['DatabaseMysqlV2UpdatesArgs']]:
|
|
1540
1539
|
"""
|
|
@@ -1546,16 +1545,16 @@ class _DatabaseMysqlV2State:
|
|
|
1546
1545
|
def updates(self, value: Optional[pulumi.Input['DatabaseMysqlV2UpdatesArgs']]):
|
|
1547
1546
|
pulumi.set(self, "updates", value)
|
|
1548
1547
|
|
|
1549
|
-
@property
|
|
1548
|
+
@_builtins.property
|
|
1550
1549
|
@pulumi.getter
|
|
1551
|
-
def version(self) -> Optional[pulumi.Input[
|
|
1550
|
+
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1552
1551
|
"""
|
|
1553
1552
|
The Managed Database engine version. (e.g. `13.2`)
|
|
1554
1553
|
"""
|
|
1555
1554
|
return pulumi.get(self, "version")
|
|
1556
1555
|
|
|
1557
1556
|
@version.setter
|
|
1558
|
-
def version(self, value: Optional[pulumi.Input[
|
|
1557
|
+
def version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1559
1558
|
pulumi.set(self, "version", value)
|
|
1560
1559
|
|
|
1561
1560
|
|
|
@@ -1565,44 +1564,44 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
1565
1564
|
def __init__(__self__,
|
|
1566
1565
|
resource_name: str,
|
|
1567
1566
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1568
|
-
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1569
|
-
cluster_size: Optional[pulumi.Input[
|
|
1570
|
-
engine_config_binlog_retention_period: Optional[pulumi.Input[
|
|
1571
|
-
engine_config_mysql_connect_timeout: Optional[pulumi.Input[
|
|
1572
|
-
engine_config_mysql_default_time_zone: Optional[pulumi.Input[
|
|
1573
|
-
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[
|
|
1574
|
-
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[
|
|
1575
|
-
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[
|
|
1576
|
-
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[
|
|
1577
|
-
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[
|
|
1578
|
-
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[
|
|
1579
|
-
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[
|
|
1580
|
-
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[
|
|
1581
|
-
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[
|
|
1582
|
-
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[
|
|
1583
|
-
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[
|
|
1584
|
-
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[
|
|
1585
|
-
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[
|
|
1586
|
-
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[
|
|
1587
|
-
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[
|
|
1588
|
-
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[
|
|
1589
|
-
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[
|
|
1590
|
-
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[
|
|
1591
|
-
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[
|
|
1592
|
-
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[
|
|
1593
|
-
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[
|
|
1594
|
-
engine_config_mysql_sql_mode: Optional[pulumi.Input[
|
|
1595
|
-
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[
|
|
1596
|
-
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[
|
|
1597
|
-
engine_config_mysql_wait_timeout: Optional[pulumi.Input[
|
|
1598
|
-
engine_id: Optional[pulumi.Input[
|
|
1599
|
-
fork_restore_time: Optional[pulumi.Input[
|
|
1600
|
-
fork_source: Optional[pulumi.Input[
|
|
1601
|
-
label: Optional[pulumi.Input[
|
|
1602
|
-
region: Optional[pulumi.Input[
|
|
1603
|
-
suspended: Optional[pulumi.Input[
|
|
1567
|
+
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1568
|
+
cluster_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1569
|
+
engine_config_binlog_retention_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1570
|
+
engine_config_mysql_connect_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1571
|
+
engine_config_mysql_default_time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1572
|
+
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[_builtins.float]] = None,
|
|
1573
|
+
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1574
|
+
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1575
|
+
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1576
|
+
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1577
|
+
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1578
|
+
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1579
|
+
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1580
|
+
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1581
|
+
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1582
|
+
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1583
|
+
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1584
|
+
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1585
|
+
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1586
|
+
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1587
|
+
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1588
|
+
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1589
|
+
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1590
|
+
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1591
|
+
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1592
|
+
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1593
|
+
engine_config_mysql_sql_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1594
|
+
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1595
|
+
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1596
|
+
engine_config_mysql_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1597
|
+
engine_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1598
|
+
fork_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1599
|
+
fork_source: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1600
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1601
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1602
|
+
suspended: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1604
1603
|
timeouts: Optional[pulumi.Input[Union['DatabaseMysqlV2TimeoutsArgs', 'DatabaseMysqlV2TimeoutsArgsDict']]] = None,
|
|
1605
|
-
type: Optional[pulumi.Input[
|
|
1604
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1606
1605
|
updates: Optional[pulumi.Input[Union['DatabaseMysqlV2UpdatesArgs', 'DatabaseMysqlV2UpdatesArgsDict']]] = None,
|
|
1607
1606
|
__props__=None):
|
|
1608
1607
|
"""
|
|
@@ -1652,45 +1651,45 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
1652
1651
|
|
|
1653
1652
|
:param str resource_name: The name of the resource.
|
|
1654
1653
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1655
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1656
|
-
:param pulumi.Input[
|
|
1657
|
-
:param pulumi.Input[
|
|
1658
|
-
:param pulumi.Input[
|
|
1659
|
-
:param pulumi.Input[
|
|
1660
|
-
:param pulumi.Input[
|
|
1661
|
-
:param pulumi.Input[
|
|
1662
|
-
:param pulumi.Input[
|
|
1663
|
-
:param pulumi.Input[
|
|
1664
|
-
:param pulumi.Input[
|
|
1665
|
-
:param pulumi.Input[
|
|
1666
|
-
:param pulumi.Input[
|
|
1667
|
-
:param pulumi.Input[
|
|
1668
|
-
:param pulumi.Input[
|
|
1669
|
-
:param pulumi.Input[
|
|
1670
|
-
:param pulumi.Input[
|
|
1671
|
-
:param pulumi.Input[
|
|
1672
|
-
:param pulumi.Input[
|
|
1673
|
-
:param pulumi.Input[
|
|
1674
|
-
:param pulumi.Input[
|
|
1675
|
-
:param pulumi.Input[
|
|
1676
|
-
:param pulumi.Input[
|
|
1677
|
-
:param pulumi.Input[
|
|
1678
|
-
:param pulumi.Input[
|
|
1679
|
-
:param pulumi.Input[
|
|
1680
|
-
:param pulumi.Input[
|
|
1681
|
-
:param pulumi.Input[
|
|
1682
|
-
:param pulumi.Input[
|
|
1683
|
-
:param pulumi.Input[
|
|
1684
|
-
:param pulumi.Input[
|
|
1685
|
-
:param pulumi.Input[
|
|
1686
|
-
:param pulumi.Input[
|
|
1687
|
-
:param pulumi.Input[
|
|
1654
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allow_lists: A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
1655
|
+
:param pulumi.Input[_builtins.int] cluster_size: The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
1656
|
+
:param pulumi.Input[_builtins.int] engine_config_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.
|
|
1657
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
1658
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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.
|
|
1659
|
+
:param pulumi.Input[_builtins.float] engine_config_mysql_group_concat_max_len: The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
1660
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_information_schema_stats_expiry: The time, in seconds, before cached statistics expire.
|
|
1661
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1662
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1663
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1664
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
1665
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
1666
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
1667
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1668
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1669
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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.
|
|
1670
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
1671
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1672
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
1673
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
|
|
1674
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
1675
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
1676
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1677
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
|
1678
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
1679
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
1680
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
1681
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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. (default `true`)
|
|
1682
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
1683
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
1684
|
+
:param pulumi.Input[_builtins.str] engine_id: The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
1685
|
+
:param pulumi.Input[_builtins.str] fork_restore_time: The database timestamp from which it was restored.
|
|
1686
|
+
:param pulumi.Input[_builtins.int] fork_source: The ID of the database that was forked from.
|
|
1688
1687
|
|
|
1689
1688
|
* `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
1690
|
-
:param pulumi.Input[
|
|
1691
|
-
:param pulumi.Input[
|
|
1692
|
-
:param pulumi.Input[
|
|
1693
|
-
:param pulumi.Input[
|
|
1689
|
+
:param pulumi.Input[_builtins.str] label: A unique, user-defined string referring to the Managed Database.
|
|
1690
|
+
:param pulumi.Input[_builtins.str] region: The region to use for the Managed Database.
|
|
1691
|
+
:param pulumi.Input[_builtins.bool] suspended: Whether this Managed Database should be suspended.
|
|
1692
|
+
:param pulumi.Input[_builtins.str] type: The Linode Instance type used for the nodes of the Managed Database.
|
|
1694
1693
|
|
|
1695
1694
|
- - -
|
|
1696
1695
|
:param pulumi.Input[Union['DatabaseMysqlV2UpdatesArgs', 'DatabaseMysqlV2UpdatesArgsDict']] updates: Configuration settings for automated patch update maintenance for the Managed Database.
|
|
@@ -1761,44 +1760,44 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
1761
1760
|
def _internal_init(__self__,
|
|
1762
1761
|
resource_name: str,
|
|
1763
1762
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1764
|
-
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1765
|
-
cluster_size: Optional[pulumi.Input[
|
|
1766
|
-
engine_config_binlog_retention_period: Optional[pulumi.Input[
|
|
1767
|
-
engine_config_mysql_connect_timeout: Optional[pulumi.Input[
|
|
1768
|
-
engine_config_mysql_default_time_zone: Optional[pulumi.Input[
|
|
1769
|
-
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[
|
|
1770
|
-
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[
|
|
1771
|
-
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[
|
|
1772
|
-
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[
|
|
1773
|
-
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[
|
|
1774
|
-
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[
|
|
1775
|
-
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[
|
|
1776
|
-
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[
|
|
1777
|
-
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[
|
|
1778
|
-
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[
|
|
1779
|
-
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[
|
|
1780
|
-
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[
|
|
1781
|
-
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[
|
|
1782
|
-
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[
|
|
1783
|
-
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[
|
|
1784
|
-
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[
|
|
1785
|
-
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[
|
|
1786
|
-
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[
|
|
1787
|
-
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[
|
|
1788
|
-
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[
|
|
1789
|
-
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[
|
|
1790
|
-
engine_config_mysql_sql_mode: Optional[pulumi.Input[
|
|
1791
|
-
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[
|
|
1792
|
-
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[
|
|
1793
|
-
engine_config_mysql_wait_timeout: Optional[pulumi.Input[
|
|
1794
|
-
engine_id: Optional[pulumi.Input[
|
|
1795
|
-
fork_restore_time: Optional[pulumi.Input[
|
|
1796
|
-
fork_source: Optional[pulumi.Input[
|
|
1797
|
-
label: Optional[pulumi.Input[
|
|
1798
|
-
region: Optional[pulumi.Input[
|
|
1799
|
-
suspended: Optional[pulumi.Input[
|
|
1763
|
+
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1764
|
+
cluster_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1765
|
+
engine_config_binlog_retention_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1766
|
+
engine_config_mysql_connect_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1767
|
+
engine_config_mysql_default_time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1768
|
+
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[_builtins.float]] = None,
|
|
1769
|
+
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1770
|
+
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1771
|
+
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1772
|
+
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1773
|
+
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1774
|
+
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1775
|
+
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1776
|
+
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1777
|
+
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1778
|
+
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1779
|
+
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1780
|
+
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1781
|
+
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1782
|
+
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1783
|
+
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1784
|
+
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1785
|
+
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1786
|
+
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1787
|
+
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1788
|
+
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1789
|
+
engine_config_mysql_sql_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1790
|
+
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1791
|
+
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1792
|
+
engine_config_mysql_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1793
|
+
engine_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1794
|
+
fork_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1795
|
+
fork_source: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1796
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1797
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1798
|
+
suspended: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1800
1799
|
timeouts: Optional[pulumi.Input[Union['DatabaseMysqlV2TimeoutsArgs', 'DatabaseMysqlV2TimeoutsArgsDict']]] = None,
|
|
1801
|
-
type: Optional[pulumi.Input[
|
|
1800
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1802
1801
|
updates: Optional[pulumi.Input[Union['DatabaseMysqlV2UpdatesArgs', 'DatabaseMysqlV2UpdatesArgsDict']]] = None,
|
|
1803
1802
|
__props__=None):
|
|
1804
1803
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -1885,62 +1884,62 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
1885
1884
|
def get(resource_name: str,
|
|
1886
1885
|
id: pulumi.Input[str],
|
|
1887
1886
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1888
|
-
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1889
|
-
ca_cert: Optional[pulumi.Input[
|
|
1890
|
-
cluster_size: Optional[pulumi.Input[
|
|
1891
|
-
created: Optional[pulumi.Input[
|
|
1892
|
-
encrypted: Optional[pulumi.Input[
|
|
1893
|
-
engine: Optional[pulumi.Input[
|
|
1894
|
-
engine_config_binlog_retention_period: Optional[pulumi.Input[
|
|
1895
|
-
engine_config_mysql_connect_timeout: Optional[pulumi.Input[
|
|
1896
|
-
engine_config_mysql_default_time_zone: Optional[pulumi.Input[
|
|
1897
|
-
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[
|
|
1898
|
-
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[
|
|
1899
|
-
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[
|
|
1900
|
-
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[
|
|
1901
|
-
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[
|
|
1902
|
-
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[
|
|
1903
|
-
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[
|
|
1904
|
-
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[
|
|
1905
|
-
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[
|
|
1906
|
-
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[
|
|
1907
|
-
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[
|
|
1908
|
-
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[
|
|
1909
|
-
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[
|
|
1910
|
-
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[
|
|
1911
|
-
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[
|
|
1912
|
-
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[
|
|
1913
|
-
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[
|
|
1914
|
-
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[
|
|
1915
|
-
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[
|
|
1916
|
-
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[
|
|
1917
|
-
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[
|
|
1918
|
-
engine_config_mysql_sql_mode: Optional[pulumi.Input[
|
|
1919
|
-
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[
|
|
1920
|
-
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[
|
|
1921
|
-
engine_config_mysql_wait_timeout: Optional[pulumi.Input[
|
|
1922
|
-
engine_id: Optional[pulumi.Input[
|
|
1923
|
-
fork_restore_time: Optional[pulumi.Input[
|
|
1924
|
-
fork_source: Optional[pulumi.Input[
|
|
1925
|
-
host_primary: Optional[pulumi.Input[
|
|
1926
|
-
host_secondary: Optional[pulumi.Input[
|
|
1927
|
-
label: Optional[pulumi.Input[
|
|
1928
|
-
members: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
1929
|
-
oldest_restore_time: Optional[pulumi.Input[
|
|
1887
|
+
allow_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1888
|
+
ca_cert: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1889
|
+
cluster_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1890
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1891
|
+
encrypted: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1892
|
+
engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1893
|
+
engine_config_binlog_retention_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1894
|
+
engine_config_mysql_connect_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1895
|
+
engine_config_mysql_default_time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1896
|
+
engine_config_mysql_group_concat_max_len: Optional[pulumi.Input[_builtins.float]] = None,
|
|
1897
|
+
engine_config_mysql_information_schema_stats_expiry: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1898
|
+
engine_config_mysql_innodb_change_buffer_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1899
|
+
engine_config_mysql_innodb_flush_neighbors: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1900
|
+
engine_config_mysql_innodb_ft_min_token_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1901
|
+
engine_config_mysql_innodb_ft_server_stopword_table: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1902
|
+
engine_config_mysql_innodb_lock_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1903
|
+
engine_config_mysql_innodb_log_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1904
|
+
engine_config_mysql_innodb_online_alter_log_max_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1905
|
+
engine_config_mysql_innodb_read_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1906
|
+
engine_config_mysql_innodb_rollback_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1907
|
+
engine_config_mysql_innodb_thread_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1908
|
+
engine_config_mysql_innodb_write_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1909
|
+
engine_config_mysql_interactive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1910
|
+
engine_config_mysql_internal_tmp_mem_storage_engine: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1911
|
+
engine_config_mysql_max_allowed_packet: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1912
|
+
engine_config_mysql_max_heap_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1913
|
+
engine_config_mysql_net_buffer_length: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1914
|
+
engine_config_mysql_net_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1915
|
+
engine_config_mysql_net_write_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1916
|
+
engine_config_mysql_sort_buffer_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1917
|
+
engine_config_mysql_sql_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1918
|
+
engine_config_mysql_sql_require_primary_key: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1919
|
+
engine_config_mysql_tmp_table_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1920
|
+
engine_config_mysql_wait_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1921
|
+
engine_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1922
|
+
fork_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1923
|
+
fork_source: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1924
|
+
host_primary: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1925
|
+
host_secondary: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1926
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1927
|
+
members: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
1928
|
+
oldest_restore_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1930
1929
|
pending_updates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabaseMysqlV2PendingUpdateArgs', 'DatabaseMysqlV2PendingUpdateArgsDict']]]]] = None,
|
|
1931
|
-
platform: Optional[pulumi.Input[
|
|
1932
|
-
port: Optional[pulumi.Input[
|
|
1933
|
-
region: Optional[pulumi.Input[
|
|
1934
|
-
root_password: Optional[pulumi.Input[
|
|
1935
|
-
root_username: Optional[pulumi.Input[
|
|
1936
|
-
ssl_connection: Optional[pulumi.Input[
|
|
1937
|
-
status: Optional[pulumi.Input[
|
|
1938
|
-
suspended: Optional[pulumi.Input[
|
|
1930
|
+
platform: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1931
|
+
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1932
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1933
|
+
root_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1934
|
+
root_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1935
|
+
ssl_connection: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1936
|
+
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1937
|
+
suspended: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1939
1938
|
timeouts: Optional[pulumi.Input[Union['DatabaseMysqlV2TimeoutsArgs', 'DatabaseMysqlV2TimeoutsArgsDict']]] = None,
|
|
1940
|
-
type: Optional[pulumi.Input[
|
|
1941
|
-
updated: Optional[pulumi.Input[
|
|
1939
|
+
type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1940
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1942
1941
|
updates: Optional[pulumi.Input[Union['DatabaseMysqlV2UpdatesArgs', 'DatabaseMysqlV2UpdatesArgsDict']]] = None,
|
|
1943
|
-
version: Optional[pulumi.Input[
|
|
1942
|
+
version: Optional[pulumi.Input[_builtins.str]] = None) -> 'DatabaseMysqlV2':
|
|
1944
1943
|
"""
|
|
1945
1944
|
Get an existing DatabaseMysqlV2 resource's state with the given name, id, and optional extra
|
|
1946
1945
|
properties used to qualify the lookup.
|
|
@@ -1948,65 +1947,65 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
1948
1947
|
:param str resource_name: The unique name of the resulting resource.
|
|
1949
1948
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1950
1949
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1951
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1952
|
-
:param pulumi.Input[
|
|
1953
|
-
:param pulumi.Input[
|
|
1954
|
-
:param pulumi.Input[
|
|
1955
|
-
:param pulumi.Input[
|
|
1956
|
-
:param pulumi.Input[
|
|
1957
|
-
:param pulumi.Input[
|
|
1958
|
-
:param pulumi.Input[
|
|
1959
|
-
:param pulumi.Input[
|
|
1960
|
-
:param pulumi.Input[
|
|
1961
|
-
:param pulumi.Input[
|
|
1962
|
-
:param pulumi.Input[
|
|
1963
|
-
:param pulumi.Input[
|
|
1964
|
-
:param pulumi.Input[
|
|
1965
|
-
:param pulumi.Input[
|
|
1966
|
-
:param pulumi.Input[
|
|
1967
|
-
:param pulumi.Input[
|
|
1968
|
-
:param pulumi.Input[
|
|
1969
|
-
:param pulumi.Input[
|
|
1970
|
-
:param pulumi.Input[
|
|
1971
|
-
:param pulumi.Input[
|
|
1972
|
-
:param pulumi.Input[
|
|
1973
|
-
:param pulumi.Input[
|
|
1974
|
-
:param pulumi.Input[
|
|
1975
|
-
:param pulumi.Input[
|
|
1976
|
-
:param pulumi.Input[
|
|
1977
|
-
:param pulumi.Input[
|
|
1978
|
-
:param pulumi.Input[
|
|
1979
|
-
:param pulumi.Input[
|
|
1980
|
-
:param pulumi.Input[
|
|
1981
|
-
:param pulumi.Input[
|
|
1982
|
-
:param pulumi.Input[
|
|
1983
|
-
:param pulumi.Input[
|
|
1984
|
-
:param pulumi.Input[
|
|
1985
|
-
:param pulumi.Input[
|
|
1986
|
-
:param pulumi.Input[
|
|
1987
|
-
:param pulumi.Input[
|
|
1950
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allow_lists: A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
1951
|
+
:param pulumi.Input[_builtins.str] ca_cert: The base64-encoded SSL CA certificate for the Managed Database.
|
|
1952
|
+
:param pulumi.Input[_builtins.int] cluster_size: The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
1953
|
+
:param pulumi.Input[_builtins.str] created: When this Managed Database was created.
|
|
1954
|
+
:param pulumi.Input[_builtins.bool] encrypted: Whether the Managed Databases is encrypted.
|
|
1955
|
+
:param pulumi.Input[_builtins.str] engine: The Managed Database engine. (e.g. `mysql`)
|
|
1956
|
+
:param pulumi.Input[_builtins.int] engine_config_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.
|
|
1957
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
1958
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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.
|
|
1959
|
+
:param pulumi.Input[_builtins.float] engine_config_mysql_group_concat_max_len: The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
1960
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_information_schema_stats_expiry: The time, in seconds, before cached statistics expire.
|
|
1961
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1962
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1963
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1964
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_innodb_ft_server_stopword_table: This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
1965
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_lock_wait_timeout: The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
1966
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_log_buffer_size: The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
1967
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1968
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1969
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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.
|
|
1970
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_innodb_thread_concurrency: Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
1971
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1972
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
1973
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_internal_tmp_mem_storage_engine: The storage engine for in-memory internal temporary tables.
|
|
1974
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
1975
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
1976
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_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.
|
|
1977
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read.
|
|
1978
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
1979
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
1980
|
+
:param pulumi.Input[_builtins.str] engine_config_mysql_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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
1981
|
+
:param pulumi.Input[_builtins.bool] engine_config_mysql_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. (default `true`)
|
|
1982
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_tmp_table_size: Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
1983
|
+
:param pulumi.Input[_builtins.int] engine_config_mysql_wait_timeout: The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
1984
|
+
:param pulumi.Input[_builtins.str] engine_id: The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
1985
|
+
:param pulumi.Input[_builtins.str] fork_restore_time: The database timestamp from which it was restored.
|
|
1986
|
+
:param pulumi.Input[_builtins.int] fork_source: The ID of the database that was forked from.
|
|
1988
1987
|
|
|
1989
1988
|
* `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
1990
|
-
:param pulumi.Input[
|
|
1991
|
-
:param pulumi.Input[
|
|
1992
|
-
:param pulumi.Input[
|
|
1993
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
1994
|
-
:param pulumi.Input[
|
|
1989
|
+
:param pulumi.Input[_builtins.str] host_primary: The primary host for the Managed Database.
|
|
1990
|
+
:param pulumi.Input[_builtins.str] host_secondary: The secondary/private host for the managed database.
|
|
1991
|
+
:param pulumi.Input[_builtins.str] label: A unique, user-defined string referring to the Managed Database.
|
|
1992
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] members: A mapping between IP addresses and strings designating them as primary or failover.
|
|
1993
|
+
:param pulumi.Input[_builtins.str] oldest_restore_time: The oldest time to which a database can be restored.
|
|
1995
1994
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DatabaseMysqlV2PendingUpdateArgs', 'DatabaseMysqlV2PendingUpdateArgsDict']]]] pending_updates: A set of pending updates.
|
|
1996
|
-
:param pulumi.Input[
|
|
1997
|
-
:param pulumi.Input[
|
|
1998
|
-
:param pulumi.Input[
|
|
1999
|
-
:param pulumi.Input[
|
|
2000
|
-
:param pulumi.Input[
|
|
2001
|
-
:param pulumi.Input[
|
|
2002
|
-
:param pulumi.Input[
|
|
2003
|
-
:param pulumi.Input[
|
|
2004
|
-
:param pulumi.Input[
|
|
1995
|
+
:param pulumi.Input[_builtins.str] platform: The back-end platform for relational databases used by the service.
|
|
1996
|
+
:param pulumi.Input[_builtins.int] port: The access port for this Managed Database.
|
|
1997
|
+
:param pulumi.Input[_builtins.str] region: The region to use for the Managed Database.
|
|
1998
|
+
:param pulumi.Input[_builtins.str] root_password: The randomly-generated root password for the Managed Database instance.
|
|
1999
|
+
:param pulumi.Input[_builtins.str] root_username: The root username for the Managed Database instance.
|
|
2000
|
+
:param pulumi.Input[_builtins.bool] ssl_connection: Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
2001
|
+
:param pulumi.Input[_builtins.str] status: The operating status of the Managed Database.
|
|
2002
|
+
:param pulumi.Input[_builtins.bool] suspended: Whether this Managed Database should be suspended.
|
|
2003
|
+
:param pulumi.Input[_builtins.str] type: The Linode Instance type used for the nodes of the Managed Database.
|
|
2005
2004
|
|
|
2006
2005
|
- - -
|
|
2007
|
-
:param pulumi.Input[
|
|
2006
|
+
:param pulumi.Input[_builtins.str] updated: When this Managed Database was last updated.
|
|
2008
2007
|
:param pulumi.Input[Union['DatabaseMysqlV2UpdatesArgs', 'DatabaseMysqlV2UpdatesArgsDict']] updates: Configuration settings for automated patch update maintenance for the Managed Database.
|
|
2009
|
-
:param pulumi.Input[
|
|
2008
|
+
:param pulumi.Input[_builtins.str] version: The Managed Database engine version. (e.g. `13.2`)
|
|
2010
2009
|
"""
|
|
2011
2010
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
2012
2011
|
|
|
@@ -2070,297 +2069,297 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
2070
2069
|
__props__.__dict__["version"] = version
|
|
2071
2070
|
return DatabaseMysqlV2(resource_name, opts=opts, __props__=__props__)
|
|
2072
2071
|
|
|
2073
|
-
@property
|
|
2072
|
+
@_builtins.property
|
|
2074
2073
|
@pulumi.getter(name="allowLists")
|
|
2075
|
-
def allow_lists(self) -> pulumi.Output[Sequence[
|
|
2074
|
+
def allow_lists(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
2076
2075
|
"""
|
|
2077
2076
|
A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
|
|
2078
2077
|
"""
|
|
2079
2078
|
return pulumi.get(self, "allow_lists")
|
|
2080
2079
|
|
|
2081
|
-
@property
|
|
2080
|
+
@_builtins.property
|
|
2082
2081
|
@pulumi.getter(name="caCert")
|
|
2083
|
-
def ca_cert(self) -> pulumi.Output[
|
|
2082
|
+
def ca_cert(self) -> pulumi.Output[_builtins.str]:
|
|
2084
2083
|
"""
|
|
2085
2084
|
The base64-encoded SSL CA certificate for the Managed Database.
|
|
2086
2085
|
"""
|
|
2087
2086
|
return pulumi.get(self, "ca_cert")
|
|
2088
2087
|
|
|
2089
|
-
@property
|
|
2088
|
+
@_builtins.property
|
|
2090
2089
|
@pulumi.getter(name="clusterSize")
|
|
2091
|
-
def cluster_size(self) -> pulumi.Output[
|
|
2090
|
+
def cluster_size(self) -> pulumi.Output[_builtins.int]:
|
|
2092
2091
|
"""
|
|
2093
2092
|
The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
2094
2093
|
"""
|
|
2095
2094
|
return pulumi.get(self, "cluster_size")
|
|
2096
2095
|
|
|
2097
|
-
@property
|
|
2096
|
+
@_builtins.property
|
|
2098
2097
|
@pulumi.getter
|
|
2099
|
-
def created(self) -> pulumi.Output[
|
|
2098
|
+
def created(self) -> pulumi.Output[_builtins.str]:
|
|
2100
2099
|
"""
|
|
2101
2100
|
When this Managed Database was created.
|
|
2102
2101
|
"""
|
|
2103
2102
|
return pulumi.get(self, "created")
|
|
2104
2103
|
|
|
2105
|
-
@property
|
|
2104
|
+
@_builtins.property
|
|
2106
2105
|
@pulumi.getter
|
|
2107
|
-
def encrypted(self) -> pulumi.Output[
|
|
2106
|
+
def encrypted(self) -> pulumi.Output[_builtins.bool]:
|
|
2108
2107
|
"""
|
|
2109
2108
|
Whether the Managed Databases is encrypted.
|
|
2110
2109
|
"""
|
|
2111
2110
|
return pulumi.get(self, "encrypted")
|
|
2112
2111
|
|
|
2113
|
-
@property
|
|
2112
|
+
@_builtins.property
|
|
2114
2113
|
@pulumi.getter
|
|
2115
|
-
def engine(self) -> pulumi.Output[
|
|
2114
|
+
def engine(self) -> pulumi.Output[_builtins.str]:
|
|
2116
2115
|
"""
|
|
2117
2116
|
The Managed Database engine. (e.g. `mysql`)
|
|
2118
2117
|
"""
|
|
2119
2118
|
return pulumi.get(self, "engine")
|
|
2120
2119
|
|
|
2121
|
-
@property
|
|
2120
|
+
@_builtins.property
|
|
2122
2121
|
@pulumi.getter(name="engineConfigBinlogRetentionPeriod")
|
|
2123
|
-
def engine_config_binlog_retention_period(self) -> pulumi.Output[
|
|
2122
|
+
def engine_config_binlog_retention_period(self) -> pulumi.Output[_builtins.int]:
|
|
2124
2123
|
"""
|
|
2125
2124
|
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.
|
|
2126
2125
|
"""
|
|
2127
2126
|
return pulumi.get(self, "engine_config_binlog_retention_period")
|
|
2128
2127
|
|
|
2129
|
-
@property
|
|
2128
|
+
@_builtins.property
|
|
2130
2129
|
@pulumi.getter(name="engineConfigMysqlConnectTimeout")
|
|
2131
|
-
def engine_config_mysql_connect_timeout(self) -> pulumi.Output[
|
|
2130
|
+
def engine_config_mysql_connect_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2132
2131
|
"""
|
|
2133
2132
|
The number of seconds that the mysqld server waits for a connect packet before responding with "Bad handshake".
|
|
2134
2133
|
"""
|
|
2135
2134
|
return pulumi.get(self, "engine_config_mysql_connect_timeout")
|
|
2136
2135
|
|
|
2137
|
-
@property
|
|
2136
|
+
@_builtins.property
|
|
2138
2137
|
@pulumi.getter(name="engineConfigMysqlDefaultTimeZone")
|
|
2139
|
-
def engine_config_mysql_default_time_zone(self) -> pulumi.Output[
|
|
2138
|
+
def engine_config_mysql_default_time_zone(self) -> pulumi.Output[_builtins.str]:
|
|
2140
2139
|
"""
|
|
2141
2140
|
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.
|
|
2142
2141
|
"""
|
|
2143
2142
|
return pulumi.get(self, "engine_config_mysql_default_time_zone")
|
|
2144
2143
|
|
|
2145
|
-
@property
|
|
2144
|
+
@_builtins.property
|
|
2146
2145
|
@pulumi.getter(name="engineConfigMysqlGroupConcatMaxLen")
|
|
2147
|
-
def engine_config_mysql_group_concat_max_len(self) -> pulumi.Output[
|
|
2146
|
+
def engine_config_mysql_group_concat_max_len(self) -> pulumi.Output[_builtins.float]:
|
|
2148
2147
|
"""
|
|
2149
2148
|
The maximum permitted result length in bytes for the `GROUP_CONCAT()` function.
|
|
2150
2149
|
"""
|
|
2151
2150
|
return pulumi.get(self, "engine_config_mysql_group_concat_max_len")
|
|
2152
2151
|
|
|
2153
|
-
@property
|
|
2152
|
+
@_builtins.property
|
|
2154
2153
|
@pulumi.getter(name="engineConfigMysqlInformationSchemaStatsExpiry")
|
|
2155
|
-
def engine_config_mysql_information_schema_stats_expiry(self) -> pulumi.Output[
|
|
2154
|
+
def engine_config_mysql_information_schema_stats_expiry(self) -> pulumi.Output[_builtins.int]:
|
|
2156
2155
|
"""
|
|
2157
2156
|
The time, in seconds, before cached statistics expire.
|
|
2158
2157
|
"""
|
|
2159
2158
|
return pulumi.get(self, "engine_config_mysql_information_schema_stats_expiry")
|
|
2160
2159
|
|
|
2161
|
-
@property
|
|
2160
|
+
@_builtins.property
|
|
2162
2161
|
@pulumi.getter(name="engineConfigMysqlInnodbChangeBufferMaxSize")
|
|
2163
|
-
def engine_config_mysql_innodb_change_buffer_max_size(self) -> pulumi.Output[
|
|
2162
|
+
def engine_config_mysql_innodb_change_buffer_max_size(self) -> pulumi.Output[_builtins.int]:
|
|
2164
2163
|
"""
|
|
2165
2164
|
Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. Default is 25.
|
|
2166
2165
|
"""
|
|
2167
2166
|
return pulumi.get(self, "engine_config_mysql_innodb_change_buffer_max_size")
|
|
2168
2167
|
|
|
2169
|
-
@property
|
|
2168
|
+
@_builtins.property
|
|
2170
2169
|
@pulumi.getter(name="engineConfigMysqlInnodbFlushNeighbors")
|
|
2171
|
-
def engine_config_mysql_innodb_flush_neighbors(self) -> pulumi.Output[
|
|
2170
|
+
def engine_config_mysql_innodb_flush_neighbors(self) -> pulumi.Output[_builtins.int]:
|
|
2172
2171
|
"""
|
|
2173
2172
|
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.
|
|
2174
2173
|
"""
|
|
2175
2174
|
return pulumi.get(self, "engine_config_mysql_innodb_flush_neighbors")
|
|
2176
2175
|
|
|
2177
|
-
@property
|
|
2176
|
+
@_builtins.property
|
|
2178
2177
|
@pulumi.getter(name="engineConfigMysqlInnodbFtMinTokenSize")
|
|
2179
|
-
def engine_config_mysql_innodb_ft_min_token_size(self) -> pulumi.Output[
|
|
2178
|
+
def engine_config_mysql_innodb_ft_min_token_size(self) -> pulumi.Output[_builtins.int]:
|
|
2180
2179
|
"""
|
|
2181
2180
|
Minimum length of words that are stored in an InnoDB FULLTEXT index. Changing this parameter will lead to a restart of the MySQL service.
|
|
2182
2181
|
"""
|
|
2183
2182
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_min_token_size")
|
|
2184
2183
|
|
|
2185
|
-
@property
|
|
2184
|
+
@_builtins.property
|
|
2186
2185
|
@pulumi.getter(name="engineConfigMysqlInnodbFtServerStopwordTable")
|
|
2187
|
-
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> pulumi.Output[Optional[
|
|
2186
|
+
def engine_config_mysql_innodb_ft_server_stopword_table(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
2188
2187
|
"""
|
|
2189
2188
|
This option is used to specify your own InnoDB FULLTEXT index stopword list for all InnoDB tables. This field is nullable.
|
|
2190
2189
|
"""
|
|
2191
2190
|
return pulumi.get(self, "engine_config_mysql_innodb_ft_server_stopword_table")
|
|
2192
2191
|
|
|
2193
|
-
@property
|
|
2192
|
+
@_builtins.property
|
|
2194
2193
|
@pulumi.getter(name="engineConfigMysqlInnodbLockWaitTimeout")
|
|
2195
|
-
def engine_config_mysql_innodb_lock_wait_timeout(self) -> pulumi.Output[
|
|
2194
|
+
def engine_config_mysql_innodb_lock_wait_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2196
2195
|
"""
|
|
2197
2196
|
The length of time in seconds an InnoDB transaction waits for a row lock before giving up. Default is 120.
|
|
2198
2197
|
"""
|
|
2199
2198
|
return pulumi.get(self, "engine_config_mysql_innodb_lock_wait_timeout")
|
|
2200
2199
|
|
|
2201
|
-
@property
|
|
2200
|
+
@_builtins.property
|
|
2202
2201
|
@pulumi.getter(name="engineConfigMysqlInnodbLogBufferSize")
|
|
2203
|
-
def engine_config_mysql_innodb_log_buffer_size(self) -> pulumi.Output[
|
|
2202
|
+
def engine_config_mysql_innodb_log_buffer_size(self) -> pulumi.Output[_builtins.int]:
|
|
2204
2203
|
"""
|
|
2205
2204
|
The size in bytes of the buffer that InnoDB uses to write to the log files on disk.
|
|
2206
2205
|
"""
|
|
2207
2206
|
return pulumi.get(self, "engine_config_mysql_innodb_log_buffer_size")
|
|
2208
2207
|
|
|
2209
|
-
@property
|
|
2208
|
+
@_builtins.property
|
|
2210
2209
|
@pulumi.getter(name="engineConfigMysqlInnodbOnlineAlterLogMaxSize")
|
|
2211
|
-
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> pulumi.Output[
|
|
2210
|
+
def engine_config_mysql_innodb_online_alter_log_max_size(self) -> pulumi.Output[_builtins.int]:
|
|
2212
2211
|
"""
|
|
2213
2212
|
The upper limit in bytes on the size of the temporary log files used during online DDL operations for InnoDB tables.
|
|
2214
2213
|
"""
|
|
2215
2214
|
return pulumi.get(self, "engine_config_mysql_innodb_online_alter_log_max_size")
|
|
2216
2215
|
|
|
2217
|
-
@property
|
|
2216
|
+
@_builtins.property
|
|
2218
2217
|
@pulumi.getter(name="engineConfigMysqlInnodbReadIoThreads")
|
|
2219
|
-
def engine_config_mysql_innodb_read_io_threads(self) -> pulumi.Output[
|
|
2218
|
+
def engine_config_mysql_innodb_read_io_threads(self) -> pulumi.Output[_builtins.int]:
|
|
2220
2219
|
"""
|
|
2221
2220
|
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.
|
|
2222
2221
|
"""
|
|
2223
2222
|
return pulumi.get(self, "engine_config_mysql_innodb_read_io_threads")
|
|
2224
2223
|
|
|
2225
|
-
@property
|
|
2224
|
+
@_builtins.property
|
|
2226
2225
|
@pulumi.getter(name="engineConfigMysqlInnodbRollbackOnTimeout")
|
|
2227
|
-
def engine_config_mysql_innodb_rollback_on_timeout(self) -> pulumi.Output[
|
|
2226
|
+
def engine_config_mysql_innodb_rollback_on_timeout(self) -> pulumi.Output[_builtins.bool]:
|
|
2228
2227
|
"""
|
|
2229
2228
|
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.
|
|
2230
2229
|
"""
|
|
2231
2230
|
return pulumi.get(self, "engine_config_mysql_innodb_rollback_on_timeout")
|
|
2232
2231
|
|
|
2233
|
-
@property
|
|
2232
|
+
@_builtins.property
|
|
2234
2233
|
@pulumi.getter(name="engineConfigMysqlInnodbThreadConcurrency")
|
|
2235
|
-
def engine_config_mysql_innodb_thread_concurrency(self) -> pulumi.Output[
|
|
2234
|
+
def engine_config_mysql_innodb_thread_concurrency(self) -> pulumi.Output[_builtins.int]:
|
|
2236
2235
|
"""
|
|
2237
2236
|
Defines the maximum number of threads permitted inside of InnoDB. Default is 0 (infinite concurrency - no limit).
|
|
2238
2237
|
"""
|
|
2239
2238
|
return pulumi.get(self, "engine_config_mysql_innodb_thread_concurrency")
|
|
2240
2239
|
|
|
2241
|
-
@property
|
|
2240
|
+
@_builtins.property
|
|
2242
2241
|
@pulumi.getter(name="engineConfigMysqlInnodbWriteIoThreads")
|
|
2243
|
-
def engine_config_mysql_innodb_write_io_threads(self) -> pulumi.Output[
|
|
2242
|
+
def engine_config_mysql_innodb_write_io_threads(self) -> pulumi.Output[_builtins.int]:
|
|
2244
2243
|
"""
|
|
2245
2244
|
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.
|
|
2246
2245
|
"""
|
|
2247
2246
|
return pulumi.get(self, "engine_config_mysql_innodb_write_io_threads")
|
|
2248
2247
|
|
|
2249
|
-
@property
|
|
2248
|
+
@_builtins.property
|
|
2250
2249
|
@pulumi.getter(name="engineConfigMysqlInteractiveTimeout")
|
|
2251
|
-
def engine_config_mysql_interactive_timeout(self) -> pulumi.Output[
|
|
2250
|
+
def engine_config_mysql_interactive_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2252
2251
|
"""
|
|
2253
2252
|
The number of seconds the server waits for activity on an interactive connection before closing it.
|
|
2254
2253
|
"""
|
|
2255
2254
|
return pulumi.get(self, "engine_config_mysql_interactive_timeout")
|
|
2256
2255
|
|
|
2257
|
-
@property
|
|
2256
|
+
@_builtins.property
|
|
2258
2257
|
@pulumi.getter(name="engineConfigMysqlInternalTmpMemStorageEngine")
|
|
2259
|
-
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> pulumi.Output[
|
|
2258
|
+
def engine_config_mysql_internal_tmp_mem_storage_engine(self) -> pulumi.Output[_builtins.str]:
|
|
2260
2259
|
"""
|
|
2261
2260
|
The storage engine for in-memory internal temporary tables.
|
|
2262
2261
|
"""
|
|
2263
2262
|
return pulumi.get(self, "engine_config_mysql_internal_tmp_mem_storage_engine")
|
|
2264
2263
|
|
|
2265
|
-
@property
|
|
2264
|
+
@_builtins.property
|
|
2266
2265
|
@pulumi.getter(name="engineConfigMysqlMaxAllowedPacket")
|
|
2267
|
-
def engine_config_mysql_max_allowed_packet(self) -> pulumi.Output[
|
|
2266
|
+
def engine_config_mysql_max_allowed_packet(self) -> pulumi.Output[_builtins.int]:
|
|
2268
2267
|
"""
|
|
2269
2268
|
Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M).
|
|
2270
2269
|
"""
|
|
2271
2270
|
return pulumi.get(self, "engine_config_mysql_max_allowed_packet")
|
|
2272
2271
|
|
|
2273
|
-
@property
|
|
2272
|
+
@_builtins.property
|
|
2274
2273
|
@pulumi.getter(name="engineConfigMysqlMaxHeapTableSize")
|
|
2275
|
-
def engine_config_mysql_max_heap_table_size(self) -> pulumi.Output[
|
|
2274
|
+
def engine_config_mysql_max_heap_table_size(self) -> pulumi.Output[_builtins.int]:
|
|
2276
2275
|
"""
|
|
2277
2276
|
Limits the size of internal in-memory tables. Also set tmp_table_size. Default is 16777216 (16M).
|
|
2278
2277
|
"""
|
|
2279
2278
|
return pulumi.get(self, "engine_config_mysql_max_heap_table_size")
|
|
2280
2279
|
|
|
2281
|
-
@property
|
|
2280
|
+
@_builtins.property
|
|
2282
2281
|
@pulumi.getter(name="engineConfigMysqlNetBufferLength")
|
|
2283
|
-
def engine_config_mysql_net_buffer_length(self) -> pulumi.Output[
|
|
2282
|
+
def engine_config_mysql_net_buffer_length(self) -> pulumi.Output[_builtins.int]:
|
|
2284
2283
|
"""
|
|
2285
2284
|
Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
|
|
2286
2285
|
"""
|
|
2287
2286
|
return pulumi.get(self, "engine_config_mysql_net_buffer_length")
|
|
2288
2287
|
|
|
2289
|
-
@property
|
|
2288
|
+
@_builtins.property
|
|
2290
2289
|
@pulumi.getter(name="engineConfigMysqlNetReadTimeout")
|
|
2291
|
-
def engine_config_mysql_net_read_timeout(self) -> pulumi.Output[
|
|
2290
|
+
def engine_config_mysql_net_read_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2292
2291
|
"""
|
|
2293
2292
|
The number of seconds to wait for more data from a connection before aborting the read.
|
|
2294
2293
|
"""
|
|
2295
2294
|
return pulumi.get(self, "engine_config_mysql_net_read_timeout")
|
|
2296
2295
|
|
|
2297
|
-
@property
|
|
2296
|
+
@_builtins.property
|
|
2298
2297
|
@pulumi.getter(name="engineConfigMysqlNetWriteTimeout")
|
|
2299
|
-
def engine_config_mysql_net_write_timeout(self) -> pulumi.Output[
|
|
2298
|
+
def engine_config_mysql_net_write_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2300
2299
|
"""
|
|
2301
2300
|
The number of seconds to wait for a block to be written to a connection before aborting the write.
|
|
2302
2301
|
"""
|
|
2303
2302
|
return pulumi.get(self, "engine_config_mysql_net_write_timeout")
|
|
2304
2303
|
|
|
2305
|
-
@property
|
|
2304
|
+
@_builtins.property
|
|
2306
2305
|
@pulumi.getter(name="engineConfigMysqlSortBufferSize")
|
|
2307
|
-
def engine_config_mysql_sort_buffer_size(self) -> pulumi.Output[
|
|
2306
|
+
def engine_config_mysql_sort_buffer_size(self) -> pulumi.Output[_builtins.int]:
|
|
2308
2307
|
"""
|
|
2309
2308
|
Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K).
|
|
2310
2309
|
"""
|
|
2311
2310
|
return pulumi.get(self, "engine_config_mysql_sort_buffer_size")
|
|
2312
2311
|
|
|
2313
|
-
@property
|
|
2312
|
+
@_builtins.property
|
|
2314
2313
|
@pulumi.getter(name="engineConfigMysqlSqlMode")
|
|
2315
|
-
def engine_config_mysql_sql_mode(self) -> pulumi.Output[
|
|
2314
|
+
def engine_config_mysql_sql_mode(self) -> pulumi.Output[_builtins.str]:
|
|
2316
2315
|
"""
|
|
2317
2316
|
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. (default `ANSI,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,STRICT_ALL_TABLES`)
|
|
2318
2317
|
"""
|
|
2319
2318
|
return pulumi.get(self, "engine_config_mysql_sql_mode")
|
|
2320
2319
|
|
|
2321
|
-
@property
|
|
2320
|
+
@_builtins.property
|
|
2322
2321
|
@pulumi.getter(name="engineConfigMysqlSqlRequirePrimaryKey")
|
|
2323
|
-
def engine_config_mysql_sql_require_primary_key(self) -> pulumi.Output[
|
|
2322
|
+
def engine_config_mysql_sql_require_primary_key(self) -> pulumi.Output[_builtins.bool]:
|
|
2324
2323
|
"""
|
|
2325
2324
|
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. (default `true`)
|
|
2326
2325
|
"""
|
|
2327
2326
|
return pulumi.get(self, "engine_config_mysql_sql_require_primary_key")
|
|
2328
2327
|
|
|
2329
|
-
@property
|
|
2328
|
+
@_builtins.property
|
|
2330
2329
|
@pulumi.getter(name="engineConfigMysqlTmpTableSize")
|
|
2331
|
-
def engine_config_mysql_tmp_table_size(self) -> pulumi.Output[
|
|
2330
|
+
def engine_config_mysql_tmp_table_size(self) -> pulumi.Output[_builtins.int]:
|
|
2332
2331
|
"""
|
|
2333
2332
|
Limits the size of internal in-memory tables. Also set max_heap_table_size. Default is 16777216 (16M).
|
|
2334
2333
|
"""
|
|
2335
2334
|
return pulumi.get(self, "engine_config_mysql_tmp_table_size")
|
|
2336
2335
|
|
|
2337
|
-
@property
|
|
2336
|
+
@_builtins.property
|
|
2338
2337
|
@pulumi.getter(name="engineConfigMysqlWaitTimeout")
|
|
2339
|
-
def engine_config_mysql_wait_timeout(self) -> pulumi.Output[
|
|
2338
|
+
def engine_config_mysql_wait_timeout(self) -> pulumi.Output[_builtins.int]:
|
|
2340
2339
|
"""
|
|
2341
2340
|
The number of seconds the server waits for activity on a noninteractive connection before closing it.
|
|
2342
2341
|
"""
|
|
2343
2342
|
return pulumi.get(self, "engine_config_mysql_wait_timeout")
|
|
2344
2343
|
|
|
2345
|
-
@property
|
|
2344
|
+
@_builtins.property
|
|
2346
2345
|
@pulumi.getter(name="engineId")
|
|
2347
|
-
def engine_id(self) -> pulumi.Output[
|
|
2346
|
+
def engine_id(self) -> pulumi.Output[_builtins.str]:
|
|
2348
2347
|
"""
|
|
2349
2348
|
The Managed Database engine in engine/version format. (e.g. `mysql`)
|
|
2350
2349
|
"""
|
|
2351
2350
|
return pulumi.get(self, "engine_id")
|
|
2352
2351
|
|
|
2353
|
-
@property
|
|
2352
|
+
@_builtins.property
|
|
2354
2353
|
@pulumi.getter(name="forkRestoreTime")
|
|
2355
|
-
def fork_restore_time(self) -> pulumi.Output[
|
|
2354
|
+
def fork_restore_time(self) -> pulumi.Output[_builtins.str]:
|
|
2356
2355
|
"""
|
|
2357
2356
|
The database timestamp from which it was restored.
|
|
2358
2357
|
"""
|
|
2359
2358
|
return pulumi.get(self, "fork_restore_time")
|
|
2360
2359
|
|
|
2361
|
-
@property
|
|
2360
|
+
@_builtins.property
|
|
2362
2361
|
@pulumi.getter(name="forkSource")
|
|
2363
|
-
def fork_source(self) -> pulumi.Output[Optional[
|
|
2362
|
+
def fork_source(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
2364
2363
|
"""
|
|
2365
2364
|
The ID of the database that was forked from.
|
|
2366
2365
|
|
|
@@ -2368,47 +2367,47 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
2368
2367
|
"""
|
|
2369
2368
|
return pulumi.get(self, "fork_source")
|
|
2370
2369
|
|
|
2371
|
-
@property
|
|
2370
|
+
@_builtins.property
|
|
2372
2371
|
@pulumi.getter(name="hostPrimary")
|
|
2373
|
-
def host_primary(self) -> pulumi.Output[
|
|
2372
|
+
def host_primary(self) -> pulumi.Output[_builtins.str]:
|
|
2374
2373
|
"""
|
|
2375
2374
|
The primary host for the Managed Database.
|
|
2376
2375
|
"""
|
|
2377
2376
|
return pulumi.get(self, "host_primary")
|
|
2378
2377
|
|
|
2379
|
-
@property
|
|
2378
|
+
@_builtins.property
|
|
2380
2379
|
@pulumi.getter(name="hostSecondary")
|
|
2381
|
-
def host_secondary(self) -> pulumi.Output[
|
|
2380
|
+
def host_secondary(self) -> pulumi.Output[_builtins.str]:
|
|
2382
2381
|
"""
|
|
2383
2382
|
The secondary/private host for the managed database.
|
|
2384
2383
|
"""
|
|
2385
2384
|
return pulumi.get(self, "host_secondary")
|
|
2386
2385
|
|
|
2387
|
-
@property
|
|
2386
|
+
@_builtins.property
|
|
2388
2387
|
@pulumi.getter
|
|
2389
|
-
def label(self) -> pulumi.Output[
|
|
2388
|
+
def label(self) -> pulumi.Output[_builtins.str]:
|
|
2390
2389
|
"""
|
|
2391
2390
|
A unique, user-defined string referring to the Managed Database.
|
|
2392
2391
|
"""
|
|
2393
2392
|
return pulumi.get(self, "label")
|
|
2394
2393
|
|
|
2395
|
-
@property
|
|
2394
|
+
@_builtins.property
|
|
2396
2395
|
@pulumi.getter
|
|
2397
|
-
def members(self) -> pulumi.Output[Mapping[str,
|
|
2396
|
+
def members(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
|
2398
2397
|
"""
|
|
2399
2398
|
A mapping between IP addresses and strings designating them as primary or failover.
|
|
2400
2399
|
"""
|
|
2401
2400
|
return pulumi.get(self, "members")
|
|
2402
2401
|
|
|
2403
|
-
@property
|
|
2402
|
+
@_builtins.property
|
|
2404
2403
|
@pulumi.getter(name="oldestRestoreTime")
|
|
2405
|
-
def oldest_restore_time(self) -> pulumi.Output[
|
|
2404
|
+
def oldest_restore_time(self) -> pulumi.Output[_builtins.str]:
|
|
2406
2405
|
"""
|
|
2407
2406
|
The oldest time to which a database can be restored.
|
|
2408
2407
|
"""
|
|
2409
2408
|
return pulumi.get(self, "oldest_restore_time")
|
|
2410
2409
|
|
|
2411
|
-
@property
|
|
2410
|
+
@_builtins.property
|
|
2412
2411
|
@pulumi.getter(name="pendingUpdates")
|
|
2413
2412
|
def pending_updates(self) -> pulumi.Output[Sequence['outputs.DatabaseMysqlV2PendingUpdate']]:
|
|
2414
2413
|
"""
|
|
@@ -2416,78 +2415,78 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
2416
2415
|
"""
|
|
2417
2416
|
return pulumi.get(self, "pending_updates")
|
|
2418
2417
|
|
|
2419
|
-
@property
|
|
2418
|
+
@_builtins.property
|
|
2420
2419
|
@pulumi.getter
|
|
2421
|
-
def platform(self) -> pulumi.Output[
|
|
2420
|
+
def platform(self) -> pulumi.Output[_builtins.str]:
|
|
2422
2421
|
"""
|
|
2423
2422
|
The back-end platform for relational databases used by the service.
|
|
2424
2423
|
"""
|
|
2425
2424
|
return pulumi.get(self, "platform")
|
|
2426
2425
|
|
|
2427
|
-
@property
|
|
2426
|
+
@_builtins.property
|
|
2428
2427
|
@pulumi.getter
|
|
2429
|
-
def port(self) -> pulumi.Output[
|
|
2428
|
+
def port(self) -> pulumi.Output[_builtins.int]:
|
|
2430
2429
|
"""
|
|
2431
2430
|
The access port for this Managed Database.
|
|
2432
2431
|
"""
|
|
2433
2432
|
return pulumi.get(self, "port")
|
|
2434
2433
|
|
|
2435
|
-
@property
|
|
2434
|
+
@_builtins.property
|
|
2436
2435
|
@pulumi.getter
|
|
2437
|
-
def region(self) -> pulumi.Output[
|
|
2436
|
+
def region(self) -> pulumi.Output[_builtins.str]:
|
|
2438
2437
|
"""
|
|
2439
2438
|
The region to use for the Managed Database.
|
|
2440
2439
|
"""
|
|
2441
2440
|
return pulumi.get(self, "region")
|
|
2442
2441
|
|
|
2443
|
-
@property
|
|
2442
|
+
@_builtins.property
|
|
2444
2443
|
@pulumi.getter(name="rootPassword")
|
|
2445
|
-
def root_password(self) -> pulumi.Output[
|
|
2444
|
+
def root_password(self) -> pulumi.Output[_builtins.str]:
|
|
2446
2445
|
"""
|
|
2447
2446
|
The randomly-generated root password for the Managed Database instance.
|
|
2448
2447
|
"""
|
|
2449
2448
|
return pulumi.get(self, "root_password")
|
|
2450
2449
|
|
|
2451
|
-
@property
|
|
2450
|
+
@_builtins.property
|
|
2452
2451
|
@pulumi.getter(name="rootUsername")
|
|
2453
|
-
def root_username(self) -> pulumi.Output[
|
|
2452
|
+
def root_username(self) -> pulumi.Output[_builtins.str]:
|
|
2454
2453
|
"""
|
|
2455
2454
|
The root username for the Managed Database instance.
|
|
2456
2455
|
"""
|
|
2457
2456
|
return pulumi.get(self, "root_username")
|
|
2458
2457
|
|
|
2459
|
-
@property
|
|
2458
|
+
@_builtins.property
|
|
2460
2459
|
@pulumi.getter(name="sslConnection")
|
|
2461
|
-
def ssl_connection(self) -> pulumi.Output[
|
|
2460
|
+
def ssl_connection(self) -> pulumi.Output[_builtins.bool]:
|
|
2462
2461
|
"""
|
|
2463
2462
|
Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
2464
2463
|
"""
|
|
2465
2464
|
return pulumi.get(self, "ssl_connection")
|
|
2466
2465
|
|
|
2467
|
-
@property
|
|
2466
|
+
@_builtins.property
|
|
2468
2467
|
@pulumi.getter
|
|
2469
|
-
def status(self) -> pulumi.Output[
|
|
2468
|
+
def status(self) -> pulumi.Output[_builtins.str]:
|
|
2470
2469
|
"""
|
|
2471
2470
|
The operating status of the Managed Database.
|
|
2472
2471
|
"""
|
|
2473
2472
|
return pulumi.get(self, "status")
|
|
2474
2473
|
|
|
2475
|
-
@property
|
|
2474
|
+
@_builtins.property
|
|
2476
2475
|
@pulumi.getter
|
|
2477
|
-
def suspended(self) -> pulumi.Output[
|
|
2476
|
+
def suspended(self) -> pulumi.Output[_builtins.bool]:
|
|
2478
2477
|
"""
|
|
2479
2478
|
Whether this Managed Database should be suspended.
|
|
2480
2479
|
"""
|
|
2481
2480
|
return pulumi.get(self, "suspended")
|
|
2482
2481
|
|
|
2483
|
-
@property
|
|
2482
|
+
@_builtins.property
|
|
2484
2483
|
@pulumi.getter
|
|
2485
2484
|
def timeouts(self) -> pulumi.Output[Optional['outputs.DatabaseMysqlV2Timeouts']]:
|
|
2486
2485
|
return pulumi.get(self, "timeouts")
|
|
2487
2486
|
|
|
2488
|
-
@property
|
|
2487
|
+
@_builtins.property
|
|
2489
2488
|
@pulumi.getter
|
|
2490
|
-
def type(self) -> pulumi.Output[
|
|
2489
|
+
def type(self) -> pulumi.Output[_builtins.str]:
|
|
2491
2490
|
"""
|
|
2492
2491
|
The Linode Instance type used for the nodes of the Managed Database.
|
|
2493
2492
|
|
|
@@ -2495,15 +2494,15 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
2495
2494
|
"""
|
|
2496
2495
|
return pulumi.get(self, "type")
|
|
2497
2496
|
|
|
2498
|
-
@property
|
|
2497
|
+
@_builtins.property
|
|
2499
2498
|
@pulumi.getter
|
|
2500
|
-
def updated(self) -> pulumi.Output[
|
|
2499
|
+
def updated(self) -> pulumi.Output[_builtins.str]:
|
|
2501
2500
|
"""
|
|
2502
2501
|
When this Managed Database was last updated.
|
|
2503
2502
|
"""
|
|
2504
2503
|
return pulumi.get(self, "updated")
|
|
2505
2504
|
|
|
2506
|
-
@property
|
|
2505
|
+
@_builtins.property
|
|
2507
2506
|
@pulumi.getter
|
|
2508
2507
|
def updates(self) -> pulumi.Output['outputs.DatabaseMysqlV2Updates']:
|
|
2509
2508
|
"""
|
|
@@ -2511,9 +2510,9 @@ class DatabaseMysqlV2(pulumi.CustomResource):
|
|
|
2511
2510
|
"""
|
|
2512
2511
|
return pulumi.get(self, "updates")
|
|
2513
2512
|
|
|
2514
|
-
@property
|
|
2513
|
+
@_builtins.property
|
|
2515
2514
|
@pulumi.getter
|
|
2516
|
-
def version(self) -> pulumi.Output[
|
|
2515
|
+
def version(self) -> pulumi.Output[_builtins.str]:
|
|
2517
2516
|
"""
|
|
2518
2517
|
The Managed Database engine version. (e.g. `13.2`)
|
|
2519
2518
|
"""
|